.bdh-editorial-hero {
	position: relative;
	display: flex;
	overflow: hidden;
	width: 100%;
	min-height: 520px;
	--bdh-editorial-hero-media-z: 1;
	--bdh-editorial-hero-widget-overlay-z: 2;
}

.bdh-editorial-hero__widget-overlay {
	position: absolute;
	inset: 0;
	z-index: var(--bdh-editorial-hero-widget-overlay-z);
	display: none;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.bdh-editorial-hero__media {
	position: absolute;
	inset: 0;
	z-index: var(--bdh-editorial-hero-media-z);
	overflow: hidden;
}

.bdh-editorial-hero__background {
	position: absolute;
	inset: 0;
}

.bdh-editorial-hero__background,
.bdh-editorial-hero__image {
	display: block;
	width: 100%;
	height: 100%;
}

.bdh-editorial-hero__image {
	object-fit: cover;
	object-position: inherit;
}

.bdh-editorial-hero__background {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(1);
	transition: transform 0.6s ease;
}

.bdh-editorial-hero--hover-zoom:hover .bdh-editorial-hero__background {
	transform: scale(1.03);
}

.bdh-editorial-hero__background--mobile {
	display: none;
}

.bdh-editorial-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

.bdh-editorial-hero__content-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.bdh-editorial-hero:where([class*="bdh-editorial-hero--preset-"]) .bdh-editorial-hero__content {
	max-width: var(--bdh-preset-content-width);
	padding: var(--bdh-preset-content-padding);
	color: var(--bdh-preset-content-color);
}

.bdh-editorial-hero:where([class*="bdh-editorial-hero--preset-"]) .bdh-editorial-hero__content-inner {
	padding: var(--bdh-preset-panel-padding);
	background-color: var(--bdh-preset-panel-surface);
}

.bdh-editorial-hero:where([class*="bdh-editorial-hero--preset-"]) .bdh-editorial-hero__title {
	font-family: var(--bdh-global-font-heading);
}

.bdh-editorial-hero:where([class*="bdh-editorial-hero--preset-"]) .bdh-editorial-hero__description {
	font-family: var(--bdh-global-font-body);
}

.bdh-editorial-hero__overlay {
	position: relative;
	z-index: 3;
	display: flex;
	width: 100%;
	min-height: inherit;
	box-sizing: border-box;
	background: transparent;
}

.bdh-editorial-hero__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: none;
	pointer-events: none;
	background-color: var(--bdh-editorial-hero-overlay-color, transparent);
	background-image: none;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	mix-blend-mode: normal;
	transition: opacity .35s ease, background-color .35s ease, background-image .35s ease, mix-blend-mode .35s ease;
}

.bdh-editorial-hero__shade--full {
	z-index: 1;
}

.bdh-editorial-hero__region-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: none;
	pointer-events: none;
	background: transparent;
}

.bdh-editorial-hero--overlay-target-entire .bdh-editorial-hero__shade--full,
.bdh-editorial-hero--overlay-target-image .bdh-editorial-hero__shade--image,
.bdh-editorial-hero--overlay-target-content .bdh-editorial-hero__shade--content,
.bdh-editorial-hero--overlay-target-separate .bdh-editorial-hero__region-overlay--image,
.bdh-editorial-hero--overlay-target-separate .bdh-editorial-hero__region-overlay--content {
	display: block;
}

.bdh-editorial-hero--overlay-gradient-linear .bdh-editorial-hero__shade--image {
	background-image: linear-gradient(
		var(--bdh-editorial-hero-overlay-gradient-angle, 180deg),
		var(--bdh-editorial-hero-overlay-gradient-color-1, transparent) var(--bdh-editorial-hero-overlay-gradient-location-1, 0%),
		var(--bdh-editorial-hero-overlay-gradient-color-2, transparent) var(--bdh-editorial-hero-overlay-gradient-location-2, 100%)
	);
}

.bdh-editorial-hero--overlay-gradient-radial .bdh-editorial-hero__shade--image {
	background-image: radial-gradient(
		circle at center,
		var(--bdh-editorial-hero-overlay-gradient-color-1, transparent) var(--bdh-editorial-hero-overlay-gradient-location-1, 0%),
		var(--bdh-editorial-hero-overlay-gradient-color-2, transparent) var(--bdh-editorial-hero-overlay-gradient-location-2, 100%)
	);
}

.bdh-editorial-hero--structure-split {
	display: grid;
	grid-template-columns: minmax(0, var(--bdh-editorial-hero-media-width, 50%)) minmax(0, 1fr);
}

.bdh-editorial-hero--structure-split .bdh-editorial-hero__media {
	position: relative;
	inset: auto;
	grid-column: 1;
	min-width: 0;
}

.bdh-editorial-hero--structure-split .bdh-editorial-hero__overlay {
	grid-column: 2;
	min-width: 0;
}

.bdh-editorial-hero--structure-stacked {
	flex-direction: column;
}

.bdh-editorial-hero--structure-stacked .bdh-editorial-hero__media {
	position: relative;
	inset: auto;
	width: 100%;
	flex: 0 0 auto;
}

.bdh-editorial-hero--structure-stacked .bdh-editorial-hero__overlay {
	width: 100%;
	min-height: 0;
	flex: 1 1 auto;
}

.bdh-editorial-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.bdh-editorial-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition-property: color, background-color, border-color, box-shadow, transform;
}

.bdh-editorial-hero__button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.bdh-editorial-hero__eyebrow,
.bdh-editorial-hero__title,
.bdh-editorial-hero__subtitle,
.bdh-editorial-hero__description {
	margin: 0;
}

@media (max-width: 767px) {
	.bdh-editorial-hero {
		min-height: 360px;
	}

	.bdh-editorial-hero__content {
		padding-top: 48px;
		padding-bottom: 40px;
	}

	.bdh-editorial-hero--structure-split {
		display: flex;
		flex-direction: column;
	}

	.bdh-editorial-hero--structure-split .bdh-editorial-hero__media,
	.bdh-editorial-hero--structure-split .bdh-editorial-hero__overlay {
		width: 100%;
	}

	.bdh-editorial-hero--structure-split .bdh-editorial-hero__overlay {
		min-height: 0;
	}

	.bdh-editorial-hero--mobile-media-last.bdh-editorial-hero--structure-split .bdh-editorial-hero__media,
	.bdh-editorial-hero--mobile-media-last.bdh-editorial-hero--structure-stacked .bdh-editorial-hero__media {
		order: 2;
	}

	.bdh-editorial-hero--mobile-media-last.bdh-editorial-hero--structure-split .bdh-editorial-hero__overlay,
	.bdh-editorial-hero--mobile-media-last.bdh-editorial-hero--structure-stacked .bdh-editorial-hero__overlay {
		order: 1;
	}

}

@media (prefers-reduced-motion: reduce) {
	.bdh-editorial-hero__background,
	.bdh-editorial-hero__button {
		transition-duration: 0s !important;
	}

	.bdh-editorial-hero--hover-zoom:hover .bdh-editorial-hero__background {
		transform: none !important;
	}
}
