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

.cpm-sc .cpm-container {
	padding-inline: clamp(40px, 6vw, 120px) !important;
	max-width: 100% !important;
}

.cpm-sc__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.25rem;
	border: 2px dashed rgb(150, 150, 150);
	border-radius: 15px;
	padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 4rem);
}

/* ── Badge ───────────────────────────────────────────────── */

.cpm-sc__badge {
	display: inline-block;
	background: rgb(108, 108, 108);
	color: rgb(241, 241, 241);
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	padding: .45rem 1.25rem;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

/* ── Heading ─────────────────────────────────────────────── */

.cpm-sc__heading {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	margin: 0;
	font-size: 40px;
	line-height: 44px;
}

.cpm-sc__heading-dark {
	display: inline;
	font-weight: 600;
	font-style: normal;
	color: rgb(30, 30, 30);
}

.cpm-sc__heading-red {
	display: inline;
	font-weight: 900;
	font-style: normal;
	color: rgb(255, 0, 0);
}

/* ── Content ─────────────────────────────────────────────── */

.cpm-sc__heading {
	width: 100%;
}

.cpm-sc__content {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: rgb(30, 30, 30);
	width: 100%;
	max-width: 100%;
}

.cpm-sc__content p {
	margin: 0 0 .75em;
}

.cpm-sc__content p:last-child {
	margin-bottom: 0;
}

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

.cpm-sc__btn-wrap {
	display: flex;
	justify-content: center;
}

.cpm-sc__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgb(108, 108, 108);
	color: #ffffff;
	border-radius: 10px;
	padding: .85rem 3rem;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	min-width: 220px;
}

.cpm-sc__btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(30, 30, 30);
	transform: translateX(-100%);
	transition: transform 0.35s ease;
	z-index: 0;
}

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

.cpm-sc__btn-inner {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 0;
	overflow: hidden;
	height: 20px;
	white-space: nowrap;
}

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

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

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

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

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

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
	.cpm-sc {
		padding-top: 20px;
		padding-bottom: 20px;
	}

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

	.cpm-sc__box {
		padding: 1.25rem 1rem;
		gap: 1rem;
	}

	.cpm-sc__heading {
		font-size: 21px;
		line-height: 27px;
	}

	.cpm-sc__btn-wrap {
		width: 100%;
	}

	.cpm-sc__btn {
		width: 100%;
		min-width: unset;
	}
}
