.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: #f8f8f8;
      font-family: 'Arial', sans-serif;
      color: #333333;
    }

    .blog-list__header {
      text-align: center;
      margin-bottom: 40px;
      padding: 0 20px;
    }

    .blog-list__title-page {
      font-size: 32px;
      font-weight: bold;
      color: #0056b3;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .blog-list__description-page {
      font-size: 18px;
      color: #666666;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .blog-list__container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }

    .blog-list__container::after {
      content: '';
      position: absolute;
      width: 2px;
      background-color: #e0e0e0;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
    }

    .blog-list__item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .blog-list__item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .blog-list__item-date-wrapper {
      flex: 0 0 45%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 40px;
      box-sizing: border-box;
    }

    .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
      justify-content: flex-start;
      padding-left: 40px;
      padding-right: 0;
    }

    .blog-list__item-date {
      background-color: #0056b3;
      color: #ffffff;
      padding: 8px 15px;
      border-radius: 5px;
      font-size: 14px;
      font-weight: bold;
      white-space: nowrap;
    }

    .blog-list__item-marker {
      width: 20px;
      height: 20px;
      background-color: #0056b3;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 0;
      transform: translate(-50%, 0);
      z-index: 2;
      border: 3px solid #f8f8f8;
    }

    .blog-list__item-content-wrapper {
      flex: 0 0 45%;
      box-sizing: border-box;
      padding-left: 20px;
    }

    .blog-list__item:nth-child(even) .blog-list__item-content-wrapper {
      padding-right: 20px;
      padding-left: 0;
    }

    .blog-list__item-content {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 25px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-list__item-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__title-link {
      color: #333333;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__title-link:hover {
      color: #0056b3;
    }

    .blog-list__summary {
      font-size: 16px;
      color: #666666;
      line-height: 1.6;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto;
      padding: 8px 15px;
      background-color: #0056b3;
      color: #ffffff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .blog-list__read-more:hover {
      background-color: #004085;
    }

    @media (max-width: 1024px) {
      .blog-list__container {
        max-width: 768px;
      }
      .blog-list__item-date-wrapper,
      .blog-list__item-content-wrapper {
        flex: 0 0 48%;
      }
      .blog-list__title {
        font-size: 19px;
      }
      .blog-list__summary {
        font-size: 15px;
      }
    }

    @media (max-width: 768px) {
      .blog-list__container {
        max-width: 100%;
        padding: 0 15px;
      }
      .blog-list__container::after {
        left: 20px;
        transform: translateX(0);
      }
      .blog-list__item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 30px;
      }
      .blog-list__item-date-wrapper {
        order: 1;
        width: 100%;
        justify-content: flex-start;
        padding-left: 40px;
        padding-right: 0;
        margin-bottom: 10px;
      }
      .blog-list__item-date {
        font-size: 13px;
        padding: 6px 10px;
      }
      .blog-list__item-marker {
        left: 20px;
        transform: translate(-50%, 0);
        top: 5px;
      }
      .blog-list__item-content-wrapper {
        order: 2;
        width: 100%;
        padding-left: 40px;
        padding-right: 0;
      }
      .blog-list__item-content {
        padding: 20px;
      }
      .blog-list__title {
        font-size: 18px;
      }
      .blog-list__summary {
        font-size: 15px;
        -webkit-line-clamp: 4;
      }
      .blog-list__read-more {
        font-size: 13px;
        padding: 7px 12px;
      }
    }

    @media (max-width: 480px) {
      .blog-list__header {
        margin-bottom: 30px;
      }
      .blog-list__title-page {
        font-size: 28px;
      }
      .blog-list__description-page {
        font-size: 16px;
      }
      .blog-list__container::after {
        left: 15px;
      }
      .blog-list__item-marker {
        left: 15px;
      }
      .blog-list__item-date-wrapper,
      .blog-list__item-content-wrapper {
        padding-left: 30px;
      }
      .blog-list__item-content {
        padding: 15px;
      }
      .blog-list__image-wrapper {
        margin-bottom: 10px;
      }
      .blog-list__title {
        font-size: 16px;
        margin-bottom: 8px;
      }
      .blog-list__summary {
        font-size: 13px;
        margin-bottom: 10px;
      }
    }