.cpm-sa {
	background-color: #1E1E1E;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.cpm-sa__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 220px)) auto;
	gap: clamp(12px, 1.5vw, 18px);
	align-items: center;
	height: 500px;
	padding-left: clamp(20px, 5vw, 100px);
	/* no padding-right — achievement panel bleeds to edge */
}

/* ── Stat card ────────────────────────────────────────────── */
.cpm-sa__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .6rem;
	background: #ffffff;
	border: 2px dashed rgb(30, 30, 30);
	border-radius: 18px;
	padding: 1.25rem 1rem;
	height: 180px;
	align-self: center;
}

.cpm-sa__card-icon {
	width: auto;
	height: 44px;
	object-fit: contain;
}

.cpm-sa__card-number {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
	line-height: 36px;
	color: rgb(30, 30, 30);
}

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

/* ── Achievement panel ────────────────────────────────────── */
.cpm-sa__achievement {
	background: #ffffff;
	/* right side bleeds to section edge — remove right radii */
	border-radius: 18px 0 0 18px;
	padding: clamp(1.5rem, 3vw, 2.5rem) 30px clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	height: 300px;
	align-self: center;
}

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

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

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

.cpm-sa__heading-black {
	display: inline;
	font-weight: 600;
	color: rgb(30, 30, 30);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
	.cpm-sa__inner {
		grid-template-columns: repeat(3, 1fr);
		padding-right: clamp(20px, 5vw, 100px);
	}

	.cpm-sa__achievement {
		grid-column: 1 / -1;
		border-radius: 18px;
		padding-right: clamp(1.25rem, 2.5vw, 2rem);
	}
}

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

	/* Blurred bg image via pseudo-element */
	.cpm-sa::before {
		content: '';
		position: absolute;
		inset: 0;
		background: inherit;
		filter: blur(4px);
		transform: scale(1.05);
		z-index: 0;
	}

	.cpm-sa__inner {
		position: relative;
		z-index: 1;
		grid-template-columns: 1fr;
		height: auto;
		padding: 20px 40px !important;
		gap: 12px;
		align-items: start;
	}

	/* Achievement panel — full width on top, centered */
	.cpm-sa__achievement {
		grid-column: 1;
		order: -1;
		border-radius: 18px;
		height: auto;
		padding: 1rem 1.25rem;
		align-items: center;
		text-align: center;
	}

	.cpm-sa__badge {
		align-self: center;
		font-size: 13px;
	}

	/* 3 stat cards — stacked below */
	.cpm-sa__card {
		grid-column: 1;
		height: auto;
		min-height: 110px;
		padding: .75rem .5rem;
	}

	.cpm-sa__card-number {
		font-size: 20px;
		line-height: 24px;
	}

	.cpm-sa__card-label {
		font-size: 11px;
		line-height: 15px;
	}

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