:root {
    --rebrand-banner-height: 36px;
}

.rebrand-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    min-height: var(--rebrand-banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    color: #475569;
    border-bottom: 1px solid rgba(0, 102, 204, 0.12);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    padding: 0.45rem 1rem;
    line-height: 1.35;
}

body.has-rebrand-banner .navbar.fixed-top {
    top: var(--rebrand-banner-height);
}

body.has-rebrand-banner .hero-section {
    padding-top: calc(80px + var(--rebrand-banner-height));
}

@media (max-width: 768px) {
    :root {
        --rebrand-banner-height: 44px;
    }

    .rebrand-banner {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    body.has-rebrand-banner .hero-section {
        padding-top: calc(100px + var(--rebrand-banner-height));
    }
}
