.brand-logo-surface {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
    padding: .5rem .7rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: .65rem;
    background: #fff;
    box-shadow: 0 .35rem 1rem rgba(2, 15, 39, .2);
}

.brand-logo-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 3rem;
    object-fit: contain;
}

.brand-product-name {
    margin: 0;
    color: #fff;
    font-size: .67rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .2em;
    white-space: nowrap;
}

.brand.sidebar-brand {
    display: grid;
    gap: .48rem;
    justify-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.sidebar-brand .brand-logo-surface {
    width: 100%;
    min-height: 3.7rem;
}

.sidebar-brand .brand-logo-image {
    max-width: 11rem;
}

.sidebar-brand .brand-product-name {
    padding-left: .2rem;
}

.brand.mobile-brand,
.brand.public-brand {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.mobile-brand .brand-logo-surface {
    width: 7.2rem;
    padding: .3rem .48rem;
    border-radius: .45rem;
    box-shadow: none;
}

.mobile-brand .brand-logo-image {
    max-height: 1.65rem;
}

.public-brand .brand-logo-surface {
    width: 10rem;
}

@media (max-width: 420px) {
    .mobile-brand {
        gap: .35rem;
    }

    .mobile-brand .brand-logo-surface {
        width: 6.25rem;
        padding: .25rem .4rem;
    }

    .mobile-brand .brand-product-name {
        font-size: .55rem;
        letter-spacing: .1em;
    }
}

@media (max-width: 920px) {
    .brand.sidebar-brand {
        display: none;
    }

    .sidebar .side-nav {
        padding-top: 4rem;
    }
}
