.text-and-video-two-columns {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(3rem, 6vw, 5.5rem) 0;
	margin: 4rem 0;
}

.text-and-video-two-columns__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 54%;
	z-index: 0;
	background: var(--color-slate);
	pointer-events: none;
}

.text-and-video-two-columns__container {
	position: relative;
	z-index: 1;
}

.text-and-video-two-columns__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

.text-and-video-two-columns__left {
	max-width: 34rem;
}

.text-and-video-two-columns__title {
	margin: 0;
}

.text-and-video-two-columns__text {
	margin-top: 1.15rem;
}

.text-and-video-two-columns__text > *:first-child {
	margin-top: 0;
}

.text-and-video-two-columns__text > *:last-child {
	margin-bottom: 0;
}

.text-and-video-two-columns__text a {
	color: var(--color-primary);
}

.text-and-video-two-columns__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.75rem;
}

.text-and-video-two-columns__right {
	min-width: 0;
}

.text-and-video-two-columns__video {
	position: relative;
	aspect-ratio: 16 / 10;
	width: 100%;
	max-width: 36rem;
	margin-left: -12%;
	overflow: hidden;
	background: var(--color-section-dark-blue);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.text-and-video-two-columns__poster,
.text-and-video-two-columns__video picture {
	display: block;
	width: 100%;
	height: 100%;
}

.text-and-video-two-columns__video picture img,
.text-and-video-two-columns__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text-and-video-two-columns__poster--empty {
	background: linear-gradient(135deg, #2c383d 0%, var(--color-slate) 100%);
}

.text-and-video-two-columns__caption,
.text-and-video-two-columns__caption:link,
.text-and-video-two-columns__caption:visited,
.text-and-video-two-columns__caption:active {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.65rem;
	max-width: 36rem;
	margin: 1.15rem 0 0 -12%;
	color: var(--color-yellow);
	font-size: 0.95rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.35;
	text-decoration: none;
}

.text-and-video-two-columns__caption:hover {
	color: var(--color-yellow);
	opacity: 0.85;
}

.text-and-video-two-columns__caption-icon {
	margin-top: 0.15rem;
	font-size: 0.75rem;
	line-height: 1;
}

.text-and-video-two-columns__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.25rem;
	height: 4.25rem;
	padding: 0;
	border: 2px solid var(--color-white);
	border-radius: 50%;
	background: transparent;
	color: var(--color-white);
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.text-and-video-two-columns__play:hover,
.text-and-video-two-columns__play:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	transform: translate(-50%, -50%) scale(1.04);
}

.text-and-video-two-columns__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 0.2rem;
	border-top: 0.55rem solid transparent;
	border-bottom: 0.55rem solid transparent;
	border-left: 0.9rem solid currentColor;
}

html.text-and-video-lightbox-open,
body.text-and-video-lightbox-open {
	overflow: hidden;
}

.text-and-video-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: rgba(15, 20, 22, 0.88);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.24s ease, visibility 0.24s ease;
}

.text-and-video-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.text-and-video-lightbox__dialog {
	position: relative;
	width: min(1120px, 100%);
}

.text-and-video-lightbox__frame-wrap {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	overflow: hidden;
	background: #000;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.text-and-video-lightbox__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.text-and-video-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-white);
	cursor: pointer;
}

.text-and-video-lightbox__close span {
	position: absolute;
	width: 1.35rem;
	height: 2px;
	background: currentColor;
}

.text-and-video-lightbox__close span:first-child {
	transform: rotate(45deg);
}

.text-and-video-lightbox__close span:last-child {
	transform: rotate(-45deg);
}

.text-and-video-lightbox__close:hover,
.text-and-video-lightbox__close:focus-visible {
	opacity: 0.75;
}

@media (max-width: 991px) {
	.text-and-video-two-columns__panel {
		left: 48%;
	}

	.text-and-video-two-columns__video {
		margin-left: -6%;
	}

	.text-and-video-two-columns__caption,
	.text-and-video-two-columns__caption:link,
	.text-and-video-two-columns__caption:visited,
	.text-and-video-two-columns__caption:active {
		margin-left: -6%;
	}
}

@media (max-width: 767px) {
	.text-and-video-two-columns {
		padding: 2.5rem 0 3rem;
		margin: 0;
	}

	.text-and-video-two-columns__panel {
		display: none;
	}

	.text-and-video-two-columns__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.text-and-video-two-columns__left {
		max-width: none;
		padding-bottom: 0.5rem;
	}

	.text-and-video-two-columns__video {
		max-width: none;
		margin: 0;
	}

	.text-and-video-two-columns__caption,
	.text-and-video-two-columns__caption:link,
	.text-and-video-two-columns__caption:visited,
	.text-and-video-two-columns__caption:active {
		max-width: none;
		margin: 1rem 0 0;
	}

	.text-and-video-lightbox {
		padding: 3.5rem 0.75rem 0.75rem;
	}

	.text-and-video-lightbox__close {
		top: 0.65rem;
		right: 0.65rem;
	}
	.text-and-video-two-columns__actions {
		flex-direction: column;
		align-items: center;
	}
}
