.news-ticker-container {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.news-ticker-container.fade-enabled {
    transition: opacity var(--fade-duration, 2000ms) ease-in-out;
}

.news-ticker-container.visible {
    visibility: visible;
    opacity: 1;
}

.news-ticker-label {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    white-space: nowrap;
    font-size: 14px;
    flex: 0 0 auto;
    margin: 0;
    padding: 0 15px;
}

.news-ticker-wrapper {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: none;
    margin: 0;
    padding: 0;
}

.news-ticker-wrapper::before {
    display: none;
}

.news-ticker-content {
    display: flex;
    align-items: center;
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin-right: 50px;
    flex-shrink: 0;
    background: none;
}

.ticker-item:first-child {
    padding-left: 0;
}

.ticker-item a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

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

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .news-ticker-container {
        height: 50px;
    }

    .ticker-item a {
        font-size: 13px;
    }
} 