.page-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    margin-bottom: 1.15rem;
}

.page-context .breadcrumb {
    min-width: 0;
    margin-bottom: 0;
    overflow-x: auto;
}

.page-context .breadcrumb li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .75em;
}

.page-context__account {
    max-width: min(50%, 32rem);
    margin: 0;
    padding-left: 0;
    overflow: hidden;
    color: #64748b;
    font-size: .875rem;
    line-height: 1.3;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-context__account:first-child {
    margin-left: auto;
}

.page-context__account strong {
    color: #475569;
    font-weight: 600;
}

.page-context__account-label {
    margin-right: .4rem;
    color: #64748b;
}

.page-context__account-link,
.page-context .billing-account-issue-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    padding: .2rem .35rem;
    border-radius: 7px;
    color: inherit !important;
    text-decoration: none !important;
    transition: background-color .15s ease, color .15s ease;
}

.page-context__account .page-context__account-link strong,
.page-context__account .page-context__account-link .page-context__account-alert,
.page-context__account .billing-account-issue-link strong,
.page-context__account .billing-account-issue-link .billing-account-alert {
    color: #f14668 !important;
}

.page-context__account .page-context__account-link .page-context__account-number,
.page-context__account .billing-account-issue-link .billing-account-number {
    color: #7a5260 !important;
}

.page-context__account-link:hover,
.page-context__account-link:focus,
.page-context .billing-account-issue-link:hover,
.page-context .billing-account-issue-link:focus {
    background: #feecf0;
    outline: none;
}

.page-context__account-link:hover strong,
.page-context__account-link:focus strong,
.page-context__account-link:hover .page-context__account-number,
.page-context__account-link:focus .page-context__account-number,
.page-context .billing-account-issue-link:hover strong,
.page-context .billing-account-issue-link:focus strong,
.page-context .billing-account-issue-link:hover .billing-account-number,
.page-context .billing-account-issue-link:focus .billing-account-number {
    color: #cc0f35 !important;
}

.page-context__account-alert,
.page-context .billing-account-alert {
    margin-right: .55rem;
    color: #ef476f;
}

.page-context__account-separator {
    margin: 0 .4rem;
    color: #94a3b8;
}

.page-context__account-number {
    font-variant-numeric: tabular-nums;
}

@media screen and (max-width: 700px) {
    .page-context {
        align-items: flex-start;
        flex-direction: column;
        gap: .3rem;
        margin-bottom: 1rem;
    }

    .page-context__account {
        max-width: 100%;
        margin-left: 0;
        text-align: left;
        white-space: normal;
    }
}
