.bh-vc-carousel {
	width: 100%;
	max-width: 100%;
}
.bh-vc-track {
	width: 100%;
}
.bh-vc-slide {
	display: none;
}
.bh-vc-slide.is-active {
	display: block;
}
.bh-vc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.bh-vc-item {
	display: flex;
	flex-direction: column;
}
.bh-vc-video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 9/16;
	overflow: hidden;
	border-radius: 12px;
}
.bh-vc-video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.bh-vc-caption {
	margin: 10px 0 0;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
}
.bh-vc-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 20px;
}
.bh-vc-nav {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
	font-size: 20px;
	line-height: 1;
	color: #2D3748;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.bh-vc-nav:hover,
.bh-vc-nav:focus-visible {
	background-color: #ff0000;
	color: #ffffff;
	transform: scale(1.06);
}
.bh-vc-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}
.bh-vc-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	background: #d9d9d9;
	padding: 0;
	cursor: pointer;
}
.bh-vc-dot.is-active {
	background: #444444;
}
@media (max-width: 767px) {
	.bh-vc-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
@media (max-width: 480px) {
	.bh-vc-grid {
		grid-template-columns: 1fr;
	}
}