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

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

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

    .blog-list__hero-description {
      font-size: 1.1em;
      color: #ccc;
      line-height: 1.6;
    }

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

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

    .blog-list__item {
      position: relative;
      margin-bottom: 60px;
      padding: 10px 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .blog-list__item-content-wrapper {
      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;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

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

    .blog-list__item-image-container {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      overflow: hidden;
    }

    .blog-list__item-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      transition: transform 0.3s ease;
    }

    .blog-list__item-content-wrapper:hover .blog-list__item-image {
      transform: scale(1.05);
    }

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

    .blog-list__item-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 10px;
      text-align: left;
      order: -1;
    }

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

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

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

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

    .blog-list__item-read-more {
      display: inline-block;
      background-color: #e0a800;
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      align-self: flex-start;
      margin-top: 10px;
    }

    .blog-list__item-read-more:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

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

      .blog-list__item {
        justify-content: space-between;
        margin-bottom: 80px;
        padding: 0;
      }

      .blog-list__item::before {
        display: block;
      }

      .blog-list__item-content-wrapper {
        width: 48%;
        max-width: none;
      }

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

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

      .blog-list__item-date {
        position: absolute;
        top: 5px;
        font-weight: bold;
        color: #f0f0f0;
        font-size: 1em;
        z-index: 2;
        order: unset;
        background-color: transparent;
        padding: 0;
        margin: 0;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-date {
        right: calc(50% + 40px);
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__item-date {
        left: calc(50% + 40px);
        text-align: left;
      }
    }

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

      .blog-list__item-content-wrapper {
        width: 45%;
      }

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

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

      .blog-list__item:nth-child(odd) .blog-list__item-date {
        right: calc(50% + 60px);
      }

      .blog-list__item:nth-child(even) .blog-list__item-date {
        left: calc(50% + 60px);
      }
    }