@charset "utf-8";

.show-brand-context {
    --show-brand-background: #f2f1ec;
    --show-brand-text: #2b364a;
    align-items: center;
    background: var(--show-brand-background);
    border: 1px solid rgba(36, 52, 59, 0.22);
    border-radius: 18px;
    color: var(--show-brand-text);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 0 32px;
    min-height: 88px;
    padding: 14px 20px;
}

.show-brand-context__logo {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
}

.show-brand-context__logo img {
    display: block;
    height: auto;
    max-height: 72px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.show-brand-context--bds .show-brand-context__logo img {
    max-height: 92px;
}

.show-brand-context__nav {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 4px;
}

.show-brand-context__nav a {
    border-radius: 999px;
    color: inherit;
    font-size: .9rem;
    font-weight: 700;
    padding: 11px 14px;
    text-decoration: none;
}

.show-brand-context__nav a:hover {
    background: color-mix(in srgb, var(--show-brand-text) 10%, transparent);
}

@media (max-width: 600px) {
    .show-brand-context {
        gap: 10px;
        min-height: 72px;
        padding: 12px 14px;
    }

    .show-brand-context__logo {
        justify-content: flex-start;
    }

    .show-brand-context__logo img {
        max-height: 62px;
        object-position: left center;
    }

    .show-brand-context__nav a {
        padding: 11px 9px;
    }
}

@media (max-width: 390px) {
    .show-brand-context { align-items: stretch; flex-direction: column; }
    .show-brand-context__logo { justify-content: center; }
    .show-brand-context__logo img { object-position: center; }
    .show-brand-context__nav { justify-content: center; }
}
