.hpe-hero {
	position: relative;
	overflow: hidden;
	display: flex;
	min-height: 90vh;
	width: 100%;
	isolation: isolate;
}
.hpe-bg {
	position: absolute;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	will-change: transform;
}
.hpe-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.hpe-layer {
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
	line-height: 0;
}
.hpe-layer-inner {
	will-change: transform;
}
.hpe-layer img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}
.hpe-content {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 900px;
	padding: 40px 24px;
	will-change: transform;
}
.hpe-title {
	margin: 0 0 16px;
	color: #fff;
}
.hpe-text {
	margin: 0 0 28px;
	color: #fff;
}
.hpe-button {
	display: inline-block;
	padding: 14px 32px;
	background: #fff;
	color: #111;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color .2s, color .2s;
}
.hpe-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
	.hpe-bg, .hpe-layer-inner, .hpe-content { transform: none !important; }
}
