.cpm-pg {
	padding-block: var(--cpm-section-gap);
	margin-top: -40px;
	background: #1E1E1E;
}

/* Header */
.cpm-pg__header {
	text-align: center;
	margin-bottom: clamp(32px, 4vw, 56px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

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

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

.cpm-pg__heading-line {
	display: inline;
	font-weight: 600;
	color: rgb(255, 255, 255);
}

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

/* Grid — 2-column on desktop */
.cpm-pg__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(16px, 2vw, 28px);
	padding-inline: 100px;
}

/* Card — horizontal: image left, body right */
.cpm-pg__card {
	background: transparent;
	border-radius: 0;
	overflow: visible;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.25rem;
}

/* Image */
.cpm-pg__image-wrap {
	position: relative;
	flex: 0 0 clamp(190px, 34%, 270px);
	overflow: hidden;
	border-radius: 12px;
}

.cpm-pg__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

.cpm-pg__image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 180px;
	background: #e2e2e2;
}

/* Step number — behind title */
.cpm-pg__title {
	position: relative;
}

.cpm-pg__num {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-family: 'Montserrat', sans-serif;
	font-size: 80px;
	font-weight: 900;
	line-height: 1;
	color: rgba(255, 255, 255, 0.06);
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

/* Body */
.cpm-pg__body {
	padding: 1.25rem 1.25rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .5rem;
	flex: 1;
}

.cpm-pg__title {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	font-style: normal;
	line-height: 30px;
	color: rgb(255, 255, 255);
	margin: 0;
	padding-left: 0;
	z-index: 1;
}

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

/* Responsive */
@media (max-width: 1100px) {
	.cpm-pg__grid {
		padding-inline: 60px;
	}
}

@media (max-width: 834px) {
	.cpm-pg__grid {
		grid-template-columns: 1fr;
		padding-inline: 24px;
	}
}

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

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

	.cpm-pg__header {
		margin-bottom: 1rem;
	}

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

	.cpm-pg__card {
		flex-direction: column;
		align-items: flex-start;
		gap: .75rem;
	}

	.cpm-pg__image-wrap {
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.cpm-pg__body {
		gap: .25rem;
		padding: .25rem 0;
	}

	.cpm-pg__title {
		font-size: 15px;
		line-height: 20px;
	}

	.cpm-pg__desc {
		font-size: 13px;
		line-height: 17px;
	}
}
