.cpm-wcu {
	padding-block: var(--cpm-section-gap);
	background: #F9F9F9;
}

/* ── Button ───────────────────────────────────────────────── */

.cpm-wcu__btn-wrap {
	display: flex;
	justify-content: center;
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cpm-wcu__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cpm-color-red);
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding: .875rem 2.5rem;
	border-radius: var(--cpm-radius-md);
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.cpm-wcu__btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #cc0000;
	transform: translateX(-100%);
	transition: transform 0.35s ease;
	z-index: 0;
}

.cpm-wcu__btn:hover::before {
	transform: translateX(0);
}

.cpm-wcu__btn-inner {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 0;
	overflow: hidden;
	height: 20px;
	white-space: nowrap;
}

.cpm-wcu__btn-inner::before,
.cpm-wcu__btn-inner::after {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: #ffffff;
	transition: transform 0.35s ease;
	white-space: nowrap;
	content: attr(data-text);
}

.cpm-wcu__btn-inner::before {
	transform: translateX(0);
}

.cpm-wcu__btn-inner::after {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-100%);
}

.cpm-wcu__btn:hover .cpm-wcu__btn-inner::before {
	transform: translateX(100%);
}

.cpm-wcu__btn:hover .cpm-wcu__btn-inner::after {
	transform: translateX(0);
}

/* ── Header ───────────────────────────────────────────────── */
.cpm-wcu__header {
	text-align: center;
	margin-bottom: clamp(32px, 5vw, 56px);
}

.cpm-wcu__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 600;
	font-style: normal;
	text-transform: uppercase;
	line-height: 44px;
	margin: 0 0 1rem;
}

.cpm-wcu__heading-line {
	display: block;
	font-weight: 600;
	color: rgb(30, 30, 30);
}

.cpm-wcu__heading-line--red {
	font-weight: 900;
	color: rgb(255, 0, 0);
}

.cpm-wcu__lead {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 400;
	font-style: normal;
	line-height: 31px;
	color: rgb(30, 30, 30);
	max-width: 100%;
	margin-inline: 0;
}

/* ── Slider ───────────────────────────────────────────────── */
.cpm-wcu__slider-outer {
	overflow: hidden;
}

.cpm-wcu__swiper {
	overflow: visible;
	height: auto !important;
}

.cpm-wcu__swiper .swiper-wrapper {
	align-items: stretch;
	height: auto !important;
}

.cpm-wcu__swiper .swiper-slide {
	height: auto !important;
	display: flex;
}

.cpm-wcu__swiper .swiper-slide > .cpm-wcu__card {
	flex: 1;
	height: auto;
}

.cpm-wcu__card {
	border: 2px dashed rgb(30, 30, 30);
	border-radius: 18px;
	padding: clamp(20px, 3vw, 36px);
	height: 100%;
	background: var(--cpm-color-white);
}

.cpm-wcu__card-icon {
	margin-bottom: 1rem;
}

.cpm-wcu__icon {
	width: 40px;
	height: 40px;
	color: var(--cpm-color-dark);
}

.cpm-wcu__card-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	font-style: normal;
	line-height: 30px;
	color: rgb(30, 30, 30);
	margin: 0 0 0.625rem;
}

.cpm-wcu__card-desc {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 19px;
	color: rgb(30, 30, 30);
	margin: 0;
}

/* ── Navigation row: [prev] [dots] [next] ─────────────────── */
.cpm-wcu__nav-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.cpm-wcu__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--cpm-color-dark);
	color: var(--cpm-color-white);
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	transition: background var(--cpm-transition);
}

.cpm-wcu__nav-btn:hover,
.cpm-wcu__nav-btn:focus-visible {
	background: var(--cpm-color-red);
	outline: none;
}

.cpm-wcu__nav-btn svg {
	display: block;
	flex-shrink: 0;
}

/* Swiper pagination — override position:absolute to flow in flex row */
.cpm-wcu__pagination {
	position: static !important;
	width: auto !important;
	bottom: auto !important;
	display: flex;
	gap: 6px;
	align-items: center;
}

.cpm-wcu__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--cpm-color-border);
	opacity: 1;
	border-radius: 50%;
	margin: 0 !important;
	transition: background var(--cpm-transition);
}

.cpm-wcu__pagination .swiper-pagination-bullet-active {
	background: var(--cpm-color-dark);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
	.cpm-wcu {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.cpm-wcu .cpm-container {
		padding-left: 20px !important;
		padding-right: 20px !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.cpm-wcu__header {
		margin-bottom: 1.25rem;
	}

	.cpm-wcu__heading {
		font-size: 20px;
		line-height: 26px;
	}

	.cpm-wcu__lead {
		font-size: 18px;
		line-height: 26px;
	}

	.cpm-wcu__card {
		padding: 16px;
	}

	.cpm-wcu__card-title {
		font-size: 16px;
		line-height: 22px;
	}

	.cpm-wcu__card-desc {
		font-size: 13px;
		line-height: 18px;
	}

	.cpm-wcu__icon {
		width: 32px;
		height: 32px;
	}
}
