.video-embed {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
}

.video-embed iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.spotify-embed {
	width: 100%;
}
.vcs-youtube-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000;
	cursor: pointer;
	overflow: hidden;
}

.vcs-youtube-embed:not(:first-child) {
	margin-top: 1rem;
}

.vcs-youtube-embed img.custom-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vcs-youtube-embed .custom-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.vcs-youtube-embed.show-overlay .custom-overlay {
	opacity: 1;
	pointer-events: auto;
}

.vcs-youtube-embed .play-button {
	width: 68px;
	height: 48px;
	background: url('https://img.icons8.com/ios-filled/100/ffffff/play-button-circled.png') no-repeat center;
	background-size: contain;
	pointer-events: none;
}