.blog-list {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
    background-color: #f8f8f8;
    color: #333;
  }

  .blog-list__hero {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .blog-list__hero-title {
    font-size: 28px;
    color: #004085; 
    margin-bottom: 15px;
    line-height: 1.3;
  }

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

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

  .blog-list__timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px; 
    width: 4px;
    background-color: #e0e0e0;
    z-index: 1;
  }

  .blog-list__item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px; 
    z-index: 2;
  }

  .blog-list__item:last-child {
    margin-bottom: 0;
  }

  .blog-list__item-marker {
    width: 20px;
    height: 20px;
    background-color: #004085; 
    border: 4px solid #f8f8f8; 
    border-radius: 50%;
    position: absolute;
    left: 10px; 
    top: 0;
    z-index: 3;
    box-shadow: 0 0 0 2px #004085; 
  }

  .blog-list__item-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 150px;
  }

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

  .blog-list__item-date {
    display: block;
    font-size: 14px;
    color: #777; 
    margin-bottom: 10px;
    font-weight: 500;
  }

  .blog-list__item-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .blog-list__item-image-wrapper {
    width: 100%;
    padding-bottom: 56.25%; 
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
  }

  .blog-list__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog-list__item-link:hover .blog-list__item-image {
    transform: scale(1.05);
  }

  .blog-list__item-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: bold;
    transition: color 0.3s ease;
  }

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

  .blog-list__item-summary {
    font-size: 15px;
    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;
  }

  .blog-list__read-more {
    display: inline-block;
    font-size: 15px;
    color: #004085;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-list__read-more:hover {
    color: #002a55; 
    text-decoration: underline;
  }

  
  @media (min-width: 768px) {
    .blog-list__timeline-wrapper::before {
      left: 50%;
      transform: translateX(-50%);
    }

    .blog-list__item {
      display: flex;
      justify-content: space-between;
      padding-left: 0;
      margin-bottom: 60px;
    }

    .blog-list__item-marker {
      left: 50%;
      transform: translateX(-50%);
      top: 25px; 
      border-color: #f8f8f8; 
    }

    .blog-list__item-date {
      position: absolute;
      top: 0;
      font-size: 16px;
      color: #004085;
      font-weight: bold;
      width: calc(50% - 70px); 
    }

    .blog-list__item-content {
      width: calc(50% - 40px); 
      padding: 30px;
    }

    
    .blog-list__item:nth-child(odd) {
      flex-direction: row-reverse; 
    }

    .blog-list__item:nth-child(odd) .blog-list__item-date {
      right: calc(50% + 40px); 
      text-align: right;
    }

    
    .blog-list__item:nth-child(even) {
      flex-direction: row; 
    }

    .blog-list__item:nth-child(even) .blog-list__item-date {
      left: calc(50% + 40px); 
      text-align: left;
    }

    .blog-list__item-image-wrapper {
      margin-bottom: 20px;
    }

    .blog-list__item-title {
      font-size: 22px;
    }

    .blog-list__item-summary {
      font-size: 16px;
    }
  }

  @media (min-width: 1024px) {
    .blog-list__timeline-wrapper {
      max-width: 1100px; 
    }
  }