.blog-list__container {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 60px;
    background-color: #f8f9fa;
    color: #333333;
    font-family: Arial, sans-serif;
  }

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

  .blog-list__heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 50px;
    padding-top: 20px;
  }

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

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

  .blog-list__timeline-entry {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
  }

  .blog-list__timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background-color: #007bff;
    border: 4px solid #ffffff;
    border-radius: 50%;
    z-index: 2;
  }

  .blog-list__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: calc(50% - 40px);
    box-sizing: border-box;
  }

  .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-top: 56.25%;
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
  }

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

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

  .blog-list__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #777777;
    margin-bottom: 10px;
  }

  .blog-list__date {
    font-size: 14px;
    color: #555555;
    font-weight: bold;
  }

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

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

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

  .blog-list__summary {
    font-size: 15px;
    color: #666666;
    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 {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-block;
  }

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

  .blog-list__timeline-entry:nth-child(odd) .blog-list__card {
    margin-right: calc(50% + 20px);
  }

  .blog-list__timeline-entry:nth-child(even) .blog-list__card {
    margin-left: calc(50% + 20px);
  }

  @media (max-width: 1024px) {
    .blog-list__heading {
      font-size: 28px;
    }

    .blog-list__timeline::before {
      left: 20px;
      transform: translateX(0);
    }

    .blog-list__timeline-dot {
      left: 20px;
      transform: translateX(-50%);
    }

    .blog-list__timeline-entry {
      justify-content: flex-start;
    }

    .blog-list__card {
      width: calc(100% - 60px);
      margin-left: 60px;
      margin-right: 0;
    }

    .blog-list__timeline-entry:nth-child(odd) .blog-list__card,
    .blog-list__timeline-entry:nth-child(even) .blog-list__card {
      margin-right: 0;
      margin-left: 60px;
    }
  }

  @media (max-width: 768px) {
    .blog-list__heading {
      font-size: 24px;
      margin-bottom: 30px;
    }

    .blog-list__wrapper {
      padding: 0 15px;
    }

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

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

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

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

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

    .blog-list__title {
      font-size: 18px;
    }

    .blog-list__summary {
      font-size: 14px;
    }

    .blog-list__date {
      font-size: 13px;
    }
  }