/* marquee.css */

.hero-marquee-rail {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  border-top: 1.5px solid var(--ink-950);
  border-bottom: 1.5px solid var(--ink-950);
  background: var(--white);
}
.marquee {
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 56s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  font-stretch: 95%;
  color: var(--ink-950);
  letter-spacing: -0.022em;
  white-space: nowrap;
}
.marquee-logo {
  width: 26px;
  height: 26px;
  flex: none;
  object-fit: contain;
}
