.blog-list {
      padding-top: var(--header-offset, 120px);
      background-color: #1a1a1a;
      color: #ffffff;
      padding-bottom: 60px;
      font-family: Arial, sans-serif;
    }

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

    .blog-list__heading {
      text-align: center;
      font-size: 32px;
      color: #ffd700;
      margin-bottom: 40px;
      padding-top: 30px;
      font-weight: bold;
    }

    .blog-list__description {
      text-align: center;
      font-size: 16px;
      color: #cccccc;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

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

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

    @media (max-width: 1024px) {
      .blog-list__timeline::before {
        left: 20px;
        transform: translateX(0);
      }
    }

    .blog-list__timeline-item {
      padding: 10px 0;
      position: relative;
      width: 50%;
      margin-bottom: 40px;
    }

    @media (max-width: 1024px) {
      .blog-list__timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
        margin-bottom: 30px;
      }
      .blog-list__timeline-item:nth-child(even) {
        text-align: left;
        margin-left: 0;
      }
    }

    .blog-list__timeline-item:nth-child(odd) {
      margin-left: 0;
      text-align: right;
      clear: both;
    }

    .blog-list__timeline-item:nth-child(even) {
      margin-left: 50%;
      text-align: left;
      clear: both;
    }

    .blog-list__timeline-dot {
      position: absolute;
      top: 20px;
      width: 18px;
      height: 18px;
      background-color: #ffd700;
      border: 3px solid #1a1a1a;
      border-radius: 50%;
      z-index: 2;
    }

    .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-dot {
      right: -9px;
    }

    .blog-list__timeline-item:nth-child(even) .blog-list__timeline-dot {
      left: -9px;
    }

    @media (max-width: 1024px) {
      .blog-list__timeline-dot {
        left: 11px;
        right: auto;
      }
      .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-dot,
      .blog-list__timeline-item:nth-child(even) .blog-list__timeline-dot {
        left: 11px;
      }
    }

    .blog-list__timeline-date {
      font-size: 14px;
      color: #999999;
      margin-bottom: 10px;
      display: block;
    }

    .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-date {
      position: absolute;
      top: 15px;
      right: calc(100% + 20px);
      width: 150px;
      text-align: right;
    }

    .blog-list__timeline-item:nth-child(even) .blog-list__timeline-date {
      position: absolute;
      top: 15px;
      left: calc(100% + 20px);
      width: 150px;
      text-align: left;
    }

    @media (max-width: 1024px) {
      .blog-list__timeline-date {
        position: absolute;
        top: 15px;
        left: 60px;
        width: auto;
        text-align: left;
        font-size: 12px;
        color: #ffd700;
      }
      .blog-list__timeline-item:nth-child(odd) .blog-list__timeline-date,
      .blog-list__timeline-item:nth-child(even) .blog-list__timeline-date {
        position: absolute;
        left: 60px;
        right: auto;
        top: 15px;
        width: auto;
        text-align: left;
      }
    }

    .blog-list__card {
      background-color: #2c2c2c;
      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;
      position: relative;
      padding: 20px;
    }

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

    .blog-list__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
    }

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

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

    .blog-list__card-title-link:hover {
      color: #ffffff;
    }

    .blog-list__card-excerpt {
      font-size: 15px;
      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;
    }

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

    .blog-list__read-more-link:hover {
      background-color: #ffffff;
      color: #1a1a1a;
    }

    @media (min-width: 1025px) {
      .blog-list__timeline-item:nth-child(odd) {
        float: left;
        clear: both;
      }
      .blog-list__timeline-item:nth-child(even) {
        float: right;
        clear: both;
      }
    }

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

    .blog-list__heading, .blog-list__card-title-link {
      color: #ffd700;
    }
    .blog-list__description, .blog-list__card-excerpt {
      color: #cccccc;
    }
    .blog-list__timeline-date {
      color: #999999;
    }
    .blog-list__read-more-link {
      background-color: #ffd700;
      color: #1a1a1a;
    }
    .blog-list__read-more-link:hover {
      background-color: #ffffff;
      color: #1a1a1a;
    }