/* ── VXD Button Carousel ──────────────────────────────────────── */

.vxd-button-carousel-wrapper {
	position: relative;

}

.vxd-button-carousel {
	position: relative;
	overflow: visible;
}

.vxd-button-carousel .swiper-wrapper {
	overflow: visible;
}

/* Edge fade masks — pointer-events: none so clicks pass through */
.vxd-button-carousel::before,
.vxd-button-carousel::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 25%;
	z-index: 2;
	pointer-events: none;
}

.vxd-button-carousel::before {
	left: 0;
	background: linear-gradient(to right, #FAFAFD 0%, transparent 100%);
}

.vxd-button-carousel::after {
	right: 0;
	background: linear-gradient(to left, #FAFAFD 0%, transparent 100%);
}

.vxd-button-carousel .swiper-slide {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	padding-top: 2px;
}

.vxd-carousel-above-text {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 24px;
	font-size: 16px;
	color: #1a1a1a;
	pointer-events: none;
}

.vxd-carousel-btn {
	display: inline-block;
	background-color: #4A6CF7;
	color: #ffffff;
	padding: 12px 32px;
	min-width: 200px;
	text-align: center;
	border-radius: 9999px;
	text-decoration: none;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
	cursor: pointer;
}

.vxd-carousel-btn:hover {
	background-color: #2d4fd4;
	color: #ffffff;
	transform: translateY(-1px);
	text-decoration: none;
}

/* Arrows */
.vxd-button-carousel-wrapper .swiper-button-prev,
.vxd-button-carousel-wrapper .swiper-button-next {
	width: 32px;
	height: 32px;
	background-color: #4A6CF7;
	border-radius: 50%;
	color: #fff;
	top: 50%;
	transform: translateY(-50%);
}

.vxd-button-carousel-wrapper .swiper-button-prev {
	left: 0;
}

.vxd-button-carousel-wrapper .swiper-button-next {
	right: 0;
}

.vxd-button-carousel-wrapper .swiper-button-prev::after,
.vxd-button-carousel-wrapper .swiper-button-next::after {
	font-size: 13px;
	font-weight: 700;
}

.vxd-button-carousel-wrapper .swiper-button-prev:hover,
.vxd-button-carousel-wrapper .swiper-button-next:hover {
	background-color: #2d4fd4;
}
