/* ===============================
   RUNNING TEXT / NEWS TICKER
=============================== */

.news-ticker-wrap {
    margin-top: -6px;
    margin-bottom: -35px; /* ⬅️ ATUR JARAK KE LIST BERITA */
    padding: 10px 0 14px;
}

.news-ticker {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 10px 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.ticker-label {
    flex-shrink: 0;
    font-weight: 1000;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #1e40af;
}

.ticker-track {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: tickerMove 35s linear infinite;
}

.ticker-item {
    font-weight: 900;
    font-size: 14px;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ticker-item:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Pause on hover */
.news-ticker:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes tickerMove {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .ticker-label {
        font-size: 12px;
        padding: 6px 10px;
    }

    .ticker-item {
        font-size: 13px;
    }
}
