/* ==========================================================================
   VORA — Client logos marquee strip
   ========================================================================== */

.clients {
  background-color: var(--bg-white);
  padding: 28px 0;
}

.clients__row {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.clients__title {
  flex: 0 0 auto;
  max-width: 260px;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}

.clients__ticker {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  height: 44px;
}

.clients__ticker::before,
.clients__ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients__ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients__ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: clients-scroll 30s linear infinite;
}

.clients__logo {
  flex: 0 0 auto;
  width: 88px;
  height: 28px;
  object-fit: contain;
}

/* Keyword chips reusing the marquee track (VORA — no partner logos yet) */
.clients__tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background-color: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(0, 1, 73, 0.12);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-navy);
  white-space: nowrap;
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients__track {
    animation: none;
  }
}

@media (max-width: 809px) {
  .clients__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .clients__title {
    max-width: none;
  }

  .clients__ticker {
    width: 100%;
  }
}
