.ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__text {
  display: inline-block;
  padding-left: 100%;
  animation: tickerScroll 30s linear infinite;
}

/* Adjust 20s → higher number = slower on mobile */
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}