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

  .blog-list__header-section {
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 960px;
    margin: 0 auto;
  }

  .blog-list__main-title {
    font-size: 2.2em;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .blog-list__description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
  }

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

  .blog-list__timeline-wrapper {
    position: relative;
    padding-left: 30px;
  }

  .blog-list__timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background-color: #ddd;
  }

  .blog-list__item {
    position: relative;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .blog-list__item-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 12px;
  }

  .blog-list__item-dot {
    position: absolute;
    left: -28px;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: #007bff;
    border-radius: 50%;
    border: 3px solid #f8f9fa;
    z-index: 1;
  }

  .blog-list__item-content {
    display: flex;
    flex-direction: column;
  }

  .blog-list__cover-image {
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .blog-list__text-wrapper {
    padding: 20px;
  }

  .blog-list__title {
    font-size: 1.25em;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .blog-list__summary {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-list__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875em;
  }

  .blog-list__date {
    color: #555;
  }

  .blog-list__read-more {
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
  }

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

  @media (min-width: 768px) {
    .blog-list__timeline-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      padding-left: 0;
    }

    .blog-list__timeline-wrapper::before {
      left: 50%;
      transform: translateX(-50%);
    }

    .blog-list__item {
      margin-bottom: 0;
      width: auto;
    }

    .blog-list__item:nth-child(odd) {
      grid-column: 1 / 2;
      padding-right: 30px;
      text-align: right;
    }

    .blog-list__item:nth-child(even) {
      grid-column: 2 / 3;
      padding-left: 30px;
      text-align: left;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-dot {
      left: auto;
      right: -28px;
    }

    .blog-list__item:nth-child(even) .blog-list__item-dot {
      left: -28px;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-link {
      align-items: flex-end;
    }
    .blog-list__item:nth-child(even) .blog-list__item-link {
      align-items: flex-start;
    }

    .blog-list__item:nth-child(odd) .blog-list__text-wrapper {
      text-align: right;
    }
    .blog-list__item:nth-child(even) .blog-list__text-wrapper {
      text-align: left;
    }

    .blog-list__item:nth-child(odd) .blog-list__meta {
      justify-content: flex-end;
    }
    .blog-list__item:nth-child(even) .blog-list__meta {
      justify-content: flex-start;
    }
    .blog-list__item:nth-child(odd) .blog-list__read-more {
      margin-left: 15px;
    }
    .blog-list__item:nth-child(even) .blog-list__read-more {
      margin-right: 15px;
    }
  }

  @media (min-width: 1024px) {
    .blog-list__timeline-wrapper {
      grid-template-columns: repeat(3, 1fr);
      padding-left: 0;
    }

    .blog-list__timeline-wrapper::before {
      display: none;
    }

    .blog-list__item {
      margin-bottom: 0;
      padding: 0;
      text-align: left;
    }

    .blog-list__item-dot {
      display: none;
    }

    .blog-list__item-link {
      align-items: stretch;
    }

    .blog-list__text-wrapper {
      text-align: left;
    }

    .blog-list__meta {
      justify-content: space-between;
    }
  }