.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: #f0f2f5;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #333;
      line-height: 1.6;
    }

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

    .blog-list__section-header {
      text-align: center;
      margin-bottom: 50px;
      padding-top: 30px;
    }

    .blog-list__section-title {
      font-size: 2.8em;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 15px;
      line-height: 1.2;
    }

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

    .blog-list__timeline {
      position: relative;
      padding: 20px 0;
    }

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

    .blog-list__timeline-item {
      display: flex;
      margin-bottom: 30px;
      position: relative;
      padding-left: 50px;
      align-items: flex-start;
    }

    .blog-list__timeline-dot {
      width: 16px;
      height: 16px;
      background-color: #0062cc;
      border: 4px solid #fff;
      border-radius: 50%;
      position: absolute;
      left: 13px;
      top: 5px;
      z-index: 1;
      box-shadow: 0 0 0 2px rgba(0, 98, 204, 0.3);
    }

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

    .blog-list__timeline-item:hover .blog-list__card {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .blog-list__card-image-wrapper {
      width: 100%;
      padding-top: 56.25%;
      position: relative;
      overflow: hidden;
    }

    .blog-list__card-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-list__card-body {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-list__card-date-top {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .blog-list__card-title {
      font-size: 1.35em;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

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

    .blog-list__card-title-link:hover {
      color: #0062cc;
    }

    .blog-list__card-summary {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    .blog-list__card-footer {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-top: auto;
    }

    .blog-list__card-link {
      color: #0062cc;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95em;
      transition: color 0.3s ease, text-decoration 0.3s ease;
    }

    .blog-list__card-link:hover {
      text-decoration: underline;
      color: #004a99;
    }

    .blog-list__view-all-button-wrapper {
        text-align: center;
        margin-top: 60px;
    }

    .blog-list__view-all-button {
      background-color: #0062cc;
      color: #fff;
      padding: 14px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(0, 98, 204, 0.2);
    }

    .blog-list__view-all-button:hover {
      background-color: #004a99;
      transform: translateY(-2px);
    }

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

      .blog-list__timeline-item {
        padding-left: 0;
        justify-content: center;
        margin-bottom: 50px;
      }

      .blog-list__timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        top: 25px;
      }

      .blog-list__card {
        width: calc(50% - 40px);
        flex-direction: row;
        align-items: stretch;
      }

      .blog-list__card-image-wrapper {
        width: 40%;
        padding-top: 0;
        height: auto;
        flex-shrink: 0;
      }
      .blog-list__card-image {
        position: static;
        height: 100%;
      }

      .blog-list__card-body {
        width: 60%;
        padding: 20px 25px;
      }

      .blog-list__timeline-item:nth-child(odd) {
        justify-content: flex-start;
      }
      .blog-list__timeline-item:nth-child(odd) .blog-list__card {
        margin-right: calc(50% + 20px);
        margin-left: 0;
      }
      .blog-list__timeline-item:nth-child(even) {
        justify-content: flex-end;
      }
      .blog-list__timeline-item:nth-child(even) .blog-list__card {
        margin-left: calc(50% + 20px);
        margin-right: 0;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__section-title {
        font-size: 3.5em;
      }

      .blog-list__timeline-item {
        margin-bottom: 70px;
      }

      .blog-list__card {
        width: calc(40% - 40px);
      }

      .blog-list__timeline-item:nth-child(odd) .blog-list__card {
        margin-right: calc(60% + 20px);
      }

      .blog-list__timeline-item:nth-child(even) .blog-list__card {
        margin-left: calc(60% + 20px);
      }

      .blog-list__card-image-wrapper {
        width: 35%;
      }

      .blog-list__card-body {
        width: 65%;
      }
    }