.blog-list__hero {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      text-align: center;
      background-color: #f9f9f9;
      color: #333;
    }

    .blog-list__hero-title {
      font-size: 2.5em;
      color: #333;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      color: #555;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

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

    .blog-list__timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      height: 100%;
      background-color: #e0e0e0;
      transform: translateX(-1px);
      display: none;
    }

    .blog-list__timeline-entry {
      position: relative;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .blog-list__timeline-badge {
      background-color: #007bff;
      color: #fff;
      border-radius: 5px;
      padding: 5px 10px;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 15px;
      z-index: 1;
      white-space: nowrap;
    }

    .blog-list__card {
      width: 100%;
      max-width: 500px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .blog-list__image-link {
      display: block;
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden;
    }

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

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

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

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

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

    .blog-list__summary {
      font-size: 16px;
      color: #444;
      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;
      background-color: #007bff;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto;
      align-self: flex-start;
    }

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

    @media (max-width: 767px) {
      .blog-list__hero-title {
        font-size: 2em;
      }
      .blog-list__hero-description {
        font-size: 1em;
        padding: 0 15px;
      }
    }

    @media (min-width: 768px) {
      .blog-list__timeline-container {
        padding: 0 30px;
      }
      .blog-list__card {
        max-width: 600px;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__timeline-container::before {
        display: block;
      }

      .blog-list__timeline-entry {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 60px;
      }

      .blog-list__timeline-badge {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        margin-bottom: 0;
        padding: 8px 15px;
        border-radius: 20px;
      }

      .blog-list__card {
        width: calc(50% - 100px);
        max-width: none;
      }

      .blog-list__timeline-entry:nth-child(odd) .blog-list__card {
        margin-right: 70px;
      }

      .blog-list__timeline-entry:nth-child(even) .blog-list__card {
        margin-left: 70px;
      }
    }