.ticker { overflow:hidden; }
.ticker .ticker-track { display:flex; width:max-content; gap:0; animation:tickerSeamless 22s linear infinite; will-change:transform; }
.ticker .ticker-set { display:flex; flex:0 0 auto; align-items:center; gap:30px; padding-right:30px; animation:none; }
.ticker .ticker-set span { flex:0 0 auto; }
@keyframes tickerSeamless { to { transform:translateX(-50%); } }
@media(prefers-reduced-motion:reduce){.ticker .ticker-track{animation-play-state:paused}}
