.blog-list__container {
      padding: 20px 15px;
      max-width: 1200px;
      margin: 0 auto;
      padding-top: var(--header-offset, 120px);
      background-color: #f8f8f8;
      color: #333;
    }

    .blog-list__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-list__title {
      font-size: 2.2em;
      color: #1a1a1a;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: #555;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .blog-list__timeline {
      position: relative;
      padding: 20px 0;
      list-style: none;
    }

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

    .blog-list__timeline-item {
      position: relative;
      margin-bottom: 50px;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      display: flex;
      justify-content: center;
      z-index: 2;
    }

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

    .blog-list__timeline-content-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .blog-list__card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      max-width: 450px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #eee;
    }

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

    .blog-list__card-image {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      display: block;
    }

    .blog-list__card-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-list__card-date {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 10px;
      text-align: right;
    }

    .blog-list__card-title {
      font-size: 1.25em;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
      color: #222;
    }

    .blog-list__card-title-link {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

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

    .blog-list__card-summary {
      font-size: 1em;
      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;
      flex-grow: 1;
    }

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto;
      padding: 8px 15px;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 0.95em;
      font-weight: 600;
      align-self: flex-start;
      transition: background-color 0.3s ease;
    }

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

    .blog-list__timeline-item::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: #007bff;
      border: 3px solid #fff;
      z-index: 3;
      display: none;
    }

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

      .blog-list__timeline-item {
        width: 50%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
      }

      .blog-list__timeline-item:nth-child(odd) {
        float: left;
        clear: both;
        text-align: right;
        padding-right: 40px;
      }

      .blog-list__timeline-item:nth-child(even) {
        float: right;
        clear: both;
        text-align: left;
        padding-left: 40px;
      }

      .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-content-wrapper {
        justify-content: flex-end;
      }

      .blog-list__timeline-item:nth-child(even) .blog-list__timeline-content-wrapper {
        justify-content: flex-start;
      }

      .blog-list__timeline-item::after {
        display: block;
      }

      .blog-list__timeline-item:nth-child(odd)::after {
        left: calc(100% - 8px);
        transform: translateX(50%);
      }

      .blog-list__timeline-item:nth-child(even)::after {
        left: -8px;
        transform: translateX(-50%);
      }

      .blog-list__card-date {
        text-align: inherit;
      }

      .blog-list__read-more {
        align-self: flex-start;
      }

      .blog-list__timeline-item:nth-child(odd) .blog-list__read-more {
        align-self: flex-end;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__container {
        padding: 40px 20px;
      }

      .blog-list__timeline::before {
        left: 50%;
      }

      .blog-list__timeline-item {
        width: 50%;
        margin-bottom: 60px;
      }

      .blog-list__timeline-item:nth-child(odd) {
        padding-right: 60px;
      }

      .blog-list__timeline-item:nth-child(even) {
        padding-left: 60px;
      }
    }