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

    .blog-list__header {
      text-align: center;
      padding: 40px 20px 20px;
    }

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

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

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

    @media (min-width: 768px) {
      .blog-list__timeline-container::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #ffcc00;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        z-index: 0;
      }
    }

    .blog-list__item {
      padding: 10px 0;
      position: relative;
      width: 100%;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .blog-list__date {
      font-size: 0.9em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 10px;
      font-weight: bold;
      letter-spacing: 0.5px;
    }

    .blog-list__card {
      background-color: #2a2a2a;
      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;
      height: 100%;
    }

    .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%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-bottom: 1px solid #333;
    }

    .blog-list__image-link {
        display: block;
        text-decoration: none;
    }

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

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

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

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

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

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid #333;
    }

    .blog-list__published-at {
      font-size: 0.8em;
      color: #999999;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

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

    @media (max-width: 767px) {
      .blog-list__heading {
        font-size: 2em;
      }
      .blog-list__description {
        font-size: 1em;
      }
      .blog-list__item {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
      }
      .blog-list__date {
        text-align: left;
        padding-left: 10px;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__timeline-container::after {
        left: 50%;
      }
      .blog-list__item {
        width: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 0;
        padding-right: 0;
      }
      .blog-list__item:nth-child(odd) {
        float: left;
        clear: left;
      }
      .blog-list__item:nth-child(even) {
        float: right;
        clear: right;
      }
      .blog-list__date {
        position: absolute;
        width: 100px;
        top: 0;
        text-align: center;
        margin-bottom: 0;
        line-height: 1.2;
        padding: 5px 0;
      }
      .blog-list__item:nth-child(odd) .blog-list__date {
        right: calc(-100px - 10px);
      }
      .blog-list__item:nth-child(even) .blog-list__date {
        left: calc(-100px - 10px);
      }
      .blog-list__card {
        margin-left: auto;
        margin-right: auto;
      }
      .blog-list__item:nth-child(odd) .blog-list__card {
        margin-right: 20px;
      }
      .blog-list__item:nth-child(even) .blog-list__card {
        margin-left: 20px;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__timeline-container::after {
        left: 50%;
      }
      .blog-list__item {
        width: calc(50% - 20px);
        margin-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
      }

      .blog-list__item:nth-child(odd) {
        float: left;
        clear: left;
        transform: translateX(-10px);
      }

      .blog-list__item:nth-child(even) {
        float: right;
        clear: right;
        transform: translateX(10px);
      }

      .blog-list__date {
        position: absolute;
        width: 120px;
        top: 0;
        text-align: center;
        margin-bottom: 0;
        line-height: 1.2;
        padding: 5px 0;
      }

      .blog-list__item:nth-child(odd) .blog-list__date {
        right: calc(-120px - 20px);
      }

      .blog-list__item:nth-child(even) .blog-list__date {
        left: calc(-120px - 20px);
      }

      .blog-list__card {
        position: relative;
      }
      .blog-list__item:nth-child(odd) .blog-list__card {
        margin-right: 30px;
      }
      .blog-list__item:nth-child(even) .blog-list__card {
        margin-left: 30px;
      }
    }

    .blog-list__timeline-container::after {
      content: "";
      display: table;
      clear: both;
    }