.blog-list {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e;
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
    min-height: 100vh;
  }

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

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

  .blog-list__item {
    padding: 10px 0;
    position: relative;
    width: 50%;
    margin-bottom: 40px;
    z-index: 1;
  }

  .blog-list__item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffd700;
    border: 4px solid #1a1a2e;
    top: 20px;
    border-radius: 50%;
    z-index: 2;
  }

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

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

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

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

  .blog-list__item-content {
    background-color: #2a2a4a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

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

  .blog-list__item-date {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .blog-list__item:nth-child(odd) .blog-list__item-date {
    text-align: right;
  }
  .blog-list__item:nth-child(even) .blog-list__item-date {
    text-align: left;
  }

  .blog-list__item-image {
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-color: #3a3a5a;
    border-radius: 8px;
    margin-bottom: 15px;
  }

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

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

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

  .blog-list__item-summary {
    color: #cccccc;
    font-size: 15px;
    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__item-read-more {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
  }

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

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

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

    .blog-list__item::after {
      left: 10px;
      right: auto;
    }

    .blog-list__item:nth-child(odd) {
      padding-right: 0;
    }
    .blog-list__item:nth-child(odd)::after {
      left: 10px;
      right: auto;
    }
    .blog-list__item:nth-child(even) {
      left: 0;
      padding-left: 60px;
    }
    .blog-list__item:nth-child(even)::after {
      left: 10px;
      right: auto;
    }

    .blog-list__item-date {
      text-align: left;
    }
  }

  @media (max-width: 768px) {
    .blog-list__timeline {
      padding: 20px 15px;
    }

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

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

    .blog-list__item-read-more {
      font-size: 13px;
      padding: 7px 12px;
    }
  }