.blog-list {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #ffffff;
      background-color: #1a1a1a;
      padding: 0 20px;
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      line-height: 1.6;
    }

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

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

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

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

    .blog-list__item:nth-child(odd) {
      left: 0;
      padding-right: 40px;
    }

    .blog-list__item:nth-child(even) {
      left: 50%;
      padding-left: 40px;
    }

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

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

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

    .blog-list__date-wrapper {
      position: absolute;
      top: 15px;
      font-size: 14px;
      color: #aaaaaa;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .blog-list__item:nth-child(odd) .blog-list__date-wrapper {
      right: calc(100% + 20px);
      text-align: right;
    }

    .blog-list__item:nth-child(even) .blog-list__date-wrapper {
      left: calc(100% + 20px);
      text-align: left;
    }

    .blog-list__date-icon {
      display: inline-block;
      width: 16px;
      height: 16px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23aaaaaa'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
    }

    .blog-list__card-content {
      padding: 20px;
      background-color: #333333;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .blog-list__image-wrapper {
      width: 100%;
      padding-top: 56.25%;
      position: relative;
      border-radius: 5px;
      overflow: hidden;
    }

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

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

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin: 0;
      color: #e0b300;
    }

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

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

    .blog-list__summary {
      font-size: 15px;
      color: #cccccc;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 3em;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: #e0b300;
      color: #1a1a1a;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      align-self: flex-start;
      margin-top: 10px;
    }

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

    @media (max-width: 767px) {
      .blog-list__timeline::after {
        left: 20px;
      }

      .blog-list__item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
        left: 0 !important;
      }

      .blog-list__item:nth-child(odd) {
        padding-right: 0;
      }

      .blog-list__item:nth-child(even) {
        padding-left: 0;
      }

      .blog-list__item::after {
        left: 10px !important;
      }

      .blog-list__date-wrapper {
        position: static;
        text-align: left !important;
        margin-bottom: 10px;
        color: #e0b300;
      }
      
      .blog-list__item:nth-child(odd) .blog-list__date-wrapper,
      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        right: auto;
        left: auto;
      }

      .blog-list__card-content {
        padding: 15px;
      }

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

      .blog-list__summary {
        font-size: 14px;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .blog-list__timeline::after {
        left: 50%;
      }
      .blog-list__item {
        width: 50%;
      }
      .blog-list__item:nth-child(odd) {
        left: 0;
        padding-right: 40px;
      }
      .blog-list__item:nth-child(even) {
        left: 50%;
        padding-left: 40px;
      }
      .blog-list__item:nth-child(odd)::after {
        right: -13px;
        left: auto;
      }
      .blog-list__item:nth-child(even)::after {
        left: -13px;
        right: auto;
      }
      .blog-list__item:nth-child(odd) .blog-list__date-wrapper {
        right: calc(100% + 20px);
        text-align: right;
        left: auto;
      }
      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        left: calc(100% + 20px);
        text-align: left;
        right: auto;
      }
    }