.cpm-svh {
	background: #ffffff;
	overflow: hidden;
	width: 100%;
}

.cpm-svh__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	padding-top: 30px;
	padding-bottom: 40px;
	padding-left: 0 !important;
	padding-right: 40px !important;
	max-width: 100% !important;
	min-height: clamp(420px, 60vh, 700px);
}

/* ── Label ──────────────────────────────────────────────── */

.cpm-svh__label {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: rgb(128, 128, 128);
	margin: 0 0 .75rem;
	text-transform: uppercase;
	letter-spacing: .03em;
}

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

.cpm-svh__content {
	padding-left: clamp(20px, 3vw, 50px);
	padding-right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cpm-svh__heading {
	font-family: 'Montserrat', sans-serif;
	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.5rem;
	display: flex;
	flex-direction: column;
	width: 100%;
}

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

.cpm-svh__heading-line--red {
	display: block;
	color: var(--cpm-color-red);
	font-weight: 900;
}

/* ── Phone button ───────────────────────────────────────── */

.cpm-svh__phone-btn {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background: rgb(108, 108, 108);
	color: #ffffff;
	border-radius: 10px;
	padding: .7rem 1.75rem;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	margin-bottom: 1.75rem;
	align-self: flex-start;
	width: fit-content;
}

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

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

.cpm-svh__phone-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	color: #ffffff;
}

.cpm-svh__phone-btn-inner {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	font-size: 0;
	overflow: hidden;
	height: 20px;
	white-space: nowrap;
}

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

.cpm-svh__phone-btn-inner::before {
	transform: translateX(0);
}

.cpm-svh__phone-btn-inner::after {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-100%);
}

.cpm-svh__phone-btn:hover .cpm-svh__phone-btn-inner::before {
	transform: translateX(100%);
}

.cpm-svh__phone-btn:hover .cpm-svh__phone-btn-inner::after {
	transform: translateX(0);
}

/* ── Badges ─────────────────────────────────────────────── */

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

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

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

.cpm-svh__media {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	min-height: 400px;
	height: 100%;
}

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

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

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

	.cpm-svh__content {
		padding-inline: 0;
		align-items: center;
		text-align: center;
	}

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

	.cpm-svh__phone-btn {
		align-self: center;
	}

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

	/* Media goes below content (like homepage hero) */
	.cpm-svh__media {
		order: 1;
		min-height: unset;
		height: auto;
		aspect-ratio: 4 / 3;
	}
}
