.cpm-ctab {
	background: transparent;
	padding-top: 0;
	padding-bottom: var(--cpm-section-gap);
}

.cpm-ctab__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	background: transparent;
	border: 1px solid var(--cpm-color-border);
	border-radius: 18px;
	padding: 1.5rem 2.5rem;
	box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
	max-width: 680px;
}

.cpm-ctab__text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 36px;
	color: rgb(128, 128, 128);
	margin: 0;
	flex: 1;
}

.cpm-ctab__highlight {
	color: rgb(255, 0, 0);
	font-weight: 700;
}

/* ── Button ───────────────────────────────────────────────── */
.cpm-ctab__btn {
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	background: rgb(108, 108, 108);
	border-radius: 10px;
	padding: .85rem 2.5rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	min-width: 180px;
	justify-content: center;
}

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

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

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

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

.cpm-ctab__btn span::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateX(-100%);
}

.cpm-ctab__btn:hover span::before {
	transform: translateX(100%);
}

.cpm-ctab__btn:hover span::after {
	transform: translateX(0);
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
	.cpm-ctab {
		padding-left: 20px;
		padding-right: 20px;
	}

	.cpm-ctab__inner {
		flex-direction: column;
		text-align: center;
		padding: 1.25rem;
		max-width: 320px;
		margin-inline: auto;
	}

	.cpm-ctab__text {
		font-size: 22px;
		line-height: 28px;
	}

	.cpm-ctab__btn {
		width: 100%;
	}
}
