
    /* ----- SLIDER WRAPPER ----- */
    .slider-wrapper {
      max-width: 100%;
      width: 100%;
      background: #ffffff;
      padding: 2.5rem 1.5rem;
    }

    /* header */
    /*.cds.hhh {
      text-align: center;
      margin-bottom: 2.2rem;
    }
    .cds.hhh h2 {
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #0b2a3c;
      display: inline-block;
      border-bottom: 4px solid #2b7a8a;
      padding-bottom: 0.4rem;
      margin: 0 auto;
    }*/

    /* ----- LOGO SLIDER ----- */
    .logo-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 0.75rem 0;
      background: transparent;
    }

    /* edge fade masks */
    .logo-slider::before,
    .logo-slider::after {
      content: '';
      position: absolute;
      top: 0;
      width: 60px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }
    .logo-slider::before {
      left: 0;
      background: linear-gradient(to right, #ffffff, transparent);
    }
    .logo-slider::after {
      right: 0;
      background: linear-gradient(to left, #ffffff, transparent);
    }

    /* ----- TRACK -----
       IMPORTANT: no `gap` here. We use margin-right on each item instead,
       so spacing is perfectly uniform even across the clone boundary.
       The animation shifts the track by exactly -50% of its width,
       which equals the width of one full set (including the trailing margin
       of the last item), so the loop is pixel-perfect with no gap/jump. */
    .logo-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: scrollLogos 28s linear infinite;
      will-change: transform;
      backface-visibility: hidden;
    }

    /* each logo item – spacing via margin-right (uniform, no gap property) */
    .logo-item {
      flex: 0 0 auto;
      width: 130px;
      height: 80px;
      margin-right: 3rem; /* same spacing everywhere */
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
      transition: filter 0.2s, transform 0.2s;
      padding: 0.25rem;
    }

    .logo-item img {
      max-width: 100%;
      max-height: 100%;
      width: 122px;
      height: 61px;
      display: block;
      object-fit: contain;
      filter: grayscale(0%) brightness(1);
      transition: transform 0.3s ease, filter 0.2s;
    }

    .logo-item:hover img {
      transform: scale(1.05);
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.06));
    }

    /* ----- KEYFRAMES: shift by exactly 50% of the track width -----
       Because the track contains the original set + cloned set,
       and each item has uniform margin-right, the second set begins
       exactly at 50% of the total width. Moving -50% makes the
       second set land precisely where the first set started →
       infinite, gap-free loop. */
    @keyframes scrollLogos {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* pause on hover */
    .logo-slider:hover .logo-track {
      animation-play-state: paused;
    }

    /* ----- RESPONSIVE ----- */
    @media (max-width: 640px) {
      .slider-wrapper {
        padding: 1.5rem 0.8rem;
      }
      .logo-item {
        width: 100px;
        height: 64px;
        margin-right: 2rem;
      }
      .cds.hhh h2 {
        font-size: 1.5rem;
      }
      .logo-slider::before,
      .logo-slider::after {
        width: 30px;
      }
    }

    @media (max-width: 420px) {
      .logo-item {
        width: 80px;
        height: 56px;
        margin-right: 1.5rem;
      }
    }

    .logo-item span {
      font-size: 0.8rem;
      font-weight: 500;
      color: #2b4b5e;
      opacity: 0.6;
      letter-spacing: 0.3px;
      text-align: center;
    }
