.base-hero {
	position: relative;
	min-height: var(--hero-h);
	display: flex;
	align-items: center;
	color: #fff;
	background-size: cover;
	background-position: center;
	border-bottom-left-radius: 50% 50px;
	border-bottom-right-radius: 50% 50px;
	overflow: hidden;
}
.base-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--color-dark);
	mix-blend-mode: multiply;
	opacity: 0.24;
}
.base-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: var(--space-5) 0 var(--space-7);
}
.base-hero h1 {
	color: var(--color-bg-tint);
	font-size: var(--text-hero);
	font-weight: var(--fw-bold);
	line-height: var(--leading-tight);
	max-width: none;
	margin: 0 auto;
	text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.base-hero--md { min-height: var(--hero-h-md); }
.base-hero--sm { min-height: var(--hero-h-sm); }
