.blog-list {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e;
      color: #f0f0f0;
      padding-bottom: 40px;
    }

    .blog-list__hero {
      padding: var(--header-offset, 120px) 20px 40px;
      text-align: center;
      background-color: #2a2a4a;
      margin-bottom: 40px;
    }

    .blog-list__main-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

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

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

    .blog-list__timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 100%;
      background-color: #3e3e60;
      z-index: 0;
      display: none;
    }

    .blog-list__item {
      display: flex;
      flex-direction: column;
      margin-bottom: 40px;
      position: relative;
      background-color: #2a2a4a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 1;
    }

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

    .blog-list__date-wrapper {
      background-color: #3e3e60;
      padding: 10px 15px;
      text-align: center;
      font-size: 0.9em;
      color: #f0f0f0;
      font-weight: bold;
      border-bottom: 1px solid #4a4a70;
    }

    .blog-list__date {
      display: block;
    }

    .blog-list__content {
      padding: 20px;
    }

    .blog-list__image-link {
      display: block;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      line-height: 0;
    }

    .blog-list__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 16 / 9;
      border-radius: 8px;
    }

    .blog-list__title {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.3;
      font-weight: bold;
    }

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

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

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

    .blog-list__read-more {
      display: inline-block;
      background-color: #66ccff;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 0.95em;
    }

    .blog-list__read-more:hover {
      background-color: #88ddff;
    }

    @media (min-width: 768px) {
      .blog-list__hero {
        padding-bottom: 60px;
      }

      .blog-list__main-title {
        font-size: 3em;
      }

      .blog-list__description {
        font-size: 1.2em;
      }

      .blog-list__timeline-container {
        padding: 0 40px;
      }

      .blog-list__timeline-container::before {
        display: block;
      }

      .blog-list__item {
        flex-direction: row;
        margin-bottom: 60px;
        max-width: calc(50% - 30px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      }

      .blog-list__item:nth-child(odd) {
        margin-left: 0;
        margin-right: auto;
        left: 0;
      }

      .blog-list__item:nth-child(even) {
        margin-left: auto;
        margin-right: 0;
        right: 0;
      }

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

      .blog-list__item:nth-child(odd)::after {
        left: calc(100% + 15px);
        transform: translateX(-50%);
      }

      .blog-list__item:nth-child(even)::after {
        right: calc(100% + 15px);
        transform: translateX(50%);
      }

      .blog-list__date-wrapper {
        position: absolute;
        top: 25px;
        width: 120px;
        background-color: transparent;
        border-bottom: none;
        padding: 0;
        text-align: center;
        color: #f0f0f0;
        font-size: 0.95em;
        font-weight: normal;
      }

      .blog-list__item:nth-child(odd) .blog-list__date-wrapper {
        right: calc(-120px - 30px);
      }

      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        left: calc(-120px - 30px);
      }

      .blog-list__image-link {
        flex: 0 0 40%;
        margin-bottom: 0;
      }

      .blog-list__content {
        flex: 1;
        padding-left: 30px;
        padding-right: 20px;
      }

      .blog-list__title {
        font-size: 1.5em;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__hero {
        padding-bottom: 80px;
      }
      .blog-list__main-title {
        font-size: 3.5em;
      }
      .blog-list__timeline-container {
        max-width: 1200px;
        padding: 0 60px;
      }
      .blog-list__item {
        max-width: calc(50% - 40px);
      }
      .blog-list__item:nth-child(odd) {
        margin-right: auto;
      }
      .blog-list__item:nth-child(even) {
        margin-left: auto;
      }

      .blog-list__item:nth-child(odd)::after {
        left: calc(100% + 20px);
      }

      .blog-list__item:nth-child(even)::after {
        right: calc(100% + 20px);
      }

      .blog-list__item:nth-child(odd) .blog-list__date-wrapper {
        right: calc(-120px - 40px);
      }

      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        left: calc(-120px - 40px);
      }
    }