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

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

    .blog-list__title {
      text-align: center;
      font-size: 2.2em;
      color: #1a1a1a;
      margin-bottom: 40px;
      padding: 0 15px;
    }

    .blog-list__item {
      position: relative;
      margin-bottom: 30px;
      z-index: 2;
    }

    .blog-list__link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .blog-list__card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .blog-list__image-wrapper {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      overflow: hidden;
      background-color: #eee;
    }

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

    .blog-list__content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-list__date-wrapper {
      margin-bottom: 10px;
      font-size: 0.85em;
      color: #777;
    }

    .blog-list__heading {
      font-size: 1.2em;
      font-weight: bold;
      margin-top: 0;
      margin-bottom: 10px;
      color: #1a1a1a;
      line-height: 1.4;
    }

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

    .blog-list__read-more {
      display: inline-block;
      font-size: 0.85em;
      color: #d4af37;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
      margin-top: auto;
    }

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

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

      .blog-list__item {
        padding-left: 60px;
      }

      .blog-list__item::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 10px;
        width: 24px;
        height: 24px;
        background-color: #d4af37;
        border: 4px solid #fff;
        border-radius: 50%;
        z-index: 3;
        box-shadow: 0 0 0 2px #d4af37;
      }

      .blog-list__heading {
        font-size: 1.1em;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .blog-list__timeline {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 20px 0;
      }
      .blog-list__timeline::before,
      .blog-list__item::before {
        display: none;
      }
      .blog-list__item {
        width: calc(50% - 30px);
        margin: 0 15px 30px;
        padding-left: 0;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__timeline {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 20px 0;
      }
      .blog-list__timeline::before,
      .blog-list__item::before {
        display: none;
      }
      .blog-list__title {
        width: 100%;
      }
      .blog-list__item {
        width: calc(33.333% - 30px);
        margin: 0 15px 30px;
        padding-left: 0;
      }
    }