/* Home hero height */
.bbt-home-hero-banner {
	min-height: 700px !important;
	display: flex;
	align-items: center;
}

@media (max-width: 1024px) {
	.bbt-home-hero-banner {
		min-height: 600px !important;
	}
}

@media (max-width: 768px) {
	.bbt-home-hero-banner {
		min-height: 520px !important;
	}
}

@media (max-width: 480px) {
	.bbt-home-hero-banner {
		min-height: 460px !important;
	}
}

/* Home hero */
h1.bbt-home-hero-title {
	margin-bottom: 0 !important;
	font-size: clamp(3.25rem, 9vw, 7.8125rem) !important;
	line-height: 0.92;
	color: #fff;
	text-shadow:
		0 0 4px rgba(0, 0, 0, 1),
		0 4px 12px rgba(0, 0, 0, 0.75),
		0 10px 28px rgba(0, 0, 0, 0.55);
}

h2.bbt-home-hero-subtitle {
	margin-top: 0 !important;
	font-size: clamp(1.25rem, 3.8vw, 3.125rem) !important;
	line-height: 1.05;
	letter-spacing: 0.12em;
	color: #fff !important;
	text-shadow:
		0 0 4px rgba(0, 0, 0, 1),
		0 4px 12px rgba(0, 0, 0, 0.75),
		0 10px 28px rgba(0, 0, 0, 0.55);
}

/* Home hero button */
.bbt-hero-button,
.bbt-hero-button.wp-block-button__link,
.bbt-hero-button .wp-block-button__link {
	font-size: clamp(1rem, 1.2vw, 1.25rem) !important;
	padding: 14px 32px !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: var(--bbt-radius-card);
}

@media (max-width: 768px) {
	h1.bbt-home-hero-title {
		line-height: 0.96;
	}

	h2.bbt-home-hero-subtitle {
		letter-spacing: 0.08em;
	}
}

/* Shared page hero */
.bbt-page-hero .bbt-page-hero__title,
.bbt-page-hero .bbt-archive-hero__title {
	color: #fff;
	font-size: clamp(2.5rem, 6vw, 6rem);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-shadow:
		0 0 4px rgba(0, 0, 0, 1),
		0 4px 12px rgba(0, 0, 0, 0.75),
		0 10px 28px rgba(0, 0, 0, 0.55);
}

.bbt-hero {
	position: relative;
	width: 100%;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bbt-hero--banner {
	min-height: 420px;
	padding: 160px 20px 80px;
}

.bbt-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.bbt-hero__title {
	margin: 0;
	max-width: 900px;
	color: #fff;
	font-size: clamp(2.2rem, 4.5vw, 4.25rem);
	line-height: 1.05;
}

/* Type tweaks */
.bbt-hero--archive .bbt-hero__title {
	max-width: 700px;
}

.bbt-hero--single .bbt-hero__title {
	max-width: 900px;
}

/* Archive hero */
.bbt-archive-hero {
	position: relative;
	min-height: 400px;
	margin-bottom: 48px;
	background: center / cover no-repeat;
	overflow: hidden;
}

.bbt-archive-hero__inner {
	position: relative;
	z-index: 2;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px 80px;
	text-align: center;
}

@media (max-width: 768px) {
	.bbt-hero--banner {
		min-height: 320px;
		padding: 130px 20px 50px;
	}

	.bbt-hero__title {
		font-size: clamp(1.9rem, 7vw, 2.8rem);
		line-height: 1.1;
	}
}