.subpage-header {
    --subpage-header-max-height: 30pt;
    container-type: inline-size;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.25rem, 2vw, 1rem);
    width: 100%;
    margin-bottom: 1em;
}

.subpage-header__brand,
.subpage-header__store {
    /* Conservative fallback for browsers without container query units. */
    --subpage-header-height: min(var(--subpage-header-max-height), 7vw);
}

@supports (height: 1cqi) {
    .subpage-header__brand,
    .subpage-header__store {
        --subpage-header-height: min(var(--subpage-header-max-height), 10cqi);
    }
}

.subpage-header__brand {
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    min-width: 0;
    gap: 0.28em;
    color: #2B3B5E;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: var(--subpage-header-height);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.subpage-header__brand:link,
.subpage-header__brand:visited {
    color: #2B3B5E;
}

.subpage-header__logo,
.subpage-header__badge {
    display: block;
    width: auto;
    max-width: none;
    height: var(--subpage-header-height);
}

.subpage-header__store {
    display: block;
    flex: 0 0 auto;
    line-height: 0;
}

.subpage-header__store picture {
    display: block;
    height: var(--subpage-header-height);
}

.subpage-header__store picture .subpage-header__badge {
    height: 100%;
}
