/* ============================================================
   Snapback News Ticker — ticker.css v2.1
   ============================================================ */

.snt-ticker-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    height: 44px;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    background: transparent;
}

/* Scrolling area */
.snt-ticker-outer {
    flex: 1;
    overflow: hidden;
    height: 100%;
    position: relative;
}

/* The moving strip — JS controls the animation */
.snt-ticker-inner {
    display: inline-flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    will-change: transform;
}

/* Individual item */
.snt-item {
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
}

.snt-item a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.snt-item a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* Separator */
.snt-sep {
    opacity: 0.4;
    padding: 0 8px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .snt-ticker-wrap {
        height: 38px;
        font-size: 13px !important;
    }
}
