.blog-list {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      min-height: 100vh;
    }

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

    .blog-list__main-title {
      font-size: 2.2em;
      color: #0a192f;
      text-align: center;
      margin-bottom: 15px;
      font-weight: bold;
      padding-top: 20px;
    }
    @media (max-width: 768px) {
      .blog-list__main-title {
        font-size: 1.8em;
      }
    }

    .blog-list__description {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      line-height: 1.8;
    }
    @media (max-width: 768px) {
      .blog-list__description {
        font-size: 1em;
        margin-bottom: 30px;
      }
    }

    .blog-list__timeline-wrapper {
      position: relative;
      padding-left: 30px;
      margin-left: 20px;
      border-left: 2px solid #ddd;
    }
    @media (max-width: 768px) {
      .blog-list__timeline-wrapper {
        padding-left: 20px;
        margin-left: 10px;
      }
    }

    .blog-list__item {
      position: relative;
      margin-bottom: 40px;
      padding-bottom: 20px;
    }

    .blog-list__timeline-dot {
      position: absolute;
      left: -41px;
      top: 5px;
      width: 16px;
      height: 16px;
      background-color: #FFD700;
      border: 3px solid #fff;
      border-radius: 50%;
      z-index: 1;
      box-shadow: 0 0 0 2px #FFD700;
    }
    @media (max-width: 768px) {
      .blog-list__timeline-dot {
        left: -31px;
      }
    }

    .blog-list__card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      padding: 20px;
    }

    .blog-list__card: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;
      display: block;
    }

    .blog-list__link-overlay {
      display: block;
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 2;
    }

    .blog-list__date {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 10px;
      font-weight: 500;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .blog-list__title {
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    @media (max-width: 768px) {
      .blog-list__title {
        font-size: 1.3em;
      }
    }

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

    .blog-list__title-link:hover {
      color: #1e3a8a;
    }

    .blog-list__summary {
      font-size: 1em;
      color: #666;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.5;
    }
    @media (max-width: 768px) {
      .blog-list__summary {
        font-size: 0.9em;
      }
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: #0a192f;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-size: 0.9em;
    }

    .blog-list__read-more:hover {
      background-color: #FFD700;
      color: #0a192f;
    }

    .blog-list__pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 50px;
      gap: 10px;
    }

    .blog-list__pagination-link {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: 8px;
      text-decoration: none;
      color: #0a192f;
      background-color: #fff;
      border: 1px solid #ddd;
      transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
      font-weight: 600;
    }

    .blog-list__pagination-link:hover:not(.blog-list__pagination-link--active) {
      background-color: #eee;
      border-color: #bbb;
    }

    .blog-list__pagination-link--active {
      background-color: #FFD700;
      color: #0a192f;
      border-color: #FFD700;
      cursor: default;
    }

    .blog-list__pagination-link--prev,
    .blog-list__pagination-link--next {
      background-color: #0a192f;
      color: #fff;
      border-color: #0a192f;
    }

    .blog-list__pagination-link--prev:hover,
    .blog-list__pagination-link--next:hover {
      background-color: #FFD700;
      color: #0a192f;
      border-color: #FFD700;
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .blog-list__container {
        padding: 20px 30px;
      }
    }

    @media (max-width: 768px) {
      .blog-list__container {
        padding: 15px;
      }
      .blog-list__timeline-wrapper {
        margin-left: 0;
        padding-left: 20px;
      }
      .blog-list__timeline-dot {
        left: -21px;
        top: 0px;
      }
      .blog-list__card {
        padding: 15px;
      }
      .blog-list__image-wrapper {
        margin-bottom: 10px;
      }
      .blog-list__read-more {
        padding: 8px 15px;
        font-size: 0.85em;
      }
      .blog-list__pagination {
        margin-top: 30px;
        gap: 8px;
      }
      .blog-list__pagination-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .blog-list__main-title {
        font-size: 1.5em;
      }
      .blog-list__description {
        font-size: 0.9em;
        margin-bottom: 20px;
      }
      .blog-list__timeline-wrapper {
        padding-left: 15px;
      }
      .blog-list__timeline-dot {
        left: -17px;
        width: 14px;
        height: 14px;
        border-width: 2px;
      }
      .blog-list__card {
        padding: 12px;
      }
      .blog-list__title {
        font-size: 1.2em;
      }
      .blog-list__summary {
        font-size: 0.85em;
        -webkit-line-clamp: 4;
      }
    }