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

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

    .blog-list__title-section {
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
    }

    .blog-list__main-heading {
      font-size: 32px;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-list__timeline {
      position: relative;
      padding: 20px 0;
      list-style: none;
      margin: 0;
    }

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 20px;
      width: 4px;
      background-color: #e0e0e0;
      z-index: 1;
    }

    .blog-list__item {
      position: relative;
      margin-bottom: 30px;
      padding-left: 60px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }

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

    .blog-list__item-marker {
      position: absolute;
      left: 10px;
      top: 15px;
      width: 25px;
      height: 25px;
      background-color: #007bff;
      border: 3px solid #fff;
      border-radius: 50%;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
      font-weight: bold;
    }

    .blog-list__date {
      position: absolute;
      left: -80px;
      top: 18px;
      font-size: 13px;
      color: #777;
      white-space: nowrap;
      display: none;
    }

    .blog-list__item-content {
      padding: 20px;
      width: 100%;
    }

    .blog-list__image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 8px 8px 0 0;
    }

    .blog-list__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

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

    .blog-list__heading-link:hover {
      color: #007bff;
    }

    .blog-list__excerpt {
      font-size: 15px;
      color: #666;
      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-date {
      font-size: 13px;
      color: #999;
      margin-bottom: 15px;
    }

    .blog-list__read-more {
      display: inline-block;
      padding: 10px 20px;
      background-color: #28a745;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 15px;
      transition: background-color 0.3s ease;
    }

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

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

      .blog-list__item {
        width: calc(50% - 40px);
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
      }

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

      .blog-list__item:nth-child(even) {
        margin-left: calc(50% + 40px);
        text-align: left;
      }

      .blog-list__item-marker {
        left: auto;
        top: 50%;
        transform: translateY(-50%);
      }

      .blog-list__item:nth-child(odd) .blog-list__item-marker {
        right: -65px;
        left: auto;
      }

      .blog-list__item:nth-child(even) .blog-list__item-marker {
        left: -65px;
        right: auto;
      }

      .blog-list__date {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: auto;
      }

      .blog-list__item:nth-child(odd) .blog-list__date {
        left: auto;
        right: -150px;
        text-align: left;
      }

      .blog-list__item:nth-child(even) .blog-list__date {
        right: auto;
        left: -150px;
        text-align: right;
      }

      .blog-list__image-wrapper {
        height: 220px;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__container {
        padding: 0 40px;
      }

      .blog-list__timeline::before {
        left: 50%;
        transform: translateX(-50%);
      }

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

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

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

      .blog-list__item-marker {
        width: 30px;
        height: 30px;
        font-size: 16px;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-marker {
        right: -70px;
      }

      .blog-list__item:nth-child(even) .blog-list__item-marker {
        left: -70px;
      }

      .blog-list__item:nth-child(odd) .blog-list__date {
        right: -180px;
      }

      .blog-list__item:nth-child(even) .blog-list__date {
        left: -180px;
      }

      .blog-list__image-wrapper {
        height: 250px;
      }

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

      .blog-list__excerpt {
        font-size: 16px;
      }
    }