.vs-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.vs-carousel * {
	box-sizing: border-box;
}

.vs-track-wrap {
	overflow: hidden;
	flex: 1 1 auto;
	width: 100%;
}

.vs-track {
	display: flex;
	will-change: transform;
	transition: transform 0.4s ease;
}

.vs-slide {
	flex: 0 0 auto;
	padding: 0 3px;
}

.vs-media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
	border-radius: 2px;
}

.vs-thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vs-thumb:focus-visible {
	outline: 3px solid #1e90ff;
	outline-offset: -3px;
}

.vs-play-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
	transition: transform 0.2s ease;
}

.vs-thumb:hover .vs-play-btn {
	transform: scale(1.08);
}

.vs-media iframe,
.vs-media video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.vs-caption {
	margin: 6px 2px 0;
	font-size: 14px;
	line-height: 1.3;
	color: #333;
}

.vs-nav {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 0;
	background: #e8e8e8;
	color: #555;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: none;
	transition: background 0.2s ease, transform 0.15s ease;
	z-index: 2;
	padding: 0;
}

.vs-nav:hover {
	background: #dcdcdc;
}

.vs-nav:active {
	transform: scale(0.94);
}

.vs-nav[disabled] {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

@media (max-width: 767px) {
	.vs-slide {
		padding: 0 3px;
	}
	.vs-nav {
		width: 26px;
		height: 26px;
	}
}
