.brand-page-main {
    gap: 24px;
}

.brand-page-breadcrumb {
    margin-bottom: 8px;
}

.brand-page-topbar {
    margin-bottom: 8px;
    align-items: flex-start;
    box-sizing: border-box;
}

.brand-page-heading {
    display: grid;
    gap: 0px;
    min-width: 0;
    align-items: center;
    align-content: center;
}

.brand-page-heading-logo {
    width: clamp(100px, 8vw, 220px);
    aspect-ratio: 6 / 4;
    flex: 0 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.brand-page-heading-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f5f7fb;
}

.brand-page-heading-logo.is-empty span {
    width: 100%;
    height: 100%;
    border-radius: var(--main-border-radius);
    background: #000000;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff;
    font: 700 20px/1.2 Roboto, Arial, sans-serif;
}

.brand-hero {
    display: grid;
    gap: 18px;
    margin-bottom: 8px;
}

.brand-hero-banner {
    width: 100%;
    aspect-ratio: 32 / 9;
    border-radius: 28px;
    overflow: hidden;
    background: #f5f7fb;
}

.brand-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-hero-copy {
    display: none;
    gap: 0;
    max-width: 760px;
}

.brand-hero-copy p {
    margin: 0;
    color: #4b5563;
    font: 400 16px/1.75 Roboto, Arial, sans-serif;
}

.brand-page-toolbar {
    align-items: center;
    margin-bottom: 8px;
}

.brand-page-results {
    color: #6b7280;
    font: 500 15px/1.4 Roboto, Arial, sans-serif;
}

@media (max-width: 900px) {
    .brand-page-topbar {
        gap: 16px;
    }

    .brand-page-heading-logo {
        width: min(100%, 100px);
    }
}

@media (max-width: 768px) {
    .brand-page-topbar {
        flex-direction: row;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        align-content: space-between;
    }

    .brand-page-heading-logo {
        width: min(100%, 80px);
        order: 2;
    }

    .brand-hero-banner {
        border-radius: 22px;
    }

    .brand-hero-copy p {
        font-size: 14px;
        line-height: 1.65;
    }

    .brand-page-toolbar {
        margin-top: 8px;
    }
}
