.news-ticker-wrapper {
    display: flex;
    align-items: center;
    background: #1a237e;
    overflow: hidden;
    height: 40px;
    width: 100%;
    position: relative;
}

.news-ticker-label {
    background: #c41e3a;
    color: white;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    min-width: 100px;
    white-space: nowrap;
    z-index: 2;
}

.news-ticker-wrapper-inner {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.news-ticker-items {
    position: absolute;
    display: flex;
    right: 0;
    animation: tickerScroll 15s linear infinite;
    gap: 500px;
}

.news-ticker-single {
    min-width: 300px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-ticker-single::after {
    content: '|';
    position: absolute;
    right: -250px;
    color: white;
}

.news-ticker-single:last-child::after {
    display: none;
}

.news-ticker-single a {
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.news-ticker-single a:hover {
    text-decoration: underline;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.news-ticker-wrapper-inner:hover .news-ticker-items {
    animation-play-state: paused;
}