.cpm-dd {
	background: #ffffff;
	width: 100vw;
	position: relative;
	left: 50%;
	margin-left: -50vw;
	padding-top: clamp(12px, 1.5vw, 24px);
	padding-bottom: var(--cpm-section-gap);
}

.cpm-dd__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 4vw, 64px);
	align-items: center;
	max-width: 100% !important;
	padding-inline: 130px !important;
	margin-inline: auto;
}

/* ── Left: image + stats ──────────────────────────────────── */
.cpm-dd__media {
	position: relative;
}

.cpm-dd__img {
	width: 100%;
	height: clamp(380px, 50vw, 580px);
	object-fit: cover;
	border-radius: 18px;
	display: block;
}

/* Stat badge shared */
.cpm-dd__stat {
	position: absolute;
	display: flex;
	align-items: center;
	gap: .75rem;
	background: #ffffff;
	border-radius: 12px;
	padding: .75rem 1.25rem;
}

.cpm-dd__stat--top {
	top: 0;
	right: 0;
	border-radius: 0 18px 0 12px;
}

.cpm-dd__stat--bottom {
	bottom: 0;
	left: 0;
	border-radius: 0 12px 0 18px;
}

.cpm-dd__stat-icon {
	width: 44px;
	height: 44px;
	object-fit: contain;
	flex-shrink: 0;
}

.cpm-dd__stat-body {
	display: flex;
	flex-direction: column;
	gap: .15rem;
}

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

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

/* ── Right: content ───────────────────────────────────────── */
.cpm-dd__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.cpm-dd__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: 700;
	font-size: 16px;
	line-height: 19px;
	padding: .45rem 1rem;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.cpm-dd__heading {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	text-transform: uppercase;
}

.cpm-dd__heading-dark {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 40px;
	line-height: 44px;
	color: rgb(30, 30, 30);
}

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

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

.cpm-dd__body p {
	margin: 0 0 1em;
}

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

.cpm-dd__author {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	margin-top: .5rem;
}

.cpm-dd__author-name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: rgb(30, 30, 30);
}

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

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
	.cpm-dd {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.cpm-dd__inner {
		grid-template-columns: 1fr;
		padding-inline: 20px !important;
		max-width: 100% !important;
		gap: 1.5rem;
	}

	.cpm-dd__img {
		height: clamp(280px, 65vw, 420px);
	}

	.cpm-dd__stat {
		padding: .5rem .875rem;
		gap: .5rem;
	}

	.cpm-dd__stat-number {
		font-size: 22px;
		line-height: 26px;
	}

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

	.cpm-dd__stat-icon {
		width: 32px;
		height: 32px;
	}

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

	.cpm-dd__body {
		font-size: 17px;
		line-height: 21px;
	}

	.cpm-dd__author-name,
	.cpm-dd__author-title {
		font-size: 14px;
	}
}
