.blog-list {
      background-color: #1a1a1a;
      color: #f0f0f0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding-bottom: 40px;
    }

    .blog-list__hero {
      padding: var(--header-offset, 120px) 20px 40px;
      text-align: center;
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      margin-bottom: 40px;
    }

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

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

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

    .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: #ffcc00;
    }

    .blog-list__item {
      display: flex;
      margin-bottom: 40px;
      position: relative;
      background-color: #2a2a2a;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 20px;
    }

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

    .blog-list__item-date-wrapper {
      flex-shrink: 0;
      width: 100px;
      text-align: right;
      padding-right: 20px;
      position: relative;
    }

    .blog-list__item-date-wrapper::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 0px;
      width: 12px;
      height: 12px;
      background-color: #ffcc00;
      border-radius: 50%;
      border: 2px solid #1a1a1a;
      z-index: 1;
    }

    .blog-list__item-date {
      font-size: 0.9em;
      color: #b0b0b0;
      white-space: nowrap;
      display: block;
      padding-top: 5px;
    }

    .blog-list__item-content {
      flex-grow: 1;
      padding-left: 20px;
    }

    .blog-list__item-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .blog-list__item-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

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

    .blog-list__item-link-title:hover {
      color: #ffd700;
    }

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

    .blog-list__item-read-more {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .blog-list__item-read-more:hover {
      background-color: #ffd700;
      color: #000;
    }

    @media (max-width: 1024px) {
      .blog-list__hero-title {
        font-size: 2em;
      }
      .blog-list__hero-description {
        font-size: 1em;
      }
      .blog-list__item {
        flex-direction: column;
        padding: 15px;
      }
      .blog-list__item-date-wrapper {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
      }
      .blog-list__item-date-wrapper::before {
        left: -20px;
        top: 5px;
      }
      .blog-list__item-date {
        font-size: 0.85em;
        padding-top: 0;
      }
      .blog-list__item-content {
        padding-left: 0;
      }
      .blog-list__item-image-container {
        height: 180px;
      }
      .blog-list__item-title {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .blog-list__hero {
        padding-left: 15px;
        padding-right: 15px;
      }
      .blog-list__hero-title {
        font-size: 1.8em;
      }
      .blog-list__timeline-wrapper {
        padding-left: 20px;
      }
      .blog-list__timeline-wrapper::before {
        left: 5px;
      }
      .blog-list__item {
        margin-bottom: 30px;
      }
      .blog-list__item-date-wrapper::before {
        left: -15px;
      }
      .blog-list__item-image-container {
        height: 150px;
      }
      .blog-list__item-title {
        font-size: 1.3em;
      }
      .blog-list__item-summary {
        font-size: 0.9em;
      }
      .blog-list__item-read-more {
        padding: 8px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .blog-list__hero-title {
        font-size: 1.5em;
      }
      .blog-list__hero-description {
        font-size: 0.9em;
      }
      .blog-list__timeline-wrapper {
        padding-left: 15px;
      }
      .blog-list__timeline-wrapper::before {
        left: 0px;
      }
      .blog-list__item-date-wrapper::before {
        left: -10px;
      }
      .blog-list__item-image-container {
        height: 120px;
      }
    }