.bc-video {
	position: relative;
	aspect-ratio: 16 / 9;
	cursor: pointer;
	overflow: hidden;
	width: 100%;
}

.bc-video iframe {
	width: 100%;
	height: 100%;
	border: none;
	pointer-events: none;
}

.bc-overlay {
	position: absolute;
	inset: 0;
	z-index: 5;
}

.bc-video--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0b1f33;
	color: #fff;
	font-size: 14px;
	cursor: default;
}

#bc-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

#bc-lightbox.active {
	display: flex;
}

.bc-content {
	width: 60vw;
	min-width: 360px;
	aspect-ratio: 16 / 9;
	background: black;
	position: relative;
	z-index: 2;
}

.bc-content iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.bc-close {
	position: absolute;
	top: -80px;
	right: 0;
	font-size: 64px;
	color: white;
	cursor: pointer;
	line-height: 1;
}

html.bc-lightbox-open,
html.bc-lightbox-open body {
	overflow: hidden;
}

@media (max-width: 782px) {
	.bc-content {
		width: 92vw;
		min-width: 0;
	}

	.bc-close {
		top: -48px;
		font-size: 40px;
	}
}
