.news-ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;  
    
    position: relative;
}

.news-ticker-track {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.news-ticker-item {
    display: inline-block;
    margin-right: 10px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.news-ticker-item:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 5px;
    color: #000;
}

@keyframes ticker {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
