/*ticker.css*/

/* =========================
   TICKER (vékony, mint az eredeti)
========================= */

.news-ticker {
    background: var(--bg);
    border: none;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    /* finom magasság */
    padding: 4px 0;
    /* EZ a kulcs */
}


.ticker-label {
    flex: 0 0 auto;
    font-weight: 800;
    font-size: 14px;
    color: var(--brand);
    padding-right: 10px;
    border-right: 1px solid var(--border);
}

.ticker-track {
    overflow: hidden;
    flex: 1 1 auto;
}

.ticker-list {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    flex: 0 0 auto;
}

.ticker-link {
    font-weight: 800;
    /* bold */
    font-size: 13px;
    line-height: 1.25;
    /* feszes, de nem tapad */
    color: var(--fg);
}

.ticker-link::before {
    content: ">> ";
    font-weight: 900;
    margin-right: 2px;
    color: var(--brand);
}


.ticker-link:hover {
    text-decoration: underline;
}

.ticker-btn {
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    cursor: pointer;
}
