.videoEmbed {
	background: #FFFFFF;
	padding: 90px 0;
}

.videoEmbed__inner {
	display: flex;
	align-items: center;
	gap: 120px;
}

.videoEmbed__media {
	flex: 0 0 50%;
	height: 450px;
	overflow: hidden;
	min-width: 0;
	position: relative;
	border-radius: 4px;
	background: #000;
}

.videoEmbed__videoBg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.videoEmbed__videoBg iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	min-height: 100%;
	min-width: 177.78%;
	border: none;
	pointer-events: none;
}

.videoEmbed__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: opacity 0.2s ease;
}

.videoEmbed__playBtn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

.videoEmbed__playBtn svg {
	width: 80px;
	height: 80px;
	transition: transform 0.2s ease;
}

.videoEmbed__playBtn:hover svg,
.videoEmbed__playBtn:focus-visible svg {
	transform: scale(1.1);
}

.videoEmbed__playBtn:focus {
	outline: none;
}

.videoEmbed__playBtn:focus-visible {
	outline: 3px solid #875F1B;
	outline-offset: 3px;
	border-radius: 4px;
}

.videoEmbed__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.videoEmbed__copy {
	display: flex;
	flex-direction: column;
	gap: 30px;
	flex: 1 1 auto;
	min-width: 0;
}

.videoEmbed__header {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.videoEmbed__preHeadline {
	font-family: "Artifex Hand CF", serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 28px;
	color: #000000;
	margin: 0;
}

.videoEmbed__headline {
	font-family: "Artifex Hand CF", serif;
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #875F1B;
	margin: 0;
}

.videoEmbed__body {
	font-family: "Ancizar Serif", serif;
	font-size: 18px;
	line-height: 28px;
	color: #000000;
}

.videoEmbed__body p {
	margin: 0 0 25px;
}

.videoEmbed__body p:last-child {
	margin-bottom: 0;
}

.videoEmbed__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	background: #D1A76C;
	padding: 19px 20px;
	border-radius: 8px;
	min-height: 44px;
	font-family: "Artifex Hand CF", serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #000000;
	text-decoration: none;
	transition: background 0.2s ease;
}

.videoEmbed__cta:hover,
.videoEmbed__cta:focus,
.videoEmbed__cta:active {
	background: #caa064;
	color: #000000;
	text-decoration: none;
}

.videoEmbed__cta:focus {
	outline: 2px solid #875F1B;
	outline-offset: 2px;
}

.videoEmbed__cta:active {
	transform: scale(0.98);
}

@media (max-width: 1024px) {
	.videoEmbed { padding: 60px 0; }
	.videoEmbed__inner { gap: 40px; }
	.videoEmbed__headline { font-size: 32px; line-height: 40px; }
}

@media (max-width: 768px) {
	.videoEmbed { padding: 40px 0; }
	.videoEmbed__inner {
		flex-direction: column;
		gap: 30px;
	}
	.videoEmbed__media {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
	.videoEmbed__videoBg iframe {
		min-width: 100%;
		min-height: 100%;
	}
.videoEmbed__copy {
		width: 100%;
	}
	.videoEmbed__headline { font-size: 28px; line-height: 36px; }
	.videoEmbed__preHeadline { font-size: 20px; line-height: 24px; }
	.videoEmbed__cta { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
	.videoEmbed__cta,
	.videoEmbed__poster,
	.videoEmbed__playBtn svg { transition: none; }
}
