/* Einheitliche Modul-Kopfzeile
   Referenz: Rekrutierung. Farben bleiben in den jeweiligen Modul-CSS-Dateien. */
:root {
    --module-navbar-height: 82px;
    --module-navbar-height-mobile: 72px;
    --module-logo-height: 54px;
    --module-logo-height-mobile: 45px;
    --module-logo-max-width: 210px;
    --module-brand-width: 300px;
}

.module-navbar {
    min-height: var(--module-navbar-height);
}

.module-navbar > .container-fluid {
    min-height: calc(var(--module-navbar-height) - 16px);
}

.module-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    white-space: nowrap;
}

.module-logo {
    display: block;
    width: auto;
    height: var(--module-logo-height);
    max-width: var(--module-logo-max-width);
    flex: 0 0 auto;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.module-title {
    min-width: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .module-brand {
        width: var(--module-brand-width);
        max-width: var(--module-brand-width);
        flex: 0 0 var(--module-brand-width);
    }

    .module-navbar .navbar-collapse {
        min-width: 0;
        align-items: center;
    }

    .module-navbar .navbar-collapse > .navbar-nav:first-child {
        margin-left: 0 !important;
    }

    .module-navbar .navbar-nav {
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .module-navbar {
        min-height: var(--module-navbar-height-mobile);
    }

    .module-navbar > .container-fluid {
        min-height: calc(var(--module-navbar-height-mobile) - 16px);
    }

    .module-brand {
        width: auto;
        max-width: calc(100% - 72px);
        flex-basis: auto;
    }

    .module-logo {
        height: var(--module-logo-height-mobile);
        max-width: 175px;
    }

    .module-title {
        display: none;
    }
}
