.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: #f8f8f8;
      color: #333;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
    }

    .blog-list__section {
      position: relative;
      padding: 30px 0;
    }

    .blog-list__page-title {
      font-size: 32px;
      font-weight: bold;
      color: #0056b3;
      text-align: center;
      margin-bottom: 20px;
    }

    .blog-list__page-description {
      font-size: 16px;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .blog-list__timeline-container {
      position: relative;
      padding: 0 10px;
    }

    .blog-list__timeline-line {
      position: absolute;
      width: 4px;
      background-color: #e0e0e0;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
    }

    .blog-list__timeline-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 50px;
      position: relative;
      min-height: 100px;
    }

    .blog-list__timeline-content-wrapper {
      width: 45%;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 20px;
      position: relative;
      border: 1px solid #eee;
    }

    .blog-list__timeline-content-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .blog-list__timeline-content-wrapper::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      top: 30px;
      z-index: 1;
    }
    .blog-list__timeline-content-wrapper::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        top: 30px;
        z-index: 0;
    }

    .blog-list__timeline-marker {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 120px;
      text-align: center;
    }

    .blog-list__timeline-marker-dot {
      width: 20px;
      height: 20px;
      background-color: #007bff;
      border: 3px solid #fff;
      border-radius: 50%;
      margin-top: 10px;
      box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
    }

    .blog-list__timeline-marker-date {
      font-size: 14px;
      font-weight: bold;
      color: #555;
      white-space: nowrap;
    }

    .blog-list__timeline-item:nth-child(odd) {
      justify-content: flex-start;
    }
    .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-content-wrapper {
      margin-right: calc(5% + 60px);
      text-align: right;
    }
    .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-content-wrapper::before {
      border-left: 10px solid #ffffff;
      right: -10px;
    }
    .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-content-wrapper::after {
        border-left: 10px solid #eee;
        right: -11px;
    }

    .blog-list__timeline-item:nth-child(even) {
      justify-content: flex-end;
    }
    .blog-list__timeline-item:nth-child(even) .blog-list__timeline-content-wrapper {
      margin-left: calc(5% + 60px);
      text-align: left;
    }
    .blog-list__timeline-item:nth-child(even) .blog-list__timeline-content-wrapper::before {
      border-right: 10px solid #ffffff;
      left: -10px;
    }
    .blog-list__timeline-item:nth-child(even) .blog-list__timeline-content-wrapper::after {
        border-right: 10px solid #eee;
        left: -11px;
    }

    .blog-list__cover-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .blog-list__blog-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.3;
      color: #0056b3;
    }

    .blog-list__blog-title-link {
      text-decoration: none;
      color: inherit;
    }

    .blog-list__blog-title-link:hover {
      text-decoration: underline;
    }

    .blog-list__blog-summary {
      font-size: 15px;
      color: #666;
      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__published-date {
      font-size: 13px;
      color: #999;
      margin-bottom: 10px;
      display: block;
    }

    .blog-list__read-more-link {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      transition: background-color 0.3s ease;
    }

    .blog-list__read-more-link:hover {
      background-color: #0056b3;
    }

    .blog-list__pagination {
      text-align: center;
      margin-top: 50px;
    }

    .blog-list__pagination-link {
      display: inline-block;
      padding: 10px 15px;
      margin: 0 5px;
      border: 1px solid #ddd;
      border-radius: 5px;
      text-decoration: none;
      color: #007bff;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .blog-list__pagination-link:hover {
      background-color: #007bff;
      color: #fff;
    }

    .blog-list__pagination-link--active {
      background-color: #007bff;
      color: #fff;
      border-color: #007bff;
    }

    @media (max-width: 767px) {
      .blog-list__page-title {
        font-size: 26px;
      }
      .blog-list__page-description {
        font-size: 14px;
        margin-bottom: 30px;
      }
      .blog-list__timeline-line {
        left: 20px;
        transform: translateX(0);
      }

      .blog-list__timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
      }

      .blog-list__timeline-content-wrapper {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        text-align: left !important;
      }

      .blog-list__timeline-content-wrapper::before {
        border-right: 10px solid #ffffff;
        left: -10px;
        right: auto !important;
      }
      .blog-list__timeline-content-wrapper::after {
        border-right: 10px solid #eee;
        left: -11px;
        right: auto !important;
      }

      .blog-list__timeline-marker {
        left: 20px;
        transform: translateX(-50%);
        top: 0;
        flex-direction: row;
        align-items: center;
        width: auto;
        margin-left: 0;
        margin-bottom: 10px;
      }

      .blog-list__timeline-marker-dot {
        margin-top: 0;
        margin-right: 10px;
      }

      .blog-list__timeline-marker-date {
        order: 2;
      }

      .blog-list__blog-title {
        font-size: 18px;
      }

      .blog-list__blog-summary {
        font-size: 14px;
      }

      .blog-list__published-date {
        font-size: 12px;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .blog-list__timeline-content-wrapper {
        width: 43%;
      }
      .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-content-wrapper {
        margin-right: calc(7% + 60px);
      }
      .blog-list__timeline-item:nth-child(even) .blog-list__timeline-content-wrapper {
        margin-left: calc(7% + 60px);
      }
    }