.blog-list {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 40px;
      background-color: #f0f2f5;
    }

    .blog-list__hero-section {
      padding-top: var(--header-offset, 120px);
      background-color: #ffffff;
      padding: 40px 20px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .blog-list__hero-title {
      font-size: 28px;
      color: #1a1a1a;
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: bold;
      letter-spacing: -0.5px;
    }

    .blog-list__hero-description {
      font-size: 16px;
      color: #555555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .blog-list__timeline-section {
      padding-top: 20px;
      padding-bottom: 40px;
      padding-left: 20px;
      padding-right: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .blog-list__timeline {
      position: relative;
      padding-left: 30px;
    }

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 4px;
      background-color: #e0e0e0;
      border-radius: 2px;
    }

    .blog-list__timeline-item {
      position: relative;
      margin-bottom: 30px;
    }

    .blog-list__timeline-dot {
      position: absolute;
      top: 15px;
      left: -15px;
      width: 24px;
      height: 24px;
      background-color: #007bff;
      border: 4px solid #f0f2f5;
      border-radius: 50%;
      box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
      z-index: 1;
    }

    .blog-list__card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: block;
    }

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

    .blog-list__card-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .blog-list__card-image {
      width: 100%;
      padding-top: 56.25%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .blog-list__card-body {
      padding: 20px;
    }

    .blog-list__card-title {
      font-size: 20px;
      font-weight: bold;
      margin-top: 0;
      margin-bottom: 10px;
      color: #1a1a1a;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

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

    .blog-list__card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #999999;
    }

    .blog-list__card-date {
      white-space: nowrap;
    }

    .blog-list__read-more {
      color: #007bff;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.2s ease;
    }

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

    @media (min-width: 768px) {
      .blog-list__hero-title {
        font-size: 36px;
      }
      .blog-list__hero-description {
        font-size: 18px;
      }
      .blog-list__timeline {
        padding-left: 50px;
      }
      .blog-list__timeline::before {
        left: 20px;
      }
      .blog-list__timeline-dot {
        left: 5px;
      }
      .blog-list__card-link {
        flex-direction: row;
      }
      .blog-list__card-image {
        width: 40%;
        padding-top: 0;
        height: 180px;
        flex-shrink: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 12px;
      }
      .blog-list__card-body {
        width: 60%;
        padding-left: 25px;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__timeline-section {
        padding-left: 40px;
        padding-right: 40px;
      }
      .blog-list__card-link {
        height: 200px;
      }
      .blog-list__card-image {
        height: 200px;
      }
      .blog-list__card-title {
        font-size: 22px;
      }
      .blog-list__card-summary {
        font-size: 16px;
      }
    }