/* ============================================================
   TICKER / MARQUEE
   ============================================================ */

.ticker {
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-red);
  border-bottom: 1px solid var(--color-red);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.ticker__track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker__track:hover {
  animation-play-state: paused;
}

.ticker__content {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.ticker__item {
  font-family: var(--font-meursault);
  font-size: var(--text-h5);
  font-variation-settings: "wght" 550, "wdth" 75;
  color: var(--color-red);
  letter-spacing: 0.07em;
  padding-right: 48px;
}

.ticker__item::after {
  content: "—";
  padding-left: 48px;
  opacity: 0.5;
}

.ticker__item:last-child::after {
  /* Keep the separator — it bridges back to the loop start */
}

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