.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: #f8f9fa;
      color: #333;
      font-family: 'Arial', sans-serif;
    }

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

    .blog-list__heading {
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      color: #1a1a1a;
      font-weight: bold;
    }

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

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

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

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

    .blog-list__item-wrapper:nth-child(even) .blog-list__card {
      left: calc(50% + 30px);
    }

    .blog-list__item-wrapper:nth-child(odd) .blog-list__card {
      right: calc(50% + 30px);
    }

    .blog-list__date-marker {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 20px;
      background-color: #007bff;
      border-radius: 50%;
      z-index: 2;
      box-shadow: 0 0 0 3px #f8f9fa;
    }

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

    .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;
    }

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

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

    .blog-list__title {
      font-size: 1.25em;
      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: 0.9em;
      color: #666;
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .blog-list__published-at {
      font-size: 0.8em;
      color: #999;
    }

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

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

    @media (max-width: 1024px) {
      .blog-list__timeline::before {
        left: 20px;
        transform: translateX(0);
      }

      .blog-list__item-wrapper:nth-child(even) .blog-list__card,
      .blog-list__item-wrapper:nth-child(odd) .blog-list__card {
        left: 60px;
        right: auto;
        max-width: calc(100% - 80px);
      }

      .blog-list__item-wrapper:nth-child(even) .blog-list__date-marker,
      .blog-list__item-wrapper:nth-child(odd) .blog-list__date-marker {
        left: 20px;
        transform: translateX(-50%);
      }

      .blog-list__card {
        margin-left: 40px;
      }
    }

    @media (max-width: 768px) {
      .blog-list__heading {
        font-size: 2em;
      }

      .blog-list__description {
        font-size: 1em;
      }

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

      .blog-list__item-wrapper:nth-child(even) .blog-list__card,
      .blog-list__item-wrapper:nth-child(odd) .blog-list__card {
        left: 45px;
        max-width: calc(100% - 60px);
      }

      .blog-list__item-wrapper:nth-child(even) .blog-list__date-marker,
      .blog-list__item-wrapper:nth-child(odd) .blog-list__date-marker {
        left: 15px;
      }

      .blog-list__card {
        margin-left: 30px;
      }

      .blog-list__title {
        font-size: 1.1em;
      }

      .blog-list__summary {
        font-size: 0.85em;
      }

      .blog-list__read-more {
        padding: 6px 12px;
        font-size: 0.85em;
      }
    }

    @media (max-width: 480px) {
      .blog-list__container {
        padding: 0 10px;
      }
      .blog-list__card {
        max-width: calc(100% - 40px);
        margin-left: 20px;
      }
      .blog-list__timeline::before {
        left: 10px;
      }
      .blog-list__item-wrapper:nth-child(even) .blog-list__date-marker,
      .blog-list__item-wrapper:nth-child(odd) .blog-list__date-marker {
        left: 10px;
      }
    }