/* Global public-header logo zoom. Change only this value (e.g. 1.10 = +10%, 0.90 = -10%). */
:root {
    --mm-public-header-logo-zoom: 1.5;
}

/* Public-header sizing for the standard SVG wordmark. */
.mm-public-header .brand-logo--header {
    display: flex;
    flex: 0 0 210px;
    width: 210px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    overflow: visible;
    line-height: 0;
}

.mm-public-header .brand-logo--header .brand-logo__image {
    display: block;
    width: 205px;
    height: 46px;
    max-width: 205px;
    max-height: 46px;
    object-fit: contain;
    object-position: center;
    /* Single zoom control shared by every responsive breakpoint. */
    transform: scale(var(--mm-public-header-logo-zoom));
    transform-origin: center;
    filter: drop-shadow(0 0 8px rgba(46, 145, 255, .06));
}

@media (max-width: 1199.98px) {
    .mm-public-header .brand-logo--header {
        flex-basis: 195px;
        width: 195px;
        height: 50px;
        margin-right: 1rem;
    }

    .mm-public-header .brand-logo--header .brand-logo__image {
        width: 190px;
        height: 43px;
        max-width: 190px;
        max-height: 43px;
    }
}

@media (max-width: 575.98px) {
    .mm-public-header .brand-logo--header {
        flex-basis: 170px;
        width: 170px;
        height: 46px;
        margin-right: .75rem;
    }

    .mm-public-header .brand-logo--header .brand-logo__image {
        width: 166px;
        height: 38px;
        max-width: 166px;
        max-height: 38px;
    }
}
