/* ══════════════════════════════════════════════════════════
   Top bar (announcement strip above header)
   ══════════════════════════════════════════════════════════ */

#topbar {
    background: #0b2b55;
    color: #e8efff;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    height: auto !important;
}

#topbar .topbar-inner {
    max-width: 1240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    height: auto !important;
    padding: 6px 12px;
}

.topbar-message {
    font-weight: 500;
}

#topbar .topbar-link {
    white-space: nowrap;
    color: #e8efff;
    text-decoration: none !important;
    font-weight: 600;
}

#topbar .topbar-link:hover {
    opacity: 1;
}

#topbar .topbar-message,
#topbar .topbar-link {
    display: block;
    width: 100%;
    white-space: normal !important;
    overflow: visible !important;
    text-align: center;
    line-height: 1.25;
}

#topbar .topbar-link span {
    display: block;
}

#topbar,
#topbar .topbar-link,
#topbar .topbar-link:visited,
#topbar .topbar-link:hover,
#topbar .topbar-link:active,
#topbar .topbar-link span,
#topbar .topbar-link strong {
    color: #fff !important;
    text-decoration: none;
}

/* Desktop */
@media (min-width: 768px) {
    #topbar .topbar-inner {
        flex-direction: row;
        gap: 2rem;
    }

    #topbar .topbar-link span {
        display: inline;
    }

    #topbar .topbar-link .line-2::before {
        content: " ";
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    #topbar {
        padding: 0 !important;
    }

    #topbar .topbar-inner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 4px 10px !important;
    }

    #topbar .topbar-link {
        line-height: 1.15;
    }

    #topbar .topbar-link span {
        margin: 0;
    }
}
