.cpm-hero {
	background: #ffffff;
	overflow: hidden;
}

.cpm-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	padding-block: var(--cpm-section-gap);
	min-height: clamp(420px, 60vh, 700px);
}

/* ─── Left: content ──────────────────────────────────────────────────────── */

.cpm-hero__heading {
	font-size: clamp(1.75rem, 4.5vw, 3.25rem);
	font-weight: 900;
	line-height: 1.1;
	color: var(--cpm-color-dark);
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	display: flex;
	flex-direction: column;
}

.cpm-hero__heading-line {
	display: block;
	font-weight: 600;
}

.cpm-hero__heading-line--row {
	display: block;
}

.cpm-hero__heading-line--highlight {
	display: inline;
	color: var(--cpm-color-red);
	font-weight: 900;
}

.cpm-hero__heading-line--plain {
	display: inline;
	font-weight: 600;
}

.cpm-hero__paragraph {
	font-size: clamp(.9375rem, 1.25vw, 1.125rem);
	color: var(--cpm-color-gray);
	line-height: 1.65;
	margin-bottom: 1.75rem;
	max-width: 520px;
}

.cpm-hero__paragraph p {
	margin: 0 0 .75em;
}

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

.cpm-hero__badges {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.cpm-hero__badge {
	height: clamp(64px, 9vw, 100px);
	width: auto;
}

/* ─── Right: media ───────────────────────────────────────────────────────── */

.cpm-hero__media {
	position: relative;
	border-radius: var(--cpm-radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.cpm-hero__video,
.cpm-hero__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

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

@media (max-width: 768px) {
	.cpm-hero__inner {
		grid-template-columns: 1fr;
		min-height: unset;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
		padding-right: 20px;
		gap: 1.25rem;
	}

	.cpm-hero__heading {
		text-align: center;
		font-size: 2.1rem;
	}

	.cpm-hero__paragraph {
		text-align: center;
		max-width: 100%;
	}

	.cpm-hero__badges {
		justify-content: center;
	}

	.cpm-hero__media {
		order: 1;
		aspect-ratio: 4 / 3;
	}
}
