/**
 * Cormack Theme Settings - News Scroller Styles
 */

.cts-news-scroller {
    background: linear-gradient(135deg, #99201F 0%, #FF3633 100%);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 999;
}

.cts-scroller-track {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.cts-scroller-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    color: #ffffff;
}

.cts-prefix {
    font-weight: 600;
    flex-shrink: 0;
}

.cts-separator {
    display: inline-block;
    margin: 0 20px;
    background: rgba(217, 217, 217, 1);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .cts-scroller-track {
        padding: 6px 0;
    }

    .cts-separator {
        margin: 0 15px;
    }
}
