.novaVideo {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: min(1158px, calc(100% - 48px));
	margin: 0 auto;
}

@media (min-width: 769px) {
	.novaVideo {
		margin: 160px auto;
	}
}

.novaVideo__header {
	display: flex;
	justify-content: flex-start;
}

.novaVideo__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 500;
	line-height: 1.125;
	text-align: left;
	text-transform: uppercase;
	color: #202020;
}

.novaVideo__highlight {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 42px;
	padding: 4px 12px;
	border-radius: 4px;
	background: #ef7c23;
}

.novaVideo__player {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: #d9d9d9;
}

.novaVideo__trigger {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.novaVideo__posterWrap,
.novaVideo__embed,
.novaVideo__poster,
.novaVideo__posterPlaceholder {
	display: block;
	width: 100%;
	aspect-ratio: 1158 / 666;
}

.novaVideo__posterWrap {
	position: relative;
}

.novaVideo__poster {
	object-fit: cover;
	object-position: center;
}

.novaVideo__posterPlaceholder {
	background: linear-gradient(180deg, #ececec 0%, #d2d2d5 100%);
}

.novaVideo__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}

.novaVideo__playButton {
	position: absolute;
	left: 50%;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(100px, 16vw);
	height: min(100px, 16vw);
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.novaVideo__playAsset {
	display: block;
	width: 100%;
	height: 100%;
}

.novaVideo__trigger:hover .novaVideo__playButton,
.novaVideo__trigger:focus-visible .novaVideo__playButton {
	transform: translate(-50%, -50%) scale(1.04);
	opacity: 0.92;
}

.novaVideo__trigger:focus-visible {
	outline: 2px solid rgba(239, 124, 35, 0.9);
	outline-offset: 8px;
}

.novaVideo__embed iframe,
.novaVideo__embed video {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	background: #000000;
}

.novaVideo__embed[hidden] {
	display: none;
}

.novaVideo__player[data-video-has-source="false"] .novaVideo__trigger {
	cursor: default;
}

.novaVideo__player[data-video-has-source="false"] .novaVideo__trigger:focus-visible {
	outline-offset: 4px;
}

@media (max-width: 768px) {
	.novaVideo {
		gap: 20px;
		width: min(100%, calc(100% - 32px));
	}

	.novaVideo__title {
		gap: 8px;
		font-size: clamp(22px, 7vw, 32px);
		line-height: 1.15;
	}

	.novaVideo__highlight {
		min-height: auto;
		min-width: 0;
		padding: 4px 8px;
	}

	.novaVideo__playButton {
		width: min(72px, 22vw);
		height: min(72px, 22vw);
	}
}
