.bdh-eg-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.bdh-eg-item {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.bdh-eg-alternate .bdh-eg-item:nth-child(even) {
	flex-direction: row-reverse;
}

.bdh-eg-item.bdh-eg-item--reverse {
	flex-direction: row-reverse;
}

.bdh-eg-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.bdh-eg-link:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: -3px;
}

.bdh-eg-image-col {
	position: relative;
	overflow: hidden;
	display: flex;
	flex: 0 0 50%;
	flex-direction: column;
	box-sizing: border-box;
	width: 50%;
	min-height: 300px;
}

.bdh-eg-image-col img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	z-index: 1;
	transition: transform .35s ease, opacity .35s ease;
}

.bdh-eg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	background-color: transparent;
	transition: opacity .35s ease, background-color .35s ease;
}

.bdh-eg-bottom-text {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
}

.bdh-eg-content-col {
	display: flex;
	flex: 0 0 50%;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	width: 50%;
	min-width: 0;
	position: relative;
	z-index: 5;
}

.bdh-eg-overline,
.bdh-eg-title,
.bdh-eg-subtitle,
.bdh-eg-desc {
	margin: 0;
	display: block;
}

@media (max-width: 767px) {
	.bdh-eg-item,
	.bdh-eg-alternate .bdh-eg-item:nth-child(even),
	.bdh-eg-item.bdh-eg-item--reverse {
		flex-direction: column;
	}

	.bdh-eg-image-col,
	.bdh-eg-content-col {
		flex: 0 0 auto !important;
		width: 100% !important;
	}

	.bdh-eg-mobile-content-first .bdh-eg-image-col {
		order: 2;
	}

	.bdh-eg-mobile-content-first .bdh-eg-content-col {
		order: 1;
	}

	.bdh-eg-mobile-image-first .bdh-eg-image-col {
		order: 1;
	}

	.bdh-eg-mobile-image-first .bdh-eg-content-col {
		order: 2;
	}

	.bdh-eg-image-col {
		min-height: 0;
	}

	.bdh-eg-image-col img {
		position: relative;
		height: auto;
		min-height: 0;
	}

	.bdh-eg-bottom-text {
		position: relative;
		top: auto !important;
		bottom: auto !important;
		left: auto;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bdh-eg-image-col img,
	.bdh-eg-overlay {
		transition-duration: 0s !important;
	}

	.bdh-eg-item:hover .bdh-eg-image-col img {
		transform: none !important;
	}
}
