.video-embed {
	background: var(--bg-color);
	position: relative;
}

.video-embed:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: transparent var(--bg-image) no-repeat top center / cover;
	opacity: 0.10;
	z-index: 0;
}

.video-embed .container {
	max-width: 1190px;
	margin: 0 auto;
	width: 90%;
	padding: 60px 0;
	position: relative;
	z-index: 1;
}

.video-embed .col-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 57px;
}

.video-embed .col-wrapper.col-reverse {
	flex-direction: row-reverse;
}

.video-embed .col-wrapper .col {
	width: 100%;
}

.video-embed .col-wrapper .col .videoembed-img {
	display: block;
	width: 100%;
	max-width: 300px;
	max-height: 450px;
	object-fit: contain;
	margin: 0 auto;
}


.video-embed .acc-transcript {
	clear: both;
	padding: 35px 0 10px;
	border-bottom: 2px solid var(--borderquote-color);
}

.video-embed .acc-transcript-toggle {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: center;
	justify-content: flex-start;
	background: transparent;
	padding: 0;
	border-radius: 0;
	font: normal var(--f-bold) 1.13rem/1 var(--font-sans);
	letter-spacing: 0;
	color: var(--heading-color);
	text-transform: capitalize;
	transition: var(--transition);
}

.video-embed .acc-transcript-toggle .icon {
	width: 25px;
	height: 25px;
	min-width: 25px;
	min-height: 25px;
	background: transparent;
	border: 2px solid var(--heading-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 60%;
}

.video-embed .acc-transcript-toggle .icon svg {
	width: 15px;
	transition: var(--transition);
}

.video-embed .acc-transcript-toggle:hover {
	background: transparent;
}

.video-embed .acc-transcript-toggle.active .icon svg {
	transform: rotate(90deg);
}

.video-embed .transcript-content {
	font: normal var(--f-light) 0.875rem / 1.3 var(--font-sans);
	height: 0;
	overflow: hidden;
	transition: var(--transition);
}

.video-embed .transcript-content.active {
	height: 100%;
	margin-top: 12px;
}

.video-embed .title {
	font: normal var(--f-black) 2.63rem / 1.1 var(--font-sans);
	color: var(--heading-color);
	max-width: 400px;
	margin-top: 30px;
}

.video-embed .video_with_description .title {
	font: normal var(--f-bold) 3.88rem / 1.1 var(--font-sans);
	letter-spacing: -0.62px;
	max-width: 100%;
	margin-top: 0;
}

.video-embed .content p {
	font: normal var(--f-medium) 1.75rem/ 1.3 var(--font-sans);
	color: var(--content-color);
	letter-spacing: -0.42px;
	margin-bottom: 15px;
}

.video-embed .video_with_description .content *:last-child {
	margin-bottom: 0;
}

.video-embed .attribution .line1 {
	font: normal var(--f-semibold) .88rem /1.2 var(--font-sans);
	color: var(--content-color);
	margin: 0 0 5px;
}

.video-embed .attribution .line2 {
	font: normal var(--f-medium) .81rem /1.2 var(--font-sans);
	color: var(--content-color);
	margin: 0;
}

@media screen and (max-width: 1024px) {
	.video-embed .title {
		font: normal var(--f-bold) 2.38rem / 1.1 var(--font-sans);
	}

	.video-embed .content {
		font: normal var(--f-medium) 1.38rem / 1.3 var(--font-sans)
	}

	.video-embed .video_with_description .title {
		font: normal var(--f-bold) 3.25rem / 1.1 var(--font-sans);
	}
	
	.video-embed .content p {
		font: normal var(--f-medium) 1.38rem/ 1.3 var(--font-sans);
	}

}

@media screen and (max-width: 991px) {

	.video-embed .col-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.video-embed .col-wrapper.col-reverse {
		flex-direction: column;
	}

	.video-embed .container {
		padding: 50px 0;
	}

	.video-embed .acc-transcript {
		padding: 20px 0;
	}
}

@media screen and (max-width: 767px) {
	.video-embed .container {
		padding: 40px 0;
	}

	.video-embed .col-wrapper .col {
		width: 100%;
	}

	.video-embed .title {
		font: normal var(--f-bold) 2rem / 1.2 var(--font-sans);
	}

	.video-embed .content {
		font: normal var(--f-medium) 1.13rem / 1.3 var(--font-sans)
	}

	.video-embed .video_with_description .title {
		font: normal var(--f-bold) 2.63rem / 1.3 var(--font-sans);
	}
}