.blog-list__container {
      padding-top: var(--header-offset, 120px);
      background-color: #1A1A1A;
      color: #FFFFFF;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 40px;
    }

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

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

    .blog-list__hero-description {
      font-size: 1.1em;
      color: #CCCCCC;
      max-width: 700px;
      margin: 0 auto;
    }

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

    .blog-list__timeline-wrapper {
      position: relative;
      padding: 20px 0;
    }

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

    .blog-list__item {
      display: flex;
      justify-content: center;
      margin-bottom: 60px;
      position: relative;
    }

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

    .blog-list__item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 18px;
      height: 18px;
      background-color: #F0B90B;
      border: 3px solid #1A1A1A;
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }

    .blog-list__card {
      background-color: #2C3E50;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 480px;
    }

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

    .blog-list__image-link {
      display: block;
      overflow: hidden;
      position: relative;
      padding-top: 56.25%;
      background-color: #333;
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-list__image-link:hover .blog-list__image {
      transform: scale(1.05);
    }

    .blog-list__content {
      padding: 20px;
    }

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

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

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

    .blog-list__summary {
      font-size: 0.95em;
      color: #CCCCCC;
      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.85em;
      color: #AAAAAA;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 15px;
      margin-top: 15px;
    }

    .blog-list__published-date {
      white-space: nowrap;
    }

    .blog-list__read-more {
      color: #F0B90B;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }

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

    @media (min-width: 768px) {
      .blog-list__hero-title {
        font-size: 3em;
      }

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

      .blog-list__item {
        margin-bottom: 80px;
        flex-direction: row;
        align-items: flex-start;
      }

      .blog-list__item:nth-child(even) {
        flex-direction: row-reverse;
      }

      .blog-list__item::after {
        left: 50%;
      }

      .blog-list__card {
        max-width: 45%;
        margin: 0;
      }

      .blog-list__item:nth-child(odd) .blog-list__card {
        margin-right: calc(50% - 45% - 20px);
      }

      .blog-list__item:nth-child(even) .blog-list__card {
        margin-left: calc(50% - 45% - 20px);
      }
    }

    @media (min-width: 1024px) {
      .blog-list__hero-title {
        font-size: 3.5em;
      }

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

      .blog-list__item {
        margin-bottom: 100px;
      }

      .blog-list__item::after {
        left: 50%;
      }

      .blog-list__card {
        max-width: 40%;
      }

      .blog-list__item:nth-child(odd) .blog-list__card {
        margin-right: calc(50% - 40% - 30px);
      }

      .blog-list__item:nth-child(even) .blog-list__card {
        margin-left: calc(50% - 40% - 30px);
      }
    }