.bshPageTheme {
    --bsh-page-theme-text: var(--bsh-color-headline);
    --bsh-page-theme-muted: var(--bsh-color-body);
    min-height: 100svh;
    color: var(--bsh-page-theme-text);
    background: var(--bsh-color-white);
}

.bshPageTheme--pastel {
    --bsh-page-theme-text: var(--bsh-color-white);
    --bsh-page-theme-muted: rgba(255, 255, 255, .76);
    background: var(--bsh-color-pastel-2);
}

.bshPageTheme--white {
    background: var(--bsh-color-white);
}

.bshPageTheme__intro {
    display: flex;
    /*min-height: max(680px, 88svh);*/
    align-items: flex-start;
    padding: clamp(210px, 25svh, 310px) 0 clamp(150px, 12svh, 190px);
}

.bshPageTheme__introInner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transform: none;
}

.bshPageTheme__headingLockup {
    display: flex;
    width: min(100%, 1540px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(20px, 2vw, 38px);
}

.bshPageTheme__title {
    max-width: min(92%, 1420px);
    margin: 0;
    color: inherit;
    font-size: var(--bsh-fs-h1);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .82;
    text-align: center;
}

.bshPageTheme__subtitle {
    max-width: min(70vw, 760px);
    margin: 0;
    color: currentColor;
    font-family: var(--bsh-font-display);
    font-size: var(--bsh-fs-subtitle);
    font-weight: 600;
    line-height: 1.05;
    text-align: center;
}

.bshPageTheme__breadcrumbs {
    display: flex;
    width: 100%;
    justify-content: center;
    color: var(--bsh-page-theme-muted);
}

.bshPageTheme--white .bshBreadcrumbs li,
.bshPageTheme--white .bshBreadcrumbs a,
.bshPageTheme--white .bshBreadcrumbs span,
.bshPageTheme--white .bshBreadcrumbs--rankmath p {
    color: var(--bsh-page-theme-muted);
}

.bshPageTheme__breadcrumbs a {
    color: inherit;
}

.bshPageTheme__content > .bshEntry--page,
.bshPageTheme__content > .bshEntry--page > .bshEntry__content {
    color: inherit;
    background: transparent;
}

.bshPageTheme__content {
    padding-bottom: clamp(72px, 8vw, 140px);
    background: inherit;
}

.bshPageTheme__content:has(.bshEditorialContent--prose) {
    padding-bottom: 0;
}

@media (max-width: 900px) {
    .bshPageTheme__intro {
        min-height: 0;
        padding: clamp(150px, 20vw, 190px) 0 clamp(64px, 9vw, 90px);
    }

    .bshPageTheme__title {
        max-width: 100%;
        font-size: clamp(38px, 7vw, 56px);
        letter-spacing: -.05em;
        line-height: .95;
    }

    .bshPageTheme__introInner {
        transform: none;
    }

    .bshPageTheme__subtitle {
        width: 100%;
        max-width: 75vw;
        font-size: var(--bsh-fs-subtitle);
        line-height: 1.05;
    }

    .bshPageTheme__breadcrumbs {
        margin-top: 22px;
    }
}

@media (max-width: 760px) {
    .bshPageTheme__intro {
        min-height: 0;
        padding: clamp(132px, 20vw, 155px) 0 clamp(54px, 9vw, 72px);
    }

    .bshPageTheme__headingLockup {
        gap: 14px;
    }

    .bshPageTheme__title {
        font-size: clamp(34px, 7.5vw, 48px);
        letter-spacing: -.045em;
        line-height: .95;
    }

    .bshPageTheme__breadcrumbs {
        margin-top: 20px;
    }

    .bshPageTheme__subtitle {
        font-size: var(--bsh-fs-subtitle);
        line-height: 1.05;
    }
}

@media (max-width: 600px) {
    .bshPageTheme__intro {
        min-height: 0;
        padding: clamp(126px, 33vw, 145px) 0 clamp(48px, 13vw, 64px);
    }

    .bshPageTheme__headingLockup {
        gap: 12px;
    }

    .bshPageTheme__title {
        font-size: clamp(32px, 10vw, 46px);
        letter-spacing: -.045em;
        line-height: .95;
    }

    .bshPageTheme__breadcrumbs {
        margin-top: 18px;
    }

    .bshPageTheme__introInner {
        transform: none;
    }

    .bshPageTheme__subtitle {
        max-width: 90%;
        font-size: var(--bsh-fs-subtitle);
        line-height: 1.05;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bshPageTheme__title,
    .bshPageTheme__subtitle {
        transform: none !important;
        opacity: 1 !important;
    }
}
