.marquee-section {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vh, 2.75rem) 0;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  border-block: 1px solid rgba(7, 54, 70, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}

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

.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--ink);
}

.marquee-item__dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.marquee-item:nth-child(6n + 1) .marquee-item__dot { background: #E31E24; }
.marquee-item:nth-child(6n + 2) .marquee-item__dot { background: #08327E; }
.marquee-item:nth-child(6n + 3) .marquee-item__dot { background: #E31E24; }
.marquee-item:nth-child(6n + 4) .marquee-item__dot { background: #08327E; }
.marquee-item:nth-child(6n + 5) .marquee-item__dot { background: #08327E; }
.marquee-item:nth-child(6n + 6) .marquee-item__dot { background: #E31E24; }

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

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