/* ── Container ─────────────────────────────────────────────────────── */
.vca-carousel-container {
	position: relative;
	width: 100%;
}

/* Clip peeking slides on x-axis; allow y overflow for card scale effect */
.vca-swiper-clip {
	overflow: hidden;
	/* Vertical padding so the scaled-up active card shadow/scale isn't clipped */
	padding: 14px 0;
	margin: -14px 0;
}

/* Override Swiper's default overflow:hidden so adjacent cards can peek */
.vca-swiper.swiper {
	overflow: visible !important;
}

/* ── Slide ──────────────────────────────────────────────────────────── */
.vca-slide {
	height: auto;
}

/* ── Card ───────────────────────────────────────────────────────────── */
.vca-card {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	transform: scale(0.9);
	opacity: 0.65;
	transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
	background-color: #000;
	will-change: transform, opacity;
}

.swiper-slide-active .vca-card {
	transform: scale(1);
	opacity: 1;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ── Video wrapper ──────────────────────────────────────────────────── */
.vca-video-wrapper {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #111;
	display: block;
	width: 100%;
}

.vca-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Play button ────────────────────────────────────────────────────── */
.vca-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10;
	transition: transform 0.2s ease, opacity 0.2s ease;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vca-play-btn svg {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}

.vca-play-circle {
	fill: rgba(0, 0, 0, 0.55);
}

.vca-play-icon {
	fill: #fff;
}

.vca-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.12);
}

.vca-play-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.vca-play-btn.is-playing {
	opacity: 0;
	pointer-events: none;
}

/* ── Card info — overlay ────────────────────────────────────────────── */
.vca-card-info--overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
	pointer-events: none;
}

/* ── Card info — below ──────────────────────────────────────────────── */
.vca-card-info--below {
	padding: 12px 16px;
	background: #fff;
}

.vca-card-info--below .vca-title {
	color: #1a1a1a;
}

.vca-card-info--below .vca-caption {
	color: #555;
}

/* ── Title & Caption ────────────────────────────────────────────────── */
.vca-title {
	margin: 0 0 6px;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

.vca-caption {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

/* ── Navigation ─────────────────────────────────────────────────────── */
.vca-btn-next,
.vca-btn-prev {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.45);
	color: #fff;
	transition: background-color 0.2s ease;
}

.vca-btn-next:hover,
.vca-btn-prev:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

.vca-btn-next::after,
.vca-btn-prev::after {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

/* ── Pagination (rendered outside .swiper, in normal flow) ──────────── */
.vca-pagination {
	margin-top: 16px;
	text-align: center;
	position: relative;
}

/* Bullets */
.vca-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.25);
	opacity: 1;
	transition: background 0.2s ease, transform 0.2s ease;
}

.vca-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background: #000;
	transform: scale(1.35);
}

/* Fraction */
.vca-pagination.swiper-pagination-fraction {
	color: #333;
	font-size: 14px;
	font-weight: 600;
}

/* Progress bar */
.vca-pagination.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.1);
	height: 3px;
	position: relative;
	border-radius: 2px;
	margin-top: 14px;
}

.vca-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #000;
	border-radius: 2px;
}
