.top-week-page {
    /* Body is a flex column: keep the full content height above the footer. */
    flex: 0 0 auto;
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    color: var(--main-font-color);
}

.top-week-page .top-week-page__heading {
    justify-content: center;
    text-align: center;
}

.top-week-page .top-week-page__dates {
    margin-top: var(--space-8);
    font-size: var(--font-size-16);
}

.top-week-page__brand {
    width: 100%;
    min-width: 0;
}

.top-week-page__brand + .top-week-page__brand {
    margin-top: var(--space-32);
}

.top-week-page__brand h2 {
    margin: 0 0 var(--space-16);
    color: var(--main-font-color);
    font-size: var(--font-size-24);
    font-weight: 500;
}

.top-week-page__brand .storefront-product-grid {
    margin-top: 0;
}

.top-week-page__empty {
    margin: 0 0 var(--space-16);
    color: var(--main-font-p-color);
    font-size: var(--font-size-16);
    line-height: 1.5;
}

.top-week-page__catalog {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: var(--space-12) var(--space-24);
    border-radius: var(--main-border-radius);
    background: var(--main-theme-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.top-week-page__catalog:hover {
    background: var(--main-theme-color-hover);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 700px) {
    .top-week-page__brand h2 {
        margin-bottom: var(--space-12);
        font-size: var(--font-size-20);
    }
}

.top-week-page__catalog:focus-visible {
    outline: 2px solid var(--main-font-color);
    outline-offset: 4px;
}
