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

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

    .blog-list__main-title {
      font-size: 32px;
      font-weight: bold;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 20px;
    }

    .blog-list__description {
      font-size: 16px;
      color: #cccccc;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px 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-color: #ffcc00;
      transform: translateX(-50%);
      z-index: 1;
    }

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

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

    .blog-list__item:nth-child(odd) {
      flex-direction: row;
    }

    .blog-list__item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .blog-list__image-wrapper {
      flex: 0 0 40%;
      position: relative;
      padding-bottom: 22.5%;
      overflow: hidden;
      border-radius: 12px 0 0 12px;
    }

    .blog-list__item:nth-child(even) .blog-list__image-wrapper {
      border-radius: 0 12px 12px 0;
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-list__item:hover .blog-list__image {
      transform: scale(1.05);
    }

    .blog-list__content {
      flex: 1;
      padding: 25px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

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

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

    .blog-list__summary {
      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__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .blog-list__published-at {
      font-size: 13px;
      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: 14px;
      transition: background-color 0.3s ease;
    }

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

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        left: 50%;
      }

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

      .blog-list__item:nth-child(odd) {
        margin-right: 52%;
      }

      .blog-list__item:nth-child(even) {
        margin-left: 52%;
      }

      .blog-list__item::after {
        content: '';
        position: absolute;
        top: 30px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #ffcc00;
        border: 3px solid #1a1a1a;
        z-index: 3;
      }

      .blog-list__item::before {
        content: '';
        position: absolute;
        top: 37px;
        width: 50px;
        height: 2px;
        background-color: #ffcc00;
        z-index: 2;
      }

      .blog-list__item:nth-child(odd)::after {
        right: -60px;
      }
      .blog-list__item:nth-child(odd)::before {
        right: -50px;
      }

      .blog-list__item:nth-child(even)::after {
        left: -60px;
      }
      .blog-list__item:nth-child(even)::before {
        left: -50px;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .blog-list__container {
        padding: 0 15px;
      }

      .blog-list__timeline::before {
        left: 50%;
      }

      .blog-list__item {
        width: 90%;
        margin: 0 auto 40px auto;
        left: 0;
        right: 0;
      }

      .blog-list__item:nth-child(odd),
      .blog-list__item:nth-child(even) {
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
      }

      .blog-list__image-wrapper {
        flex: none;
        width: 100%;
        padding-bottom: 56.25%;
        border-radius: 12px 12px 0 0;
      }

      .blog-list__item:nth-child(even) .blog-list__image-wrapper {
        border-radius: 12px 12px 0 0;
      }

      .blog-list__item::after,
      .blog-list__item::before {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .blog-list__container {
        padding: 0 10px;
      }

      .blog-list__timeline::before {
        left: 20px;
        transform: translateX(0);
      }

      .blog-list__item {
        width: calc(100% - 40px);
        margin-left: 40px;
        flex-direction: column;
        margin-bottom: 30px;
      }

      .blog-list__item:nth-child(odd),
      .blog-list__item:nth-child(even) {
        margin-left: 40px;
        flex-direction: column;
      }

      .blog-list__image-wrapper {
        flex: none;
        width: 100%;
        padding-bottom: 56.25%;
        border-radius: 12px 12px 0 0;
      }

      .blog-list__item:nth-child(even) .blog-list__image-wrapper {
        border-radius: 12px 12px 0 0;
      }

      .blog-list__content {
        padding: 15px;
      }

      .blog-list__title {
        font-size: 18px;
        margin-bottom: 8px;
      }

      .blog-list__summary {
        font-size: 14px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
      }

      .blog-list__published-at {
        font-size: 12px;
      }

      .blog-list__read-more {
        padding: 6px 12px;
        font-size: 13px;
      }

      .blog-list__item::after {
        content: '';
        position: absolute;
        top: 30px;
        left: -30px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #ffcc00;
        border: 3px solid #1a1a1a;
        z-index: 3;
      }

      .blog-list__item::before {
        content: '';
        position: absolute;
        top: 37px;
        left: -20px;
        width: 20px;
        height: 2px;
        background-color: #ffcc00;
        z-index: 2;
      }
    }