.logo-strip {
  padding: clamp(24px, 4vw, 56px) 16px;
  background: #fff;
}

.logo-strip__title {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 34px);
  font-weight: 700;
  margin: 0 0 clamp(18px, 3vw, 32px);
}

.marquee {
  position: relative;
  overflow: hidden;
  /* nice “fade” on edges like many SaaS sites */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--duration, 35s) linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__list {
  
 
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);

  /* ✅ this creates space between last item and first item of the cloned list */
  padding-right: 7px;

  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  list-style: none;
}

.marquee__list li {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* responsive logo sizing */
.marquee__list img {
  height: clamp(40px, 6vw, 70px); /* was smaller */
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; transform: none; }
}

/* keyframes */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--scroll-distance, 600px))); }
}
