/*
 * Full-bleed section backgrounds with a centered content column.
 * The visual rhythm comes from .container, not from clipping the page.
 */
html,
body {
    width: 100%;
    background: #fff;
}

.topbar,
.site-header,
main,
.site-footer {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.topbar {
    margin-top: 0;
}

.site-header {
    border-right: 0;
    border-left: 0;
}

main {
    background: transparent;
}

.site-footer {
    margin-top: 0;
    margin-bottom: 0;
}

.container {
    width: min(calc(100% - 48px), 1240px);
    margin-inline: auto;
}

.brand {
    flex: 0 0 auto;
}

.brand-logo {
    display: block;
    width: clamp(150px, 13vw, 205px);
    height: auto;
    mix-blend-mode: multiply;
}

.hero-category-icon img,
.mega-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-category-icon,
.mega-icon {
    display: grid;
    place-items: center;
}

@media (max-width: 900px) {
    .container {
        width: min(calc(100% - 32px), 1240px);
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 24px), 1240px);
    }

    .brand-logo {
        width: 148px;
    }
}
