.blog-list {
      padding-top: var(--header-offset, 120px);
      background-color: #1a1a1a;
      color: #f0f0f0;
      min-height: 100vh;
      padding-bottom: 40px;
    }

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

    .blog-list__title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #ffcc00;
      font-weight: bold;
    }

    .blog-list__description {
      text-align: center;
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: #333;
      margin-left: -2px;
      z-index: 1;
      display: none;
    }

    .blog-list__item {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      position: relative;
      width: 100%;
    }

    .blog-list__item::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 50%;
      width: 20px;
      height: 20px;
      background: #ffcc00;
      border: 4px solid #1a1a1a;
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: none;
    }

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

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

    .blog-list__image-wrapper {
      width: 100%;
      padding-top: 56.25%;
      position: relative;
      overflow: hidden;
      display: block;
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

    .blog-list__date {
      font-size: 0.85em;
      color: #bbb;
      margin-bottom: 10px;
      text-align: right;
    }

    .blog-list__heading {
      margin: 0 0 10px 0;
    }

    .blog-list__title-link {
      font-size: 1.3em;
      font-weight: bold;
      color: #ffcc00;
      text-decoration: none;
      line-height: 1.4;
      display: block;
    }

    .blog-list__title-link:hover {
      text-decoration: underline;
    }

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

    .blog-list__read-more {
      display: inline-block;
      margin-top: auto;
      padding: 10px 15px;
      background-color: #ffcc00;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

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

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

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

      .blog-list__card {
        max-width: 48%;
        width: calc(50% - 40px);
      }

      .blog-list__item:nth-child(odd) {
        justify-content: flex-start;
        padding-right: calc(50% + 20px);
      }

      .blog-list__item:nth-child(even) {
        justify-content: flex-end;
        padding-left: calc(50% + 20px);
      }

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

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

      .blog-list__item:nth-child(odd) .blog-list__date {
        text-align: left;
      }
      .blog-list__item:nth-child(even) .blog-list__date {
        text-align: right;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__title {
        font-size: 3em;
      }

      .blog-list__card {
        max-width: 400px;
        width: 100%;
      }
    }