/* ── STUB hero baseline — templates 4/5/6 ONLY ────────────────────────────────
 * 2026-07-27 (owner ask: 6 homepage templates + video hero). Minimal, SAFE
 * defaults so the hero-4/5/6 STUB heroes render cleanly BEFORE any design work
 * (working screenshots today). This file is enqueued by front-page-cl.php ONLY
 * when homepage.template is 4, 5 or 6 — templates 1/2/3 never load it, so the
 * frozen Template 1 output is untouched.
 *
 * Each design agent OWNS its template: put the REAL styles in cl-home.css scoped
 * under the body class (.cl-home--t4 / .cl-home--t5 / .cl-home--t6). These
 * generic .cl-hero-4/5/6 rules are only the fallback and may be deleted once a
 * design lands. See HOMEPAGE-TEMPLATES.md. */
.cl-hero-4, .cl-hero-5, .cl-hero-6 {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	display: flex;
	align-items: center;
	background-color: #0d1b2a;
	background-size: cover;
	background-position: center;
	padding: 88px 24px;
}
.cl-hero-4--no-img, .cl-hero-5--no-img, .cl-hero-6--no-img {
	background-image: linear-gradient(135deg, #0d1b2a 0%, #24364c 60%, rgba(var(--cl-red-rgb, 221, 0, 0), .55) 140%);
}
.cl-hero-6__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.cl-hero-4__overlay, .cl-hero-5__overlay, .cl-hero-6__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(13, 27, 42, .58) 0%, rgba(13, 27, 42, .38) 55%, rgba(13, 27, 42, .62) 100%);
}
.cl-hero-4__inner, .cl-hero-5__inner, .cl-hero-6__inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}
.cl-hero-4__eyebrow, .cl-hero-5__eyebrow, .cl-hero-6__eyebrow {
	display: inline-block;
	font: 700 12.5px/1 var(--cl-font, 'Montserrat', sans-serif);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(var(--cl-red-rgb, 221, 0, 0), .85);
	padding: 9px 15px;
	border-radius: 999px;
	margin-bottom: 24px;
}
.cl-hero-4__title, .cl-hero-5__title, .cl-hero-6__title {
	font-family: var(--cl-font, 'Montserrat', sans-serif) !important;
	font-weight: 700;
	font-size: clamp(38px, 5.6vw, 66px);
	line-height: 1.03;
	letter-spacing: -.015em;
	color: #fff;
	margin: 0 0 18px;
	text-shadow: 0 3px 18px rgba(13, 27, 42, .45);
	text-transform: none;
}
.cl-hero-4__sub, .cl-hero-5__sub, .cl-hero-6__sub {
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.6;
	color: rgba(255, 255, 255, .92);
	margin: 0 auto 32px;
	max-width: 640px;
	text-shadow: 0 2px 10px rgba(13, 27, 42, .4);
}
.cl-hero-4__cta, .cl-hero-5__cta, .cl-hero-6__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.cl-hero-4__btn, .cl-hero-5__btn, .cl-hero-6__btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font: 700 17px/1 var(--cl-font, 'Montserrat', sans-serif);
	padding: 18px 38px;
	border-radius: 12px;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.cl-hero-4__btn--primary, .cl-hero-5__btn--primary, .cl-hero-6__btn--primary {
	background: var(--cl-red, #DD0000);
	color: #fff;
	box-shadow: 0 14px 30px rgba(13, 27, 42, .4);
}
.cl-hero-4__btn--primary:hover, .cl-hero-5__btn--primary:hover, .cl-hero-6__btn--primary:hover {
	background: var(--cl-red-dark, var(--cl-red-hover, #bb0000));
	transform: translateY(-2px);
	color: #fff;
}
.cl-hero-4__btn--ghost, .cl-hero-5__btn--ghost, .cl-hero-6__btn--ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .65);
}
.cl-hero-4__btn--ghost:hover, .cl-hero-5__btn--ghost:hover, .cl-hero-6__btn--ghost:hover {
	background: rgba(255, 255, 255, .22);
	color: #fff;
}
