.marquee-band {
  overflow: hidden;
  border-block: 2px solid var(--color-ink);
  background: var(--color-amber);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
  color: rgba(36, 36, 33, 0.82);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  animation: marquee-slide 28s linear infinite;
}

.marquee-track b {
  color: rgba(36, 36, 33, 0.44);
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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