/*
 * Hey BigHead studio design layer.
 * Loaded last so the public theme is visually self-contained and does not
 * depend on Foxiz, Elementor, or plugin CSS for its core presentation.
 */

:root {
	--bh-studio-dark: #0e111d;
	--bh-studio-ink: #111827;
	--bh-studio-blue: #2563eb;
	--bh-studio-blue-dark: #1d4ed8;
	--bh-studio-orange: #ff5937;
	--bh-studio-ivory: #faf7f2;
	--bh-studio-cream: #f3ece3;
	--bh-studio-line: #ded8d0;
	--bh-studio-muted: #69645e;
	--bh-studio-width: 94rem;
	--bh-studio-gutter: clamp(24px, 3.75vw, 60px);
	--bh-studio-section: clamp(4.5rem, 8vw, 9rem);
	--bh-studio-heading: "neue-haas-grotesk-display", "Avenir Next", Arial, sans-serif;
	--bh-studio-body: "neue-haas-grotesk-text", "Avenir Next", Arial, sans-serif;
}

html {
	background: var(--bh-studio-dark);
	overflow-x: hidden;
	scroll-padding-top: 6rem;
	scrollbar-color: #59657c var(--bh-studio-dark);
	scrollbar-width: thin;
}

body.bh-theme {
	background: var(--bh-studio-ivory);
	color: var(--bh-studio-ink);
	font-family: var(--bh-studio-body);
	margin: 0;
	min-width: 100%;
	overflow-x: hidden;
	padding: 0;
}

html::-webkit-scrollbar,
body.bh-theme::-webkit-scrollbar {
	height: 12px;
	width: 12px;
}

html::-webkit-scrollbar-track,
body.bh-theme::-webkit-scrollbar-track {
	background: var(--bh-studio-dark);
}

html::-webkit-scrollbar-thumb,
body.bh-theme::-webkit-scrollbar-thumb {
	background: #59657c;
	border: 3px solid var(--bh-studio-dark);
	border-radius: 999px;
}

body.bh-modal-open {
	overflow: hidden;
}

.bh-theme h1,
.bh-theme h2,
.bh-theme h3,
.bh-theme h4,
.bh-theme h5,
.bh-theme h6,
.bh-theme strong,
.bh-theme button {
	font-family: var(--bh-studio-heading);
}

.bh-theme a {
	color: inherit;
	text-decoration: none;
}

.bh-theme a:hover {
	color: inherit;
}

.bh-studio-container {
	margin-inline: auto;
	max-width: var(--bh-studio-width);
	padding-inline: var(--bh-studio-gutter);
	width: 100%;
}

.bh-kicker {
	color: var(--bh-studio-blue);
	font: 700 0.78rem/1.4 var(--bh-studio-heading);
	letter-spacing: 0.15em;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.bh-pill-button,
.bh-dark-button,
.bh-outline-button {
	align-items: center;
	border: 0;
	border-radius: 999px;
	display: inline-flex;
	font: 700 0.95rem/1 var(--bh-studio-heading);
	gap: 0.8rem;
	justify-content: center;
	min-height: 3.5rem;
	padding: 1rem 1.75rem;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.bh-pill-button {
	background: var(--bh-studio-blue);
	color: #fff !important;
}

.bh-pill-button:hover {
	background: var(--bh-studio-blue-dark);
	transform: translateY(-2px);
}

.bh-dark-button {
	background: var(--bh-studio-ink);
	color: #fff !important;
}

.bh-dark-button:hover {
	background: #050914;
	transform: translateY(-2px);
}

.bh-outline-button {
	background: transparent;
	border: 1px solid currentColor;
}

.bh-arrow-link {
	align-items: center;
	display: inline-flex;
	font: 700 0.9rem/1.3 var(--bh-studio-heading);
	gap: 0.7rem;
}

.bh-arrow-link span,
.bh-section-heading__intro a span {
	font-size: 1.3em;
	transition: transform 180ms ease;
}

a:hover .bh-arrow-link span,
.bh-arrow-link:hover span,
.bh-section-heading__intro a:hover span {
	transform: translateX(0.25rem);
}

.bh-media-fallback {
	align-items: center;
	background: linear-gradient(145deg, #14203b, var(--bh-studio-dark));
	color: #fff;
	display: flex;
	font: italic 900 clamp(2rem, 7vw, 5rem)/0.78 var(--bh-studio-heading);
	height: 100%;
	justify-content: center;
	letter-spacing: -0.07em;
	text-align: center;
	width: 100%;
}

.bh-round-play {
	align-items: center;
	background: var(--bh-studio-blue);
	border: 3px solid #fff;
	border-radius: 50%;
	bottom: 1rem;
	box-shadow: 0 0.5rem 1.5rem rgb(9 18 44 / 28%);
	color: #fff;
	display: flex;
	font-size: 0.82rem;
	height: 3rem;
	justify-content: center;
	position: absolute;
	right: 1rem;
	text-indent: 0.15rem;
	transition: transform 180ms ease;
	width: 3rem;
	z-index: 2;
}

a:hover .bh-round-play {
	transform: scale(1.08);
}

.bh-media-duration {
	background: rgb(8 12 24 / 84%);
	border-radius: 999px;
	bottom: 1rem;
	color: #fff;
	font: 700 0.7rem/1 var(--bh-studio-heading);
	left: 1rem;
	padding: 0.55rem 0.7rem;
	position: absolute;
	z-index: 2;
}

/* Header */
.bh-studio-header {
	background: var(--bh-studio-dark);
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	color: #fff;
	position: relative;
	z-index: var(--bh-z-header);
}

.bh-studio-header.is-sticky {
	box-shadow: 0 0.75rem 2.5rem rgb(0 0 0 / 16%);
	position: sticky;
	top: 0;
}

.admin-bar .bh-studio-header.is-sticky {
	top: 32px;
}

.bh-header-inner {
	align-items: center;
	display: grid;
	grid-template-columns: 1fr auto;
	min-height: 5.5rem;
}

.bh-brand {
	display: inline-flex;
	width: max-content;
}

.bh-brand__image {
	filter: grayscale(1) brightness(0) invert(1);
	height: 3.6rem;
	object-fit: contain;
	object-position: left center;
	width: 10.5rem;
}

.bh-brand__wordmark {
	color: #fff;
	display: flex;
	flex-direction: column;
	font: italic 900 1.55rem/0.76 var(--bh-studio-heading);
	letter-spacing: -0.06em;
	transform: skew(-5deg);
}

.bh-brand__wordmark span:last-child {
	font-size: 1.45em;
}

.bh-primary-nav {
	background: var(--bh-studio-dark);
	border-top: 1px solid rgb(255 255 255 / 9%);
	display: none;
	grid-column: 1 / -1;
	padding-block: 1rem 1.5rem;
}

.bh-primary-nav.is-open {
	display: block;
}

.bh-primary-nav__list,
.bh-primary-nav .menu {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bh-primary-nav li {
	list-style: none;
	margin: 0;
}

.bh-primary-nav a {
	color: #fff;
	display: block;
	font: 700 1.05rem/1.2 var(--bh-studio-heading);
	padding: 0.8rem 0;
}

.bh-primary-nav .menu-item-has-children > a {
	align-items: center;
	display: flex;
	gap: 0.55rem;
}

.bh-primary-nav .menu-item-has-children > a::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	height: 0.42rem;
	margin-top: -0.22rem;
	transform: rotate(45deg);
	width: 0.42rem;
}

.bh-primary-nav .sub-menu {
	border-left: 1px solid rgb(143 178 255 / 45%);
	display: grid;
	gap: 0.15rem;
	list-style: none;
	margin: 0.2rem 0 0 0.25rem;
	padding: 0.15rem 0 0.15rem 1rem;
}

.bh-primary-nav .sub-menu a {
	border-radius: 0.5rem;
	font-size: 0.95rem;
	padding: 0.65rem 0.75rem;
}

.bh-primary-nav a:hover,
.bh-primary-nav .current-menu-item > a,
.bh-primary-nav .current_page_item > a {
	color: #8fb2ff;
}

.bh-header-cta {
	display: none;
}

.bh-menu-toggle {
	background: transparent;
	border: 0;
	display: grid;
	gap: 0.45rem;
	height: 3rem;
	padding: 0.8rem;
	place-content: center;
	width: 3rem;
}

.bh-menu-toggle span {
	background: #fff;
	display: block;
	height: 2px;
	transition: transform 180ms ease;
	width: 1.55rem;
}

.bh-menu-toggle[aria-expanded="true"] span:first-child {
	transform: translateY(0.22rem) rotate(45deg);
}

.bh-menu-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-0.22rem) rotate(-45deg);
}

/* Homepage hero */
.bh-hero {
	background: var(--bh-studio-dark);
	color: #fff;
	padding-block: clamp(72px, 7vw, 112px);
}

.bh-hero__grid {
	display: grid;
	gap: 2.75rem;
}

.bh-hero__copy h1 {
	color: #fff;
	font: 700 clamp(52px, 4.4vw, 72px)/1.02 var(--bh-studio-heading);
	letter-spacing: -0.055em;
}

.bh-hero__copy h1 span {
	display: block;
}

.bh-hero__copy h1 span:last-child {
	color: var(--bh-studio-blue);
}

.bh-hero__deck {
	color: #cfd3df;
	font-size: clamp(18px, 1.35vw, 21px);
	font-weight: 400;
	line-height: 1.58;
	margin-top: 1.75rem;
	max-width: 670px;
}

.bh-hero__schedule {
	font-weight: 700;
	margin-top: 0.85rem;
}

.bh-hero__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-top: 2rem;
}

.bh-hero__secondary {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-weight: 700;
	gap: 0.75rem;
	min-height: 3.5rem;
}

.bh-hero-feature {
	background: #fff;
	border: 1px solid #e1d8ce;
	border-radius: 1.75rem;
	box-shadow: 0 1.6rem 4rem rgb(0 0 0 / 22%);
	color: var(--bh-studio-ink);
	overflow: hidden;
}

.bh-hero-feature__link {
	color: inherit;
	cursor: pointer;
	display: block;
	height: 100%;
}

.bh-hero-feature:focus-within {
	outline: 3px solid #8fb2ff;
	outline-offset: 4px;
}

.bh-hero-feature__media {
	aspect-ratio: 16 / 9;
	background: var(--bh-studio-ink);
	display: block;
	overflow: hidden;
	position: relative;
}

.bh-hero-feature__media::after {
	background: linear-gradient(180deg, transparent 54%, rgb(4 8 16 / 30%));
	content: "";
	inset: 0;
	position: absolute;
}

.bh-hero-feature__media > img,
.bh-hero-feature__media > .bh-media-fallback {
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
	width: 100%;
}

.bh-hero-feature:hover .bh-hero-feature__media > img {
	transform: scale(1.025);
}

.bh-hero-feature__play {
	align-items: center;
	background: var(--bh-studio-blue);
	border: 4px solid rgb(255 255 255 / 90%);
	border-radius: 50%;
	bottom: 1.4rem;
	color: #fff;
	display: flex;
	font-size: 1.15rem;
	height: 4.2rem;
	justify-content: center;
	position: absolute;
	right: 1.5rem;
	text-indent: 0.22rem;
	width: 4.2rem;
	z-index: 1;
}

.bh-hero-feature__body {
	padding: 1.5rem clamp(1.4rem, 4vw, 2rem) 1.75rem;
}

.bh-hero-feature__meta {
	color: #756f68;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 0.5rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bh-hero-feature__meta span:first-child,
.bh-hero-feature__body .bh-arrow-link {
	color: var(--bh-studio-blue);
}

.bh-hero-feature__body h2 {
	color: var(--bh-studio-ink);
	font-size: clamp(1.55rem, 4vw, 2.25rem);
	letter-spacing: -0.04em;
	line-height: 1.03;
	margin-top: 0.9rem;
}

.bh-hero-feature__body > p:not(.bh-hero-feature__meta) {
	color: #5f5a55;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	margin-top: 0.85rem;
}

.bh-hero-feature__body .bh-arrow-link {
	margin-top: 1rem;
}

.bh-platforms {
	border-top: 1px solid rgb(255 255 255 / 16%);
	display: grid;
	gap: 0.8rem;
	padding-top: 1.25rem;
}

.bh-platforms > p {
	color: #9ca3b3;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bh-platforms > div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem 1.5rem;
}

.bh-platforms a {
	font-weight: 700;
}

.bh-platforms a:hover {
	color: #8fb2ff;
}

/* Shared section headings */
.bh-section-heading {
	margin-bottom: clamp(2.25rem, 5vw, 4.5rem);
}

.bh-section-heading h2 {
	color: var(--bh-studio-ink);
	font: 700 clamp(2.75rem, 8vw, 5.6rem)/0.98 var(--bh-studio-heading);
	letter-spacing: -0.06em;
}

.bh-section-heading h2 span {
	color: var(--bh-studio-blue);
}

.bh-section-heading__intro,
.bh-section-heading--split > p {
	color: var(--bh-studio-muted);
	font-size: clamp(1rem, 1.5vw, 1.3rem);
	line-height: 1.55;
}

.bh-section-heading__intro a,
.bh-section-heading--split > a {
	color: var(--bh-studio-blue);
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 0.7rem;
	margin-top: 1.25rem;
}

/* Start here */
.bh-start {
	background: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-start .bh-section-heading h2 {
	font-size: clamp(1.375rem, 4vw, 2.8rem);
}

.bh-start__grid,
.bh-product-grid,
.bh-archive-grid,
.bh-guests-grid {
	display: grid;
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.bh-start-card,
.bh-archive-card,
.bh-product-card,
.bh-guest-card {
	min-width: 0;
}

.bh-start-card__link,
.bh-archive-card__link,
.bh-product-card > a,
.bh-guest-card > a {
	display: block;
}

.bh-start-card__media,
.bh-archive-card__media,
.bh-product-card__media,
.bh-guest-card__media {
	background: var(--bh-studio-dark);
	border-radius: 1.4rem;
	display: block;
	overflow: hidden;
	position: relative;
}

.bh-start-card__media,
.bh-archive-card__media {
	aspect-ratio: 16 / 9;
}

.bh-start-card__media img,
.bh-start-card__media .bh-media-fallback,
.bh-archive-card__media img,
.bh-archive-card__media .bh-media-fallback,
.bh-product-card__media img,
.bh-guest-card__media img {
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
	width: 100%;
}

.bh-start-card:hover img,
.bh-archive-card:hover img,
.bh-product-card:hover img,
.bh-guest-card:hover img {
	transform: scale(1.025);
}

.bh-start-card__copy,
.bh-archive-card__body,
.bh-product-card__copy,
.bh-guest-card__body {
	display: flex;
	flex-direction: column;
	padding: 1.15rem 0.2rem 0;
}

.bh-start-card__meta,
.bh-archive-card__meta,
.bh-product-card__copy > span:first-child {
	color: var(--bh-studio-blue);
	display: flex;
	font-size: 0.7rem;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.bh-start-card__copy > strong,
.bh-archive-card__body > strong,
.bh-product-card__copy > strong {
	color: var(--bh-studio-ink);
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 0.6rem 0 1rem;
}

.bh-start-card__copy .bh-arrow-link,
.bh-archive-card__body .bh-arrow-link,
.bh-product-card__copy .bh-arrow-link {
	color: var(--bh-studio-blue);
}

.bh-start__grid {
	align-items: stretch;
}

.bh-start-card {
	background: #f8f8f8;
	border: 1px solid #e5ded6;
	border-radius: 1.625rem;
	height: 100%;
	overflow: hidden;
}

.bh-start-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bh-start-card__link:focus-visible {
	border-radius: inherit;
	outline: 3px solid #8fb2ff;
	outline-offset: -4px;
}

.bh-start-card__media {
	border-radius: 0;
}

.bh-start-card__copy {
	background: #f8f8f8;
	flex: 1;
	padding: 1.25rem;
}

.bh-start-card__copy > strong {
	margin-bottom: 1.25rem;
}

.bh-start-card__copy .bh-arrow-link {
	margin-top: auto;
}

.bh-start__footer {
	border-top: 1px solid var(--bh-studio-line);
	margin-top: 3rem;
	padding-top: 1.4rem;
	text-align: right;
}

.bh-start__footer a {
	color: var(--bh-studio-blue);
	font-weight: 700;
}

/* Shorts carousel */
.bh-shorts {
	background: #0b1320;
	color: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-shorts .bh-section-heading h2 {
	color: #fff;
	font-size: clamp(2.5rem, 4.2vw, 3.75rem);
	line-height: 0.98;
}

.bh-shorts .bh-section-heading__intro {
	color: #c6cedb;
}

.bh-shorts .bh-section-heading__intro a {
	color: #fff;
}

.bh-shorts .bh-section-heading__intro a span {
	color: var(--bh-studio-blue);
}

.bh-carousel {
	position: relative;
}

.bh-carousel__controls {
	display: flex;
	gap: 0.7rem;
	justify-content: flex-end;
	margin-bottom: 1.2rem;
}

.bh-carousel__controls button {
	align-items: center;
	background: var(--bh-studio-blue);
	border: 0;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 1.35rem;
	height: 3.4rem;
	justify-content: center;
	transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
	width: 3.4rem;
}

.bh-carousel__controls button:hover:not(:disabled) {
	background: var(--bh-studio-blue-dark);
	transform: scale(1.05);
}

.bh-carousel__controls button:disabled {
	opacity: 0.35;
}

.bh-carousel__controls[hidden] {
	display: none;
}

.bh-shorts__rail {
	display: grid;
	gap: 1rem;
	grid-auto-columns: minmax(14rem, 72vw);
	grid-auto-flow: column;
	overflow-x: auto;
	padding: 0.25rem 0 1.25rem;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--bh-studio-blue) transparent;
}

.bh-shorts__rail .bh-short-card {
	background: #151d2d;
	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 1.125rem;
	opacity: var(--bh-short-visibility, 1);
	scroll-snap-align: start;
	transition: opacity 160ms linear;
}

.bh-shorts .bh-short-card > a {
	border-radius: inherit;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bh-shorts__rail.is-loop-resetting {
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.bh-short-card__media {
	aspect-ratio: 9 / 16;
	background: var(--bh-studio-dark);
	border-radius: 1.35rem;
	display: block;
	overflow: hidden;
	position: relative;
}

.bh-short-card__media::after {
	background: linear-gradient(180deg, transparent 60%, rgb(5 8 18 / 42%));
	content: "";
	inset: 0;
	position: absolute;
}

.bh-short-card__media img,
.bh-short-card__media .bh-media-fallback {
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
	width: 100%;
}

.bh-short-card:hover img {
	transform: scale(1.025);
}

.bh-short-card__copy {
	display: flex;
	flex-direction: column;
	padding: 1rem 0.2rem 0;
}

.bh-short-card__copy > span {
	color: var(--bh-studio-blue);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-short-card__copy strong {
	font-size: 1.16rem;
	letter-spacing: -0.025em;
	line-height: 1.12;
	margin-top: 0.45rem;
}

.bh-shorts .bh-short-card__media {
	border-radius: calc(1.125rem - 1px) calc(1.125rem - 1px) 0 0;
}

.bh-shorts .bh-short-card__copy {
	background: #151d2d;
	border-radius: 0 0 calc(1.125rem - 1px) calc(1.125rem - 1px);
	flex: 1;
	padding: 1rem;
}

.bh-shorts .bh-short-card__copy > span {
	color: #8eaeff;
}

.bh-shorts .bh-short-card__copy strong {
	color: #fff;
	font-size: 1.0625rem;
	line-height: 1.2;
	margin-top: 0.5rem;
}

.bh-shorts .bh-short-card__media::after {
	content: none;
}

.bh-shorts .bh-short-card:hover img {
	transform: none;
}

.bh-shorts .bh-media-duration {
	bottom: auto;
	left: auto;
	right: 0.875rem;
	top: 0.875rem;
}

.bh-shorts .bh-round-play {
	border-width: 2px;
	bottom: 0.875rem;
	left: 0.875rem;
	right: auto;
}

/* Stage */
.bh-stage {
	background: var(--bh-studio-dark);
	color: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-stage .bh-kicker,
.bh-stage .bh-section-heading h2 span,
.bh-stage .bh-section-heading__intro a {
	color: #8fb2ff;
}

.bh-stage .bh-section-heading h2,
.bh-stage .bh-section-heading__intro {
	color: #fff;
}

.bh-stage .bh-section-heading h2 {
	font-size: clamp(2.5rem, 4.2vw, 3.75rem);
	line-height: 0.98;
}

.bh-stage-feature {
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 1.75rem;
	overflow: hidden;
}

.bh-stage-feature > a {
	display: grid;
	position: relative;
}

.bh-stage-feature__media {
	aspect-ratio: 16 / 9;
	background: #070a12;
	display: block;
}

.bh-stage-feature__media::after {
	background: linear-gradient(180deg, transparent 35%, rgb(8 12 24 / 86%));
	content: "";
	inset: 0;
	position: absolute;
}

.bh-stage-feature__media img,
.bh-stage-feature__media .bh-media-fallback {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bh-stage-feature__badge {
	background: var(--bh-studio-orange);
	border-radius: 999px;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	left: 1.25rem;
	letter-spacing: 0.1em;
	padding: 0.65rem 0.85rem;
	position: absolute;
	top: 1.25rem;
	text-transform: uppercase;
}

.bh-stage-feature__copy {
	bottom: 0;
	display: flex;
	flex-direction: column;
	left: 0;
	padding: clamp(1.35rem, 5vw, 3rem);
	position: absolute;
	right: 0;
	z-index: 2;
}

.bh-stage-feature__copy > span:first-child,
.bh-stage-card__copy > span {
	color: #9db9ff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.bh-stage-feature__copy strong {
	color: #fff;
	font-size: clamp(2rem, 6vw, 4rem);
	letter-spacing: -0.05em;
	line-height: 1;
	margin-block: 0.45rem 1rem;
}

.bh-stage-feature__play {
	display: none;
}

.bh-stage-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.bh-stage-card {
	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 1.25rem;
	overflow: hidden;
}

.bh-stage-card__media {
	aspect-ratio: 16 / 9;
	display: block;
	position: relative;
}

.bh-stage-card__media img,
.bh-stage-card__media .bh-media-fallback {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bh-stage-card__copy {
	display: flex;
	flex-direction: column;
	padding: 1.15rem;
}

.bh-stage-card__copy strong {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.1;
	margin-top: 0.4rem;
}

/* Gives back */
.bh-gives-back {
	background: #2f66e8;
	color: #fff;
	padding-block: clamp(3.75rem, 6vw, 6.5rem);
	position: relative;
}

.bh-gives-back__shell {
	align-items: center;
	display: grid;
	gap: clamp(2.75rem, 6vw, 5.75rem);
	grid-template-columns: minmax(0, 1fr);
}

.bh-gives-back__media,
.bh-gives-back__copy {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

.bh-gives-back__media {
	aspect-ratio: 4 / 3;
	background: var(--bh-studio-dark);
	border: 1px solid rgb(8 24 77 / 20%);
	border-radius: clamp(1.5rem, 2.25vw, 2.25rem);
	display: block;
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.bh-gives-back__media::after {
	background: linear-gradient(180deg, transparent 48%, rgb(5 18 47 / 80%) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.bh-gives-back__media > img,
.bh-gives-back__media > .bh-media-fallback {
	box-sizing: border-box;
	height: 100%;
	max-width: 100%;
	min-width: 0;
	object-fit: cover;
	transition: transform 240ms ease;
	width: 100%;
}

.bh-gives-back__media > img {
	display: block;
}

.bh-gives-back__media:hover > img {
	transform: scale(1.015);
}

.bh-gives-back__media:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.bh-gives-back__media > span:last-child {
	background: var(--bh-studio-orange);
	border-radius: 999px;
	bottom: clamp(1rem, 2vw, 1.5rem);
	color: #fff;
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 700;
	gap: 0.75rem;
	left: clamp(1rem, 2vw, 1.5rem);
	letter-spacing: 0.08em;
	max-width: calc(100% - 2rem);
	padding: 0.85rem 1.1rem;
	position: absolute;
	text-transform: uppercase;
	z-index: 2;
}

.bh-gives-back__media > span:last-child span {
	font-size: 1.2em;
	line-height: 1;
}

.bh-gives-back__copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bh-gives-back .bh-kicker {
	color: rgb(255 255 255 / 92%);
	margin-bottom: 1.5rem;
}

.bh-gives-back__copy h2 {
	color: #fff;
	font-size: clamp(2.9rem, 8vw, 6.75rem);
	letter-spacing: -0.06em;
	line-height: 0.92;
}

.bh-gives-back__copy h2 span {
	color: #08184d;
}

.bh-gives-back__intro {
	color: rgb(255 255 255 / 94%);
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	line-height: 1.55;
	margin-top: clamp(1.75rem, 3vw, 2.5rem);
	max-width: 44rem;
}

.bh-gives-back__feature {
	border-block: 1px solid rgb(255 255 255 / 34%);
	margin-block: clamp(2rem, 3.5vw, 3rem);
	padding-block: clamp(1.5rem, 2.5vw, 2rem);
}

.bh-gives-back__feature > p:first-child {
	color: #08184d;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-gives-back__feature h3 {
	color: #fff;
	font-size: clamp(1.75rem, 2.5vw, 2.45rem);
	line-height: 1.05;
	margin-block: 0.65rem 0.8rem;
}

.bh-gives-back__feature p:last-child {
	font-size: clamp(1rem, 1.2vw, 1.12rem);
	line-height: 1.55;
	opacity: 0.92;
}

.bh-gives-back .bh-dark-button {
	align-self: flex-start;
	font-size: clamp(0.95rem, 1.2vw, 1.08rem);
	gap: 1.2rem;
	min-height: 4.5rem;
	padding-inline: clamp(1.6rem, 3vw, 2.25rem);
}

.bh-gives-back .bh-dark-button span {
	color: #fff;
	font-size: 1.35em;
}

/* Behind the show */
.bh-behind {
	background: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-behind__note {
	border-top: 1px solid var(--bh-studio-line);
	font-size: 0.9rem;
	font-weight: 700;
	margin-top: 1.5rem;
	padding-top: 1.35rem;
}

.bh-behind-feature {
	background: var(--bh-studio-dark);
	border: 1px solid var(--bh-studio-dark);
	border-radius: 1.75rem;
	overflow: hidden;
}

.bh-behind-feature > a {
	display: grid;
}

.bh-behind-feature__media {
	aspect-ratio: 16 / 9;
	display: block;
	position: relative;
}

.bh-behind-feature__media img,
.bh-behind-feature__media .bh-media-fallback {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bh-behind-feature__badge {
	background: var(--bh-studio-orange);
	border-radius: 999px;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	left: 1.25rem;
	letter-spacing: 0.1em;
	padding: 0.7rem 0.9rem;
	position: absolute;
	top: 1.25rem;
	text-transform: uppercase;
}

.bh-behind-feature__copy {
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.5rem, 5vw, 3.5rem);
}

.bh-behind-feature__copy > span:first-child {
	color: #9db9ff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-behind-feature__copy strong {
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: -0.05em;
	line-height: 1;
	margin-block: 0.8rem 1.4rem;
}

.bh-behind-feature__copy .bh-arrow-link {
	color: #fff;
}

/* Membership */
.bh-membership {
	background: var(--bh-studio-cream);
	padding-block: var(--bh-studio-section);
}

.bh-membership__shell {
	display: grid;
	gap: clamp(2.5rem, 6vw, 5rem);
}

.bh-membership__copy h2 {
	color: var(--bh-studio-ink);
	font-size: clamp(3.25rem, 9vw, 6.2rem);
	letter-spacing: -0.065em;
	line-height: 0.95;
}

.bh-membership__copy h2 span {
	color: var(--bh-studio-blue);
}

.bh-membership__copy > p:not(.bh-kicker, .bh-membership__powered) {
	color: var(--bh-studio-muted);
	font-size: 1.1rem;
	line-height: 1.55;
	margin-top: 1.75rem;
	max-width: 38rem;
}

.bh-membership__copy .bh-dark-button {
	margin-top: 2rem;
}

.bh-membership__powered {
	color: var(--bh-studio-muted);
	font-size: 0.75rem;
	font-weight: 700;
	margin-top: 1rem;
}

.bh-membership__benefits {
	background: var(--bh-studio-ink);
	border-radius: 1.75rem;
	box-shadow: 0 1.8rem 4rem rgb(23 30 48 / 15%);
	color: #fff;
	overflow: hidden;
}

.bh-membership__benefits > p {
	border-bottom: 1px solid rgb(255 255 255 / 16%);
	color: var(--bh-studio-orange);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	padding: 1.5rem;
	text-transform: uppercase;
}

.bh-membership__benefits > div {
	display: grid;
}

.bh-membership__benefits > div > div {
	border-bottom: 1px solid rgb(255 255 255 / 16%);
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	min-height: 13rem;
	padding: 1.5rem;
}

.bh-membership__benefits > div > div > span {
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
}

.bh-membership__benefits strong {
	color: #fff;
	font-size: clamp(1.4rem, 3vw, 2.1rem);
	line-height: 1.08;
}

/* Shop */
.bh-home-shop {
	background: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-product-card__media {
	aspect-ratio: 1;
	background: var(--bh-studio-cream);
}

.bh-product-card__media > span:last-child {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	display: flex;
	font-weight: 700;
	height: 3rem;
	justify-content: center;
	position: absolute;
	right: 1rem;
	top: 1rem;
	width: 3rem;
}

.bh-shop-empty,
.bh-empty-state {
	background: var(--bh-studio-cream);
	border-radius: 1.5rem;
	padding: clamp(2rem, 6vw, 4rem);
	text-align: center;
}

.bh-shop-empty .bh-pill-button,
.bh-empty-state .bh-pill-button {
	margin-top: 1.25rem;
}

/* Newsletter */
.bh-newsletter {
	background: var(--bh-studio-blue);
	color: #fff;
	padding-block: var(--bh-studio-section);
	position: relative;
}

.bh-newsletter::before,
.bh-newsletter::after {
	border: clamp(4rem, 10vw, 10rem) solid rgb(255 255 255 / 10%);
	border-radius: 50%;
	content: "";
	height: clamp(24rem, 55vw, 54rem);
	position: absolute;
	width: clamp(24rem, 55vw, 54rem);
}

.bh-newsletter::before {
	left: -30%;
	top: -60%;
}

.bh-newsletter::after {
	bottom: -80%;
	right: -25%;
}

.bh-newsletter__shell {
	display: grid;
	gap: clamp(2.5rem, 7vw, 6rem);
	position: relative;
	z-index: 1;
}

.bh-newsletter .bh-kicker {
	color: #fff;
}

.bh-newsletter__copy h2 {
	color: #fff;
	font-size: clamp(3rem, 8vw, 6rem);
	letter-spacing: -0.06em;
	line-height: 0.96;
}

.bh-newsletter__copy h2 span {
	color: var(--bh-studio-orange);
}

.bh-newsletter__copy > p:last-child {
	font-size: 1.1rem;
	line-height: 1.55;
	margin-top: 1.5rem;
	max-width: 36rem;
}

.bh-newsletter__signup {
	background: var(--bh-studio-ink);
	border-radius: 1.9rem;
	padding: clamp(1.8rem, 4vw, 3rem);
}

.bh-newsletter__label {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.bh-newsletter-form > label:not(.bh-honeypot) {
	color: #fff;
	display: block;
	font: 700 1rem/1.3 var(--bh-studio-heading);
	margin-bottom: 0.75rem;
}

.bh-newsletter-form > div {
	background: #fff;
	border-radius: 999px;
	display: flex;
	padding: 0.35rem;
}

.bh-newsletter-form input[type="email"] {
	background: transparent;
	border: 0;
	border-radius: 999px;
	color: var(--bh-studio-ink);
	flex: 1;
	font-size: 1rem;
	min-width: 0;
	padding-inline: 1rem;
}

.bh-newsletter-form button {
	background: var(--bh-studio-ink);
	border: 0;
	border-radius: 999px;
	color: #fff;
	font-weight: 700;
	padding: 0.9rem 1rem;
}

.bh-newsletter-form button span {
	color: var(--bh-studio-orange);
	margin-left: 0.4rem;
}

.bh-newsletter__note,
.bh-newsletter__status {
	font-size: 0.78rem;
	font-weight: 700;
	margin-top: 1rem;
}

.bh-honeypot {
	left: -9999px;
	position: absolute;
}

/* Footer */
.bh-studio-footer {
	background: #080e1d;
	color: #fff;
	padding-block: clamp(4rem, 7vw, 7rem) 2rem;
}

.bh-footer-top {
	display: grid;
	gap: 2.75rem;
}

.bh-footer-brand .bh-brand__image {
	height: 5rem;
	width: 14rem;
}

.bh-footer-brand > p {
	color: #aeb6ca;
	line-height: 1.65;
	margin-top: 1.75rem;
}

.bh-footer-watch {
	color: var(--bh-studio-orange) !important;
	display: inline-flex;
	font-weight: 700;
	gap: 0.8rem;
	margin-top: 2rem;
}

.bh-footer-nav h2 {
	color: #8fb2ff;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.bh-footer-nav__list {
	display: grid;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bh-footer-nav a {
	color: #fff;
	font-weight: 600;
}

.bh-footer-nav a:hover {
	color: #8fb2ff;
}

.bh-footer-bottom {
	border-top: 1px solid rgb(255 255 255 / 16%);
	color: #848da3;
	display: flex;
	flex-direction: column;
	font-size: 0.8rem;
	gap: 1.25rem;
	margin-top: 4rem;
	padding-top: 1.75rem;
}

.bh-footer-bottom > div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem 1.25rem;
}

.bh-footer-bottom a {
	color: #cfd4df;
	font-weight: 600;
}

/* Archives and guests */
.bh-archive-hero,
.bh-guests-hero {
	background: var(--bh-studio-ivory);
	padding-block: clamp(4rem, 8vw, 8rem);
}

.bh-archive-hero__grid {
	display: grid;
	gap: 2rem;
}

.bh-archive-hero h1,
.bh-guests-hero h1 {
	color: var(--bh-studio-ink);
	font-size: clamp(3.5rem, 10vw, 7.8rem);
	letter-spacing: -0.07em;
	line-height: 0.92;
}

.bh-archive-hero__grid > div:last-child > p {
	color: var(--bh-studio-muted);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	line-height: 1.55;
}

.bh-search-form {
	display: flex;
	margin-top: 1.75rem;
	max-width: 36rem;
}

.bh-search-form__field {
	background: #fff;
	border: 1px solid var(--bh-studio-line);
	border-radius: 999px 0 0 999px;
	flex: 1;
	min-width: 0;
	padding-inline: 1.25rem;
}

.bh-search-form .bh-button {
	background: var(--bh-studio-blue);
	border: 0;
	border-radius: 0 999px 999px 0;
	color: #fff;
	font-weight: 700;
	padding-inline: 1.4rem;
}

.bh-archive-results,
.bh-guests-results {
	background: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-archive-results__top {
	border-bottom: 1px solid var(--bh-studio-line);
	display: flex;
	font-size: 0.78rem;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	text-transform: uppercase;
}

.bh-archive-results__top a {
	color: var(--bh-studio-blue);
}

.bh-pagination {
	margin-top: 3.5rem;
}

.bh-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	justify-content: center;
}

.bh-pagination .page-numbers {
	align-items: center;
	border: 1px solid var(--bh-studio-line);
	border-radius: 999px;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-height: 3rem;
	min-width: 3rem;
	padding: 0.75rem 1rem;
}

.bh-pagination .page-numbers.current,
.bh-pagination a.page-numbers:hover {
	background: var(--bh-studio-blue);
	border-color: var(--bh-studio-blue);
	color: #fff;
}

.bh-guest-card__media {
	aspect-ratio: 1;
}

.bh-guest-card__body strong {
	font-size: 1.6rem;
	line-height: 1.05;
}

.bh-guest-card__body > span:not(.bh-arrow-link) {
	color: var(--bh-studio-muted);
	font-size: 0.9rem;
	line-height: 1.4;
	margin-top: 0.5rem;
}

.bh-guest-card__body .bh-arrow-link {
	color: var(--bh-studio-blue);
	margin-top: 1rem;
}

.bh-shorts-page__hero {
	background: var(--bh-studio-blue);
	color: #fff;
	padding-block: clamp(4rem, 8vw, 8rem);
}

.bh-shorts-page__hero .bh-kicker {
	color: #fff;
}

.bh-shorts-page__hero h1 {
	color: #fff;
	font-size: clamp(3.5rem, 10vw, 7.8rem);
	letter-spacing: -0.07em;
	line-height: 0.92;
}

.bh-shorts-page__hero h1 span {
	color: var(--bh-studio-orange);
}

.bh-shorts-page__hero .bh-archive-hero__grid > div:last-child > p {
	color: #e2eaff;
}

.bh-shorts-page__results {
	background: var(--bh-studio-cream);
	padding-block: var(--bh-studio-section);
}

.bh-shorts-page__grid {
	display: grid;
	gap: 1.5rem 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Guest and sponsor outreach */
.bh-outreach-hero {
	background: var(--bh-studio-cream);
	padding-block: clamp(4.5rem, 9vw, 9rem);
}

.bh-outreach-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(3rem, 8vw, 7.5rem);
}

.bh-outreach-hero h1 {
	font-size: clamp(3.5rem, 11vw, 7rem);
	letter-spacing: -0.07em;
	line-height: 0.92;
}

.bh-outreach-hero h1 span {
	color: var(--bh-studio-blue);
}

.bh-outreach-hero__grid > div:first-child > p:not(.bh-kicker) {
	color: var(--bh-studio-muted);
	font-size: 1.1rem;
	line-height: 1.65;
	margin-top: 1.75rem;
	max-width: 40rem;
}

.bh-outreach-hero .bh-pill-button {
	margin-top: 2rem;
}

.bh-outreach-hero__card {
	background: var(--bh-studio-orange);
	border-radius: 1.8rem;
	box-shadow: 1rem 1rem 0 var(--bh-studio-ink);
	color: var(--bh-studio-ink);
	padding: clamp(2rem, 5vw, 3.7rem);
	transform: rotate(1.5deg);
}

.bh-outreach--guest .bh-outreach-hero__card {
	background: var(--bh-studio-blue);
	box-shadow: 1rem 1rem 0 var(--bh-studio-orange);
	color: #fff;
	transform: rotate(-1.5deg);
}

.bh-outreach-hero__card > span {
	color: var(--bh-studio-blue);
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 1.6rem;
	text-transform: uppercase;
}

.bh-outreach--guest .bh-outreach-hero__card > span {
	color: var(--bh-studio-orange);
}

.bh-outreach-hero__card strong {
	display: block;
	font-size: clamp(2.7rem, 7vw, 4.3rem);
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.bh-outreach-hero__card > p {
	font-weight: 600;
	line-height: 1.6;
	margin-top: 1.5rem;
}

.bh-outreach--guest .bh-outreach-hero__card > p {
	color: #e2eaff;
}

.bh-outreach-cards {
	background: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-outreach-card-grid {
	display: grid;
	gap: 1.25rem;
}

.bh-outreach-card-grid article {
	background: var(--bh-studio-cream);
	border: 1px solid var(--bh-studio-line);
	border-radius: 1.4rem;
	min-height: 17rem;
	padding: 1.8rem;
}

.bh-outreach-card-grid article > span {
	color: var(--bh-studio-blue);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-outreach-card-grid h3 {
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	letter-spacing: -0.045em;
	line-height: 1.08;
	margin: 4rem 0 0.85rem;
}

.bh-outreach-card-grid p {
	color: var(--bh-studio-muted);
	line-height: 1.65;
}

.bh-outreach-form-section {
	background: var(--bh-studio-cream);
	padding-block: var(--bh-studio-section);
	scroll-margin-top: 6rem;
}

.bh-outreach-form-grid {
	display: grid;
	gap: clamp(2.5rem, 7vw, 6rem);
}

.bh-outreach-form-grid aside h2,
.bh-outreach-form-panel h2 {
	font-size: clamp(2.6rem, 6vw, 4rem);
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.bh-outreach-form-grid aside > p:not(.bh-kicker),
.bh-outreach-form-panel > p:not(.bh-kicker, .bh-outreach-status) {
	color: var(--bh-studio-muted);
	line-height: 1.65;
	margin-top: 1.4rem;
}

.bh-outreach-email {
	border-block: 1px solid #d8cfc3;
	display: grid;
	gap: 0.45rem;
	margin-top: 2rem;
	padding: 1.3rem 2.5rem 1.3rem 0;
	position: relative;
}

.bh-outreach-email span {
	color: var(--bh-studio-blue);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.bh-outreach-email strong {
	font-size: clamp(1.1rem, 3vw, 1.5rem);
	overflow-wrap: anywhere;
}

.bh-outreach-email b {
	color: var(--bh-studio-blue);
	font-size: 1.4rem;
	position: absolute;
	right: 0;
	top: 2rem;
}

.bh-outreach-form-panel {
	background: #fff;
	border: 1px solid var(--bh-studio-line);
	border-radius: 1.75rem;
	padding: clamp(1.5rem, 5vw, 3rem);
}

.bh-outreach-form {
	margin-top: 2rem;
}

.bh-outreach-fields {
	display: grid;
	gap: 0 1.25rem;
}

.bh-outreach-form label {
	display: grid;
	font-size: 0.88rem;
	font-weight: 700;
	gap: 0.55rem;
	margin-bottom: 1.35rem;
}

.bh-outreach-form :where(input, select, textarea) {
	background: #fff;
	border: 1px solid #cfc5b8;
	border-radius: 0.7rem;
	color: var(--bh-studio-ink);
	font: 400 1rem/1.5 var(--bh-studio-body);
	min-height: 3.4rem;
	padding: 0.8rem 0.95rem;
	width: 100%;
}

.bh-outreach-form textarea {
	min-height: 8rem;
}

.bh-outreach-status {
	background: #edf2ff;
	border-radius: 0.75rem;
	color: #244da8;
	font-weight: 700;
	margin-top: 1rem;
	padding: 0.9rem 1rem;
}

.bh-outreach-status--error {
	background: #fff0ed;
	color: #9d2c18;
}

/* Single episode */
.bh-episode-hero {
	background: var(--bh-studio-dark);
	color: #fff;
	padding-block: clamp(2rem, 5vw, 4.5rem) clamp(4.5rem, 8vw, 8rem);
}

.bh-breadcrumb {
	color: #9ca3b3;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.75rem;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.bh-breadcrumb a:hover {
	color: #fff;
}

.bh-episode-hero__grid {
	display: grid;
	gap: clamp(2.5rem, 6vw, 5rem);
}

.bh-episode-player {
	aspect-ratio: 16 / 9;
	background: #050914;
	border-radius: 1.5rem;
	overflow: hidden;
}

.bh-episode-player iframe,
.bh-episode-player img,
.bh-episode-player .bh-media-fallback {
	border: 0;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bh-episode-audio {
	font-weight: 700;
	margin-top: 1rem;
}

.bh-episode-meta {
	color: #9db9ff;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 0.75rem 1.2rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.bh-episode-hero__copy h1 {
	color: #fff;
	font-size: clamp(2.8rem, 8vw, 6rem);
	letter-spacing: -0.06em;
	line-height: 0.98;
	margin-top: 1rem;
}

.bh-episode-hero__deck {
	color: #c7cad4;
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
	line-height: 1.55;
	margin-top: 1.5rem;
}

.bh-episode-guest-line {
	align-items: center;
	display: flex;
	gap: 0.9rem;
	margin-top: 1.5rem;
}

.bh-episode-guest-line > span {
	align-items: center;
	background: var(--bh-studio-orange);
	border-radius: 50%;
	display: flex;
	font-weight: 700;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}

.bh-topic-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1.5rem;
}

.bh-topic-links a {
	border: 1px solid rgb(255 255 255 / 25%);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.5rem 0.8rem;
}

.bh-episode-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.bh-episode-actions .bh-outline-button {
	color: #fff;
}

.bh-share-status {
	font-size: 0.8rem;
	margin-top: 0.75rem;
}

.bh-episode-content {
	background: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-episode-content__grid {
	display: grid;
	gap: 3rem;
}

.bh-episode-story h2 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
	margin-bottom: 2rem;
}

.bh-entry-content {
	font-size: 1.05rem;
	line-height: 1.75;
}

.bh-entry-content > * + * {
	margin-top: 1.35em;
}

.bh-entry-content :where(h2, h3, h4) {
	margin-top: 1.4em;
}

.bh-entry-content a {
	color: var(--bh-studio-blue);
	text-decoration: underline;
}

.bh-entry-content iframe {
	max-width: 100%;
}

.bh-episode-details {
	align-self: start;
	background: var(--bh-studio-cream);
	border-radius: 1.5rem;
	padding: 1.75rem;
}

.bh-episode-details > p {
	color: var(--bh-studio-blue);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-episode-details h2 {
	font-size: 1.8rem;
	margin-top: 0.5rem;
}

.bh-episode-details ul {
	border-top: 1px solid var(--bh-studio-line);
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.bh-episode-details li {
	border-bottom: 1px solid var(--bh-studio-line);
	display: flex;
	font-size: 0.85rem;
	justify-content: space-between;
	padding-block: 0.9rem;
}

.bh-guest-feature {
	background: var(--bh-studio-blue);
	color: #fff;
	padding-block: clamp(3rem, 6vw, 5rem);
}

.bh-guest-feature__inner {
	align-items: center;
	display: grid;
	gap: 1.5rem;
}

.bh-guest-feature__mark {
	align-items: center;
	background: var(--bh-studio-orange);
	border-radius: 50%;
	display: flex;
	font: 700 2rem/1 var(--bh-studio-heading);
	height: 6rem;
	justify-content: center;
	width: 6rem;
}

.bh-guest-feature h2 {
	color: #fff;
	font-size: clamp(2.3rem, 5vw, 4rem);
	letter-spacing: -0.05em;
	line-height: 1;
}

.bh-guest-feature .bh-kicker {
	color: #fff;
}

.bh-guest-feature p:last-child {
	margin-top: 0.7rem;
}

.bh-related {
	background: var(--bh-studio-ivory);
	padding-block: var(--bh-studio-section);
}

/* Modal */
.bh-video-modal {
	inset: 0;
	position: fixed;
	z-index: var(--bh-z-overlay);
}

.bh-video-modal__backdrop {
	background: rgb(2 5 14 / 88%);
	border: 0;
	inset: 0;
	position: absolute;
	width: 100%;
}

.bh-video-modal__panel {
	background: var(--bh-studio-dark);
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 1.2rem;
	color: #fff;
	left: 50%;
	max-width: min(74rem, calc(100vw - 2rem));
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.bh-video-modal__header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0.8rem 1rem;
}

.bh-video-modal__header p {
	font-size: 0.8rem;
	font-weight: 700;
}

.bh-video-modal__close {
	background: #fff;
	border: 0;
	border-radius: 50%;
	color: var(--bh-studio-ink);
	font-size: 1.5rem;
	height: 2.6rem;
	line-height: 1;
	width: 2.6rem;
}

.bh-video-modal__player {
	aspect-ratio: 16 / 9;
	background: #000;
}

.bh-video-modal__panel.is-portrait {
	max-width: min(30rem, calc(100vw - 2rem));
}

.bh-video-modal__panel.is-portrait .bh-video-modal__player {
	aspect-ratio: 9 / 16;
	max-height: 75vh;
}

.bh-video-modal__player iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.bh-video-modal__youtube {
	color: #fff;
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.8rem 1rem;
	text-align: right;
}

.bh-video-modal__details,
.bh-video-modal__links {
	display: contents;
}

.bh-video-modal__short-only {
	display: none;
}

/* Shorts modal */
.bh-video-modal.is-short .bh-video-modal__backdrop {
	background: rgb(8 13 23 / 72%);
}

.bh-video-modal__panel.is-short {
	background: #f7f5f1;
	border: 1px solid #ddd7cf;
	border-radius: 1.875rem;
	box-shadow: 0 1.5rem 4rem rgb(2 5 14 / 28%);
	color: var(--bh-studio-ink);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-rows: auto minmax(0, 1fr);
	height: min(54rem, calc(100dvh - 2rem));
	max-width: min(60rem, calc(100vw - 2rem));
}

.bh-video-modal__panel.is-short .bh-video-modal__header {
	background: #f7f5f1;
	border-bottom: 1px solid #ddd7cf;
	grid-column: 1 / -1;
	padding: 0.9rem 1.3rem;
}

.bh-video-modal__panel.is-short .bh-video-modal__header p {
	color: #676b73;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bh-video-modal__panel.is-short .bh-video-modal__close {
	background: #f7f5f1;
	border: 2px solid var(--bh-studio-blue);
	height: 3rem;
	width: 3rem;
}

.bh-video-modal__panel.is-short .bh-video-modal__player,
.bh-video-modal__panel.is-short.is-portrait .bh-video-modal__player {
	aspect-ratio: auto;
	grid-column: 1;
	grid-row: 2;
	height: 100%;
	max-height: none;
	min-height: 0;
}

.bh-video-modal__panel.is-short .bh-video-modal__details {
	border-left: 1px solid #ddd7cf;
	display: flex;
	flex-direction: column;
	grid-column: 2;
	grid-row: 2;
	min-height: 0;
	overflow-y: auto;
	padding: 2rem;
}

.bh-video-modal__panel.is-short .bh-video-modal__short-content {
	display: block;
}

.bh-video-modal__meta {
	color: var(--bh-studio-blue);
	font-size: 0.82rem;
	font-weight: 700;
}

.bh-video-modal__short-content h2 {
	color: var(--bh-studio-ink);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-top: 0.75rem;
}

.bh-video-modal__guest {
	color: #514d48;
	font-size: 0.95rem;
	margin-top: 1.15rem;
}

.bh-video-modal__episode {
	border-top: 1px solid #ddd7cf;
	margin-top: 1.8rem;
	padding-top: 1.55rem;
}

.bh-video-modal__episode[hidden],
.bh-video-modal__footer[hidden],
.bh-video-modal__guest[hidden],
.bh-video-modal__meta[hidden],
.bh-video-modal__share[hidden],
.bh-video-modal__meta [hidden] {
	display: none;
}

.bh-video-modal__episode > p {
	color: #67625c;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bh-video-modal__episode h3 {
	color: var(--bh-studio-ink);
	font-size: 1.08rem;
	line-height: 1.25;
	margin-top: 0.8rem;
}

.bh-video-modal__episode-link {
	align-items: center;
	background: var(--bh-studio-blue);
	border-radius: 999px;
	color: #fff !important;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1.2rem;
	min-height: 3.2rem;
	padding: 0.85rem 1.35rem;
}

.bh-video-modal__episode-link:hover {
	background: var(--bh-studio-blue-dark);
}

.bh-video-modal__panel.is-short .bh-video-modal__links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.4rem;
	margin-top: 1.6rem;
}

.bh-video-modal__panel.is-short .bh-video-modal__share,
.bh-video-modal__panel.is-short .bh-video-modal__youtube {
	background: transparent;
	border: 0;
	color: var(--bh-studio-blue);
	display: inline-flex;
	font: 700 0.82rem/1.3 var(--bh-studio-heading);
	padding: 0;
	text-align: left;
}

.bh-video-modal__share:hover,
.bh-video-modal__panel.is-short .bh-video-modal__youtube:hover {
	color: var(--bh-studio-blue-dark);
}

.bh-video-modal__panel.is-short .bh-video-modal__footer {
	align-items: center;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 1fr auto 1fr;
	margin-top: auto;
	padding-top: 2rem;
}

.bh-video-modal__footer > span {
	color: #514d48;
	font-size: 0.8rem;
	text-align: center;
}

.bh-video-modal__footer button {
	align-items: center;
	background: transparent;
	border: 1px solid #cec7bd;
	border-radius: 999px;
	color: var(--bh-studio-ink);
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 700;
	gap: 0.35rem;
	justify-content: center;
	min-height: 2.8rem;
	padding: 0.7rem 0.95rem;
}

.bh-video-modal__footer button:last-child {
	justify-self: end;
}

.bh-video-modal__footer button:disabled {
	color: #9c9995;
	cursor: not-allowed;
	opacity: 0.65;
}

@media (max-width: 48.75rem) {
	.bh-video-modal__panel.is-short {
		display: block;
		height: auto;
		max-height: calc(100dvh - 1rem);
		max-width: calc(100vw - 1rem);
		overflow-y: auto;
	}

	.bh-video-modal__panel.is-short .bh-video-modal__header {
		position: sticky;
		top: 0;
		z-index: 3;
	}

	.bh-video-modal__panel.is-short .bh-video-modal__player,
	.bh-video-modal__panel.is-short.is-portrait .bh-video-modal__player {
		aspect-ratio: 9 / 16;
		height: auto;
		width: 100%;
	}

	.bh-video-modal__panel.is-short .bh-video-modal__details {
		border-left: 0;
		border-top: 1px solid #ddd7cf;
		overflow: visible;
		padding: 1.5rem;
	}

	.bh-video-modal__short-content h2 {
		font-size: clamp(1.65rem, 8vw, 2.15rem);
	}

	.bh-video-modal__episode-link {
		width: 100%;
	}

	.bh-video-modal__footer {
		padding-top: 1.75rem;
	}

	.bh-video-modal__footer button {
		min-height: 2.75rem;
		padding-inline: 0.75rem;
	}
}

/* Generic WordPress pages and WooCommerce */
.bh-theme .bh-main > .bh-section {
	background: #fff;
	padding-block: var(--bh-studio-section);
}

.bh-theme .bh-main > .bh-section .bh-container {
	max-width: 78rem;
}

.bh-entry__header h1,
.bh-error-page h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.bh-entry__content {
	font-size: 1.05rem;
	line-height: 1.75;
}

.bh-entry__content > * + *,
.bh-flow > * + * {
	margin-top: 1.3rem;
}

.bh-theme .woocommerce {
	margin-inline: auto;
	max-width: var(--bh-studio-width);
	padding: var(--bh-studio-section) var(--bh-studio-gutter);
}

.bh-theme .woocommerce ul.products {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bh-theme .woocommerce ul.products::before,
.bh-theme .woocommerce ul.products::after {
	display: none;
}

.bh-theme .woocommerce ul.products li.product {
	float: none;
	margin: 0;
	width: auto;
}

.bh-theme .woocommerce ul.products li.product a img {
	background: var(--bh-studio-cream);
	border-radius: 1.25rem;
}

.bh-theme .woocommerce a.button,
.bh-theme .woocommerce button.button,
.bh-theme .woocommerce input.button {
	background: var(--bh-studio-blue);
	border-radius: 999px;
	color: #fff;
}

/* Tablet */
@media (min-width: 44rem) {
	.bh-start__grid,
	.bh-archive-grid,
	.bh-guests-grid,
	.bh-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bh-stage-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bh-membership__benefits > div {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bh-membership__benefits > div > div:nth-child(odd) {
		border-right: 1px solid rgb(255 255 255 / 16%);
	}

	.bh-footer-top {
		grid-template-columns: 1.5fr 1fr 1fr;
	}

	.bh-footer-brand {
		grid-row: span 2;
	}

	.bh-footer-bottom {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.bh-guest-feature__inner {
		grid-template-columns: auto 1fr auto;
	}

	.bh-theme .woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bh-outreach-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bh-outreach-fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bh-shorts-page__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Desktop */
@media (min-width: 64rem) {
	.bh-studio-header,
	.bh-header-inner,
	.bh-primary-nav {
		overflow: visible;
	}

	.bh-header-inner {
		gap: 2rem;
		grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
	}

	.bh-primary-nav {
		background: transparent;
		border: 0;
		display: block;
		grid-column: auto;
		padding: 0;
	}

	.bh-primary-nav__list,
	.bh-primary-nav .menu {
		align-items: center;
		flex-direction: row;
		gap: clamp(1rem, 2.3vw, 2.4rem);
	}

	.bh-primary-nav a {
		font-size: 0.9rem;
		padding: 1rem 0;
	}

	.bh-primary-nav__list > .menu-item-has-children,
	.bh-primary-nav > .menu > .menu-item-has-children {
		position: relative;
	}

	.bh-primary-nav .sub-menu {
		background: #111827;
		border: 1px solid rgb(255 255 255 / 13%);
		border-radius: 0.85rem;
		box-shadow: 0 1.1rem 2.8rem rgb(0 0 0 / 34%);
		display: grid;
		gap: 0.15rem;
		left: 50%;
		margin: 0.35rem 0 0;
		min-width: 11.875rem;
		opacity: 0;
		padding: 0.55rem;
		pointer-events: none;
		position: absolute;
		top: 100%;
		transform: translate(-50%, 0.55rem);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
		visibility: hidden;
		z-index: 100;
	}

	.bh-primary-nav .sub-menu::before {
		content: "";
		height: 0.75rem;
		left: 0;
		position: absolute;
		right: 0;
		top: -0.7rem;
	}

	.bh-primary-nav .sub-menu a {
		border-radius: 0.55rem;
		display: block;
		font-size: 0.86rem;
		line-height: 1.25;
		padding: 0.75rem 0.85rem;
		white-space: nowrap;
	}

	.bh-primary-nav .sub-menu a:hover,
	.bh-primary-nav .sub-menu a:focus-visible,
	.bh-primary-nav .sub-menu .current-menu-item > a,
	.bh-primary-nav .sub-menu .current_page_item > a {
		background: rgb(143 178 255 / 11%);
		color: #8fb2ff;
	}

	.bh-primary-nav__list > .menu-item-has-children:hover > .sub-menu,
	.bh-primary-nav__list > .menu-item-has-children:focus-within > .sub-menu,
	.bh-primary-nav__list > .menu-item-has-children.is-submenu-open > .sub-menu,
	.bh-primary-nav > .menu > .menu-item-has-children:hover > .sub-menu,
	.bh-primary-nav > .menu > .menu-item-has-children:focus-within > .sub-menu,
	.bh-primary-nav > .menu > .menu-item-has-children.is-submenu-open > .sub-menu {
		opacity: 1;
		pointer-events: auto;
		transform: translate(-50%, 0);
		visibility: visible;
	}

	.bh-primary-nav__list > .menu-item-has-children.is-submenu-closed > .sub-menu,
	.bh-primary-nav > .menu > .menu-item-has-children.is-submenu-closed > .sub-menu {
		opacity: 0;
		pointer-events: none;
		transform: translate(-50%, 0.55rem);
		visibility: hidden;
	}

	.bh-header-cta {
		display: inline-flex;
		justify-self: end;
		min-height: 3.2rem;
		padding-inline: 1.5rem;
	}

	.bh-menu-toggle {
		display: none;
	}

	.bh-hero__grid {
		align-items: start;
		column-gap: clamp(48px, 5vw, 82px);
		grid-template-areas: "copy feature" "platforms feature";
		grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
		min-height: 0;
		row-gap: 0;
	}

	.bh-hero__copy {
		align-self: start;
		grid-area: copy;
	}

	.bh-hero-feature {
		grid-area: feature;
	}

	.bh-platforms {
		align-self: start;
		grid-area: platforms;
		margin-top: 2.5rem;
	}

	.bh-section-heading--split {
		align-items: end;
		display: grid;
		gap: 4rem;
		grid-template-columns: minmax(0, 1.55fr) minmax(20rem, 0.75fr);
	}

	.bh-start__grid,
	.bh-archive-grid,
	.bh-guests-grid,
	.bh-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bh-start-card__copy {
		padding: 1.5rem;
	}

	.bh-shorts__rail {
		grid-auto-columns: minmax(17.5rem, 21.25%);
	}

	.bh-stage-feature__play {
		align-items: center;
		background: var(--bh-studio-blue);
		border: 4px solid #fff;
		border-radius: 50%;
		color: #fff;
		display: flex;
		font-size: 1.2rem;
		height: 5rem;
		justify-content: center;
		position: absolute;
		right: 3rem;
		top: 50%;
		transform: translateY(-50%);
		width: 5rem;
		z-index: 2;
	}

	.bh-newsletter__shell {
		align-items: center;
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	}

	.bh-behind-feature > a {
		grid-template-columns: minmax(0, 2fr) minmax(20rem, 0.85fr);
	}

	.bh-behind-feature__media {
		aspect-ratio: 16 / 9;
	}

	.bh-membership__shell {
		align-items: center;
		grid-template-columns: minmax(0, 0.9fr) minmax(34rem, 1.15fr);
	}

	.bh-footer-top {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}

	.bh-footer-brand {
		grid-row: auto;
	}

	.bh-archive-hero__grid {
		align-items: end;
		grid-template-columns: minmax(0, 1.4fr) minmax(24rem, 0.75fr);
	}

	.bh-outreach-hero__grid,
	.bh-outreach-form-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(24rem, 0.85fr);
	}

	.bh-outreach-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bh-outreach-form-grid aside {
		position: sticky;
		top: 8rem;
	}

	.bh-shorts-page__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.bh-episode-hero__grid {
		align-items: center;
		grid-template-columns: minmax(0, 1.2fr) minmax(26rem, 0.8fr);
	}

	.bh-episode-content__grid {
		grid-template-columns: minmax(0, 1fr) 21rem;
	}
}

@media (min-width: 75rem) {
	.bh-gives-back__shell {
		gap: clamp(2rem, 4vw, 5rem);
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.bh-gives-back__media {
		aspect-ratio: 1.16 / 1;
	}

	.bh-gives-back__copy h2 {
		font-size: clamp(3.75rem, 7vw, 6.75rem);
	}
}

@media (min-width: 82rem) {
	.bh-shorts__rail {
		grid-auto-columns: minmax(17.5rem, 21.25%);
	}

	.bh-footer-top {
		gap: 5rem;
	}
}

@media (max-width: 48.75rem) {
	.admin-bar .bh-studio-header.is-sticky {
		top: 46px;
	}

	.bh-newsletter-form > div {
		align-items: stretch;
		background: transparent;
		border-radius: 0;
		flex-direction: column;
		gap: 0.75rem;
	}

	.bh-newsletter-form input[type="email"],
	.bh-newsletter-form button {
		background: #fff;
		border-radius: 999px;
		min-height: 3.6rem;
		width: 100%;
	}

	.bh-newsletter-form button {
		background: var(--bh-studio-orange);
	}
}

@media (prefers-reduced-motion: reduce) {
	.bh-gives-back__media:hover > img {
		transform: none;
	}

	.bh-gives-back__media > img {
		transition: none;
	}

	.bh-shorts__rail {
		scroll-behavior: auto;
	}

	.bh-shorts__rail .bh-short-card {
		transition: none;
	}
}
