@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-row {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.marquee-row + .marquee-row {
  margin-top: clamp(24px, 3vw, 40px);
}

.marquee-track,
.marquee-track-reverse {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  width: max-content;
  animation: scrollX 60s linear infinite;
}

.marquee-track-reverse {
  animation-direction: reverse;
}

.marquee-row:hover .marquee-track,
.marquee-row:hover .marquee-track-reverse {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .marquee-track-reverse {
    animation: none;
  }
}

.logo-cell {
  flex: 0 0 auto;
  width: 160px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .logo-cell {
    width: 180px;
  }
}

.logo-mono {
  filter: brightness(0) invert(1);
  opacity: 0.88;
  max-height: 40px;
  max-width: 132px;
  width: auto;
  object-fit: contain;
  transition: opacity 220ms ease;
}

.logo-mono:hover,
.logo-native:hover {
  opacity: 1;
}

.logo-mono-lg {
  max-height: 48px;
  max-width: 142px;
}

.logo-native,
.adya-logo-native {
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: 142px;
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  transition: opacity 220ms ease;
}
