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

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

  .blog-list__page-title {
    text-align: center;
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: bold;
  }

  .blog-list__description {
    text-align: center;
    color: #c0c0c0;
    font-size: 16px;
    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-color: #FFD700;
    margin-left: -2px;
    z-index: 1;
    display: none;
  }

  .blog-list__item {
    background-color: #2e3b55;
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
  }

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

  .blog-list__item-date {
    font-size: 14px;
    color: #FFD700;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
  }

  .blog-list__item-image-wrapper {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .blog-list__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .blog-list__item-text {
    padding: 0;
  }

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

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

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

  .blog-list__item-summary {
    font-size: 15px;
    color: #c0c0c0;
    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__item-read-more {
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
  }

  .blog-list__item-read-more:hover {
    background-color: #e6c200;
    color: #000;
  }

  @media (max-width: 767px) {
    .blog-list {
      padding: 15px;
      padding-top: var(--header-offset, 120px);
    }
    .blog-list__page-title {
      font-size: 28px;
    }
    .blog-list__description {
      font-size: 15px;
    }
    .blog-list__item {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
    }
    .blog-list__item-date {
      text-align: left;
      margin-left: 10px;
    }
    .blog-list__item-title {
      font-size: 18px;
    }
    .blog-list__item-summary {
      font-size: 14px;
    }
  }

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

    .blog-list__item {
      width: calc(50% - 60px);
      margin-bottom: 60px;
      position: relative;
    }

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

    .blog-list__item:nth-child(odd) .blog-list__item-text {
      padding-right: 0;
      text-align: right;
    }
    .blog-list__item:nth-child(odd) .blog-list__item-title-link {
      text-align: right;
    }
    .blog-list__item:nth-child(odd) .blog-list__item-summary {
      text-align: right;
    }
    .blog-list__item:nth-child(odd) .blog-list__item-read-more {
      float: right;
    }
    .blog-list__item:nth-child(odd) .blog-list__item-date {
        text-align: right;
    }

    .blog-list__item:nth-child(even) {
      margin-left: calc(50% + 30px);
      text-align: left;
    }
    .blog-list__item:nth-child(even) .blog-list__item-text {
      padding-left: 0;
      text-align: left;
    }
    .blog-list__item:nth-child(even) .blog-list__item-title-link {
      text-align: left;
    }
    .blog-list__item:nth-child(even) .blog-list__item-summary {
      text-align: left;
    }
    .blog-list__item:nth-child(even) .blog-list__item-read-more {
      float: left;
    }
    .blog-list__item:nth-child(even) .blog-list__item-date {
        text-align: left;
    }

    .blog-list__item::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: #FFD700;
      border: 4px solid #2e3b55;
      top: 25px;
      z-index: 3;
    }

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

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

    .blog-list__item-date {
      position: absolute;
      top: 20px;
      font-size: 16px;
      width: 100px;
      text-align: center;
      z-index: 3;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-date {
      right: -170px;
      color: #f0f0f0;
    }

    .blog-list__item:nth-child(even) .blog-list__item-date {
      left: -170px;
      color: #f0f0f0;
    }

    .blog-list__item-image-wrapper {
        margin-bottom: 10px;
    }
  }

  @media (min-width: 1024px) {
    .blog-list__item {
      width: calc(50% - 80px);
    }
    .blog-list__item:nth-child(odd) {
      margin-right: calc(50% + 50px);
    }
    .blog-list__item:nth-child(even) {
      margin-left: calc(50% + 50px);
    }
    .blog-list__item:nth-child(odd)::after {
      right: -65px;
    }
    .blog-list__item:nth-child(even)::after {
      left: -65px;
    }
    .blog-list__item:nth-child(odd) .blog-list__item-date {
      right: -200px;
    }
    .blog-list__item:nth-child(even) .blog-list__item-date {
      left: -200px;
    }
  }