
.news-ticker-wrapper { overflow: hidden; white-space: nowrap; width: 100%; box-sizing: border-box; padding: 10px; border-radius: 4px; font-weight: 600; user-select: none; } .news-ticker-track { display: inline-block; white-space: nowrap; animation-name: tickerScroll; animation-timing-function: linear; animation-iteration-count: infinite; } .news-ticker-item { display: inline-block; padding: 0 25px; text-decoration: none; transition: color 0.3s ease; font-size: 16px; } .news-ticker-item:hover { text-decoration: underline; } @keyframes tickerScroll { from { transform: translateX(100%); } to { transform: translateX(-100%); } }