/* ======================================
   GLOBAL TOP BAR (DESKTOP + MOBILE)
   ====================================== */

.financity-top-bar {
    display: block;
    background: #000;
    color: #fff;
    font-size: 14px;
}

.financity-top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- LEFT : NAV TEXT ---------- */
.financity-top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
}

/* ---------- MODERN TICKER ---------- */
.financity-nav-ticker {
    overflow: hidden;
    position: relative;
    max-width: 900px;
}

.financity-nav-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: navTicker 18s linear infinite;
}

@keyframes navTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ---------- RIGHT ---------- */
.financity-top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.financity-top-bar-right a {
    color: #F5821F;
    font-weight: 600;
}

/* ======================================
   MOBILE RESPONSIVE
   ====================================== */

@media (max-width: 768px) {

    .financity-top-bar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 8px 12px;
    }

    .financity-top-bar-left {
        flex-direction: column;
        align-items: flex-start;
        white-space: normal;
        font-size: 12px;
    }

    .financity-nav-ticker {
        max-width: 100%;
    }

    .financity-top-bar-right {
        width: 100%;
        justify-content: space-between;
        font-size: 13px;
    }

    .financity-top-bar-divider {
        display: none;
    }
}
