.cpm-cc {
	background: #ffffff;
	padding-top: 20px;
	padding-bottom: 30px;
}

.cpm-cc__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
}

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

.cpm-cc__heading {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	margin: 0;
	width: 100%;
}

.cpm-cc__heading-dark {
	display: block;
	font-weight: 600;
	font-style: normal;
	font-size: 40px;
	line-height: 44px;
	color: rgb(30, 30, 30);
}

.cpm-cc__heading-red {
	display: block;
	font-weight: 900;
	font-style: normal;
	font-size: 40px;
	line-height: 44px;
	color: rgb(255, 0, 0);
}

/* ── Content (wysiwyg) ───────────────────────────────────── */

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

.cpm-cc__content p {
	margin: 0 0 1rem;
}

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

.cpm-cc__content ul,
.cpm-cc__content ol {
	padding-left: 1.5rem;
	margin: .5rem 0 1rem;
}

.cpm-cc__content li {
	margin-bottom: .5rem;
}

.cpm-cc__content strong {
	font-weight: 700;
	color: rgb(30, 30, 30);
}

.cpm-cc__content a {
	color: var(--cpm-color-red);
	text-decoration: none;
}

/* ── Button (gray slide-right, centered) ─────────────────── */

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

.cpm-cc__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-cc__btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(30, 30, 30);
	transform: translateX(-100%);
	transition: transform 0.35s ease;
	z-index: 0;
}

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

.cpm-cc__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-cc__btn-inner::before,
.cpm-cc__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-cc__btn-inner::before {
	transform: translateX(0);
}

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

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

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

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

@media (max-width: 768px) {
	.cpm-cc .cpm-container {
		padding-left: 20px !important;
		padding-right: 20px !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.cpm-cc__heading-dark,
	.cpm-cc__heading-red {
		font-size: 21px;
		line-height: 27px;
	}


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

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