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

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

  .blog-list__container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    z-index: 0;
  }

  .blog-list__item {
    padding: 10px 0;
    position: relative;
    width: 50%;
    box-sizing: border-box;
  }

  .blog-list__item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
  }

  .blog-list__item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
  }

  .blog-list__item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #003d80;
    border: 2px solid #fff;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
  }

  .blog-list__item:nth-child(odd)::after {
    right: -8px;
  }

  .blog-list__item:nth-child(even)::after {
    left: -8px;
  }

  .blog-list__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

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

  .blog-list__image-wrapper {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
  }

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

  .blog-list__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: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
  }

  .blog-list__title-link:hover {
    color: #003d80;
  }

  .blog-list__summary {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .blog-list__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .blog-list__date {
    font-size: 13px;
    color: #6c757d;
  }

  .blog-list__read-more-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #003d80;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }

  .blog-list__read-more-link:hover {
    background-color: #002a5a;
  }

  @media (max-width: 768px) {
    .blog-list__container::after {
      left: 20px;
      margin-left: 0;
    }

    .blog-list__item {
      width: 100%;
      padding-left: 50px;
      padding-right: 15px;
      left: 0;
    }

    .blog-list__item:nth-child(odd) {
      padding-right: 15px;
    }

    .blog-list__item:nth-child(even) {
      padding-left: 50px;
      left: 0;
    }

    .blog-list__item::after {
      left: 12px;
    }

    .blog-list__item:nth-child(odd)::after {
      right: auto;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .blog-list__item {
      width: 50%;
    }
  }