.block--page-hero {
	--border-radius: 60px;
	position: relative;
	isolation: isolate;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.block--page-hero {
		--border-radius: 40px;
	}
}

.block--page-hero--inner {
	position: relative;
	height: 100%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.block--page-hero--chevron {
	position: absolute;
	bottom: 32px;
	left: calc(50% - 11px);
}

.block--page-hero--background {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.block--page-hero--background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block--page-hero--background video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block--page-hero--background::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		270deg,
		rgba(71, 80, 122, 0) 0%,
		rgba(14, 19, 48, 0.95) 100%
	);
	z-index: 1;
	mix-blend-mode: multiply;
}

.block--page-hero--background--overlay {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	pointer-events: none;
}

.block--page-hero--background--overlay img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: bottom;
	pointer-events: none;
	user-select: none;
}
