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

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .blog-list__hero-section {
      text-align: center;
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #222;
      border-radius: 12px;
    }

    .blog-list__page-title {
      font-size: 32px;
      font-weight: bold;
      color: #FFC107;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .blog-list__description {
      font-size: 18px;
      color: #cccccc;
      max-width: 800px;
      margin: 0 auto;
    }

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

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

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        display: block;
      }
    }

    .blog-list__timeline-item {
      position: relative;
      margin-bottom: 40px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    @media (min-width: 768px) {
      .blog-list__timeline-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }
      .blog-list__timeline-item:nth-child(even) {
        flex-direction: row-reverse;
      }
      .blog-list__timeline-item:nth-child(odd) .blog-list__date-wrapper {
        text-align: right;
      }
    }

    .blog-list__date-wrapper {
      position: relative;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      margin-bottom: 15px;
    }

    @media (min-width: 768px) {
      .blog-list__date-wrapper {
        width: calc(50% - 40px);
        padding: 0;
        margin-bottom: 0;
        text-align: left;
      }
      .blog-list__timeline-item:nth-child(even) .blog-list__date-wrapper {
        text-align: right;
      }
    }

    .blog-list__date {
      font-size: 14px;
      color: #FFC107;
      font-weight: bold;
      background-color: #222;
      padding: 8px 15px;
      border-radius: 20px;
      display: inline-block;
    }

    @media (min-width: 768px) {
      .blog-list__date {
        font-size: 16px;
      }
      .blog-list__timeline-item::after {
        content: '';
        position: absolute;
        top: 25px;
        left: 50%;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #FFC107;
        border: 4px solid #1a1a1a;
        transform: translateX(-50%);
        z-index: 1;
      }
      .blog-list__timeline-item:nth-child(even)::after {
        left: 50%;
      }
    }

    .blog-list__card {
      background-color: #222;
      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;
      width: 100%;
      max-width: 450px;
      position: relative;
    }

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

    @media (min-width: 768px) {
      .blog-list__card {
        width: calc(50% - 40px);
        max-width: none;
      }
    }

    .blog-list__link-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .blog-list__image-wrapper {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .blog-list__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

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

    .blog-list__content {
      padding: 20px;
      position: relative;
      z-index: 2;
    }

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

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

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

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

    .blog-list__read-more {
      display: inline-flex;
      align-items: center;
      color: #FFC107;
      text-decoration: none;
      font-weight: bold;
      font-size: 15px;
      transition: color 0.3s ease;
    }

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

    .blog-list__arrow {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .blog-list__read-more:hover .blog-list__arrow {
      transform: translateX(5px);
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__page-title {
        font-size: 28px;
      }
      .blog-list__description {
        font-size: 16px;
      }
      .blog-list__timeline-item {
        margin-bottom: 60px;
      }
      .blog-list__date-wrapper {
        width: calc(50% - 30px);
      }
      .blog-list__card {
        width: calc(50% - 30px);
      }
      .blog-list__timeline::before {
        left: 50%;
      }
      .blog-list__timeline-item::after {
        left: 50%;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__page-title {
        font-size: 38px;
      }
      .blog-list__description {
        font-size: 19px;
      }
      .blog-list__timeline {
        max-width: 1000px;
      }
      .blog-list__timeline-item {
        margin-bottom: 80px;
      }
      .blog-list__date-wrapper {
        width: calc(50% - 60px);
      }
      .blog-list__card {
        width: calc(50% - 60px);
      }
      .blog-list__timeline-item:nth-child(odd) .blog-list__card {
        margin-left: auto;
      }
      .blog-list__timeline-item:nth-child(even) .blog-list__card {
        margin-right: auto;
      }
      .blog-list__timeline-item:nth-child(odd) .blog-list__date-wrapper {
        margin-right: auto;
      }
      .blog-list__timeline-item:nth-child(even) .blog-list__date-wrapper {
        margin-left: auto;
      }
      .blog-list__timeline-item:nth-child(odd)::after {
        left: 50%;
      }
      .blog-list__timeline-item:nth-child(even)::after {
        left: 50%;
      }
    }