.dcs-carousel {
	position: relative;
	margin: 0 auto;
	padding: 0px 0 0px;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}

.dcs-track {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
}

/* Used momentarily during the invisible loop-jump (clone -> real slide) to
   stop the slide's own opacity/scale transition from animating alongside
   the position snap — without this, jumping back to slide 1 visibly
   "pops" as it fades/scales in. */
.dcs-carousel.dcs-jumping .dcs-track,
.dcs-carousel.dcs-jumping .dcs-slide {
	transition: none !important;
}

.dcs-slide {
	flex: 0 0 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0 12px;
	opacity: 0.35;
	transform: scale(0.92);
	border-radius: 20px;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.dcs-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.dcs-slide-clone {
	pointer-events: none;
}

.dcs-slide-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-radius: 20px;
	padding: 40px;
	min-height: 360px;
	overflow: hidden;
}

.dcs-slide-content {
	flex: 1 1 45%;
	min-width: 260px;
}

.dcs-badge-tag {
	display: inline-block;
	background: rgba(255, 255, 255, 0.18);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 18px;
}

.dcs-headline {
	font-size: 24px;
	line-height: 1.4;
	font-weight: 700;
	margin: 0 0 22px;
}

.dcs-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #1a1a2e;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	margin-bottom: 30px;
}

.dcs-cta-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: currentColor;
	color: #fff;
	font-size: 12px;
}

.dcs-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dcs-stat-box {
	background: rgba(255, 255, 255, 0.95);
	color: #1a1a2e;
	border-radius: 14px;
	padding: 16px 18px;
	min-width: 110px;
	flex: 1 1 100px;
}

.dcs-stat-number {
	display: block;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 4px;
}

.dcs-stat-label {
	display: block;
	font-size: 12px;
	line-height: 1.3;
	opacity: 0.75;
}

.dcs-slide-image {
	flex: 1 1 45%;
	min-width: 220px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dcs-slide-image img {
	max-width: 100%;
	height: auto;
	display: block;
}

.dcs-nav {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 24px;
}

.dcs-nav-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #1a1a2e;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.dcs-nav-btn:hover {
	transform: scale(1.08);
}

/* Desktop: show side peeks of adjacent slides */
@media ( min-width: 900px ) {
	.dcs-slide {
		flex: 0 0 76%;
		max-width: 76%;
	}
}

@media ( max-width: 600px ) {
	.dcs-slide-inner {
		flex-direction: column;
		padding: 22px 20px;
		min-height: auto;
	}
	.dcs-badge-tag {
		margin-bottom: 12px;
	}
	.dcs-headline {
		font-size: 17px;
		line-height: 1.35;
		margin: 0 0 14px;
	}
	.dcs-cta-btn {
		padding: 9px 18px;
		margin-bottom: 18px;
	}
	.dcs-stats {
		gap: 8px;
	}
	.dcs-stat-box {
		padding: 12px 14px;
	}
	.dcs-stat-number {
		font-size: 18px;
		margin-bottom: 2px;
	}
	.dcs-stat-label {
		font-size: 11px;
	}
	.dcs-slide-image {
		/* .dcs-slide-inner uses align-items:center, which in this column
		   layout leaves flex children at their own intrinsic width instead
		   of filling the row -- without this the image fell back to its
		   desktop min-width (220px) and sat centered with dead space on
		   both sides instead of matching the content's width. */
		align-self: stretch;
		width: 100%;
		min-width: 0;
		margin-top: 14px;
	}
	.dcs-slide-image img {
		max-height: 170px;
		width: 100%;
		object-fit: cover;
		border-radius: 12px;
	}
}
