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

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      max-width: 960px;
      margin: 0 auto;
    }

    .blog-list__hero-title {
      font-size: 2.2em;
      color: #0a4a86;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      color: #555;
      line-height: 1.6;
    }

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

    .blog-list__timeline::after {
      content: '';
      position: absolute;
      width: 4px;
      background-color: #0a4a86;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -2px;
      z-index: 0;
    }

    .blog-list__item {
      padding: 10px 0;
      position: relative;
      width: 50%;
      clear: both;
      z-index: 1;
    }

    .blog-list__item:nth-child(odd) {
      left: 0;
      padding-right: 60px;
    }

    .blog-list__item:nth-child(even) {
      left: 50%;
      padding-left: 60px;
    }

    .blog-list__item::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #fff;
      border: 4px solid #0a4a86;
      top: 25px;
      border-radius: 50%;
      z-index: 1;
    }

    .blog-list__item:nth-child(odd)::after {
      right: -10px;
    }

    .blog-list__item:nth-child(even)::after {
      left: -10px;
    }

    .blog-list__item-date-wrapper {
      position: absolute;
      top: 25px;
      width: 100px;
      text-align: center;
      font-size: 0.9em;
      color: #555;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
      right: calc(100% + 15px);
    }

    .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
      left: calc(100% + 15px);
    }

    .blog-list__item-date {
      display: block;
      font-weight: bold;
      color: #0a4a86;
    }

    .blog-list__item-content-wrapper {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .blog-list__item-image {
      width: 100%;
      height: 225px;
      object-fit: cover;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .blog-list__item-text-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-list__item-title {
      font-size: 1.2em;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__item-title-link {
      color: #0a4a86;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__item-title-link:hover {
      color: #007bff;
    }

    .blog-list__item-summary {
      font-size: 0.9em;
      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;
      flex-grow: 1;
    }

    .blog-list__item-read-more {
      display: inline-block;
      background-color: #0a4a86;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .blog-list__item-read-more:hover {
      background-color: #007bff;
    }

    @media (max-width: 1024px) {
      .blog-list__timeline::after {
        left: 20px;
        margin-left: 0;
      }

      .blog-list__item {
        width: 100%;
        left: 0;
        padding-left: 60px;
        padding-right: 20px;
      }

      .blog-list__item:nth-child(odd) {
        padding-right: 20px;
      }

      .blog-list__item:nth-child(even) {
        left: 0;
        padding-left: 60px;
      }

      .blog-list__item::after {
        left: 10px;
      }
      .blog-list__item:nth-child(odd)::after {
        right: auto;
        left: 10px;
      }
      .blog-list__item:nth-child(even)::after {
        left: 10px;
      }

      .blog-list__item-date-wrapper {
        left: -10px;
        width: 80px;
        text-align: right;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
        right: auto;
        left: -10px;
      }
      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: -10px;
      }
    }

    @media (max-width: 768px) {
      .blog-list__hero-title {
        font-size: 1.8em;
      }

      .blog-list__hero-description {
        font-size: 1em;
      }

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

      .blog-list__timeline::after {
        left: 15px;
      }

      .blog-list__item {
        padding-left: 50px;
        padding-right: 15px;
      }

      .blog-list__item::after {
        left: 5px;
        width: 16px;
        height: 16px;
        top: 20px;
      }

      .blog-list__item-date-wrapper {
        width: 70px;
        left: -5px;
        top: 20px;
      }

      .blog-list__item-image {
        height: 180px;
      }

      .blog-list__item-text-content {
        padding: 15px;
      }

      .blog-list__item-title {
        font-size: 1.1em;
      }

      .blog-list__item-summary {
        font-size: 0.85em;
      }

      .blog-list__item-read-more {
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }

    @media (max-width: 480px) {
      .blog-list__hero {
        padding: 25px 15px;
      }

      .blog-list__hero-title {
        font-size: 1.6em;
      }

      .blog-list__hero-description {
        font-size: 0.9em;
      }

      .blog-list__item-image {
        height: 150px;
      }

      .blog-list__item-text-content {
        padding: 15px;
      }
    }