.blog-list {
      font-family: 'Arial', sans-serif;
      background-color: #222;
      color: #f0f0f0;
      padding: 20px 0;
    }

    .blog-list__section {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--header-offset, 120px) 20px 40px;
    }

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

    .blog-list__description {
      font-size: 18px;
      color: #cccccc;
      text-align: center;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .blog-list__timeline-container {
      display: flex;
      flex-direction: column;
      gap: 40px;
      position: relative;
      padding-left: 30px;
    }

    .blog-list__timeline-container::before {
      content: '';
      position: absolute;
      left: 10px;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: #555;
      z-index: 0;
    }

    .blog-list__item {
      display: flex;
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }

    .blog-list__date-wrapper {
      flex-shrink: 0;
      width: 80px;
      text-align: right;
      padding-right: 20px;
      position: relative;
    }

    .blog-list__date {
      display: block;
      font-size: 14px;
      color: #bbb;
      margin-bottom: 5px;
    }

    .blog-list__indicator {
      position: absolute;
      right: -5px;
      top: 5px;
      width: 12px;
      height: 12px;
      background-color: #FFC107;
      border-radius: 50%;
      border: 2px solid #222;
      z-index: 2;
    }

    .blog-list__content {
      flex-grow: 1;
      background-color: #333;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-left: 20px;
      max-width: calc(100% - 100px); 
    }

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

    .blog-list__image-link {
      display: block;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .blog-list__image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
      aspect-ratio: 16 / 9;
    }

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

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

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

    .blog-list__summary {
      font-size: 16px;
      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 {
      display: inline-block;
      background-color: #FFC107;
      color: #222;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

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

    @media (min-width: 768px) {
      .blog-list__section {
        padding-left: 30px;
        padding-right: 30px;
      }
      .blog-list__timeline-container {
        padding-left: 100px;
      }

      .blog-list__timeline-container::before {
        left: 40px;
      }

      .blog-list__date-wrapper {
        width: 120px;
        padding-right: 30px;
      }

      .blog-list__indicator {
        right: -6px;
        top: 5px;
        width: 14px;
        height: 14px;
      }

      .blog-list__content {
        margin-left: 30px;
        max-width: calc(100% - 150px);
      }

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

    @media (min-width: 1024px) {
      .blog-list__section {
        padding-left: 40px;
        padding-right: 40px;
      }
      .blog-list__timeline-container {
        padding-left: 150px;
      }

      .blog-list__timeline-container::before {
        left: 60px;
      }

      .blog-list__date-wrapper {
        width: 150px;
        padding-right: 40px;
      }

      .blog-list__indicator {
        right: -7px;
        top: 5px;
        width: 16px;
        height: 16px;
      }

      .blog-list__content {
        margin-left: 40px;
        max-width: calc(100% - 200px);
      }

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