#notice-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    box-sizing: border-box;
    background-color: red;
    line-height: 1.4;
}

#notice-banner p {
    color: #fff;
    margin: 0;
    padding-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
}

/* ── Override Salient's inline style on the fixed header ── */
#header-outer {
    top: var(--notice-banner-height, 0px) !important;
}

@media (max-width: 600px) {
    #notice-banner {
        padding: 8px 16px;
    }

    #notice-banner p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

