/**
 * HM v2 — Templates CSS
 *
 * Layout-level styles for full-page templates: home, about, legal,
 * thankyou, contact, team. Atomic component styles live in components.css.
 *
 * Everything scoped under .hm-v2 to ensure zero leak to non-v2 pages.
 */

/* === Skip link === */
.hm-v2 .hm-skip-link {
	position: absolute;
	inset-inline-start: 8px;
	top: -40px;
	background: var(--hm-forest-dark);
	color: #fff;
	padding: 8px 14px;
	border-radius: 6px;
	z-index: 100000;
	text-decoration: none;
	font-weight: 600;
	transition: top 0.15s;
}
.hm-v2 .hm-skip-link:focus { top: 8px; outline: 3px solid var(--hm-action); outline-offset: 2px; }

/* === Main container === */
.hm-v2 .hm-main { min-height: 60vh; }

/* === Hero variants === */
.hm-v2 .hm-hero {
	background: linear-gradient(180deg, #f9faf8 0%, #fff 100%);
	padding: 60px 0 50px;
}
.hm-v2 .hm-hero-compact { padding: 40px 0 28px; }
.hm-v2 .hm-hero-confirm {
	text-align: center;
	padding: 70px 0 50px;
	background: linear-gradient(180deg, var(--hm-mint-soft, #f0fbf5) 0%, #fff 100%);
}

/* === Confirm mark === */
.hm-v2 .hm-confirm-mark {
	width: 80px; height: 80px; line-height: 80px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: var(--hm-mint);
	color: var(--hm-forest-dark);
	font-size: 44px;
	font-weight: 800;
}

/* === Lead text === */
.hm-v2 .hm-lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--hm-slate-soft);
	max-width: 680px;
	margin: 12px 0 0;
}

/* === Meta line === */
.hm-v2 .hm-meta { color: var(--hm-mist); font-size: 13px; margin-top: 8px; }

/* === Headings === */
.hm-v2 .hm-h1 {
	font-size: var(--hm-font-3xl, 36px);
	font-weight: 800;
	line-height: 1.15;
	color: var(--hm-forest-dark);
	letter-spacing: -0.025em;
	margin: 8px 0 0;
}
.hm-v2 .hm-h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--hm-forest-dark);
	margin: 24px 0 12px;
}

/* === Sections === */
.hm-v2 .hm-section { padding: 60px 0; }
.hm-v2 .hm-section-soft { background: #fafbf9; }

/* === Grid utility === */
.hm-v2 .hm-grid { display: grid; gap: 22px; }
.hm-v2 .hm-grid-2 { grid-template-columns: 1fr; }
.hm-v2 .hm-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
	.hm-v2 .hm-grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
	.hm-v2 .hm-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* === Prose (long-form content) === */
.hm-v2 .hm-prose {
	max-width: 720px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--hm-charcoal, #1f2a23);
}
.hm-v2 .hm-prose h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 32px 0 12px;
	color: var(--hm-forest-dark);
}
.hm-v2 .hm-prose h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 24px 0 10px;
	color: var(--hm-forest-dark);
}
.hm-v2 .hm-prose p { margin: 0 0 16px; }
.hm-v2 .hm-prose ul, .hm-v2 .hm-prose ol { margin: 0 0 16px 1.5em; padding: 0; }
.hm-v2 .hm-prose li { margin-bottom: 6px; }
.hm-v2 .hm-prose a { color: var(--hm-forest-dark); text-decoration: underline; }
.hm-v2 .hm-prose a:hover { color: var(--hm-action); }

/* === Prose legal variant === */
.hm-v2 .hm-prose-legal {
	font-size: 15px;
	max-width: 760px;
}
.hm-v2 .hm-prose-legal h2 { font-size: 19px; }
.hm-v2 .hm-prose-legal h3 { font-size: 16px; }

/* === Contact layout === */
.hm-v2 .hm-contact-info,
.hm-v2 .hm-contact-form-wrap {
	background: #fff;
	border: 1px solid var(--hm-border);
	border-radius: 12px;
	padding: 28px;
}
.hm-v2 .hm-contact-notes { margin-top: 24px; }
.hm-v2 .hm-contact-notes p { font-size: 14px; color: var(--hm-slate-soft); }

/* === Team grid === */
.hm-v2 .hm-team-card {
	background: #fff;
	border: 1px solid var(--hm-border);
	border-radius: 12px;
	padding: 22px;
	text-align: center;
}
.hm-v2 .hm-team-photo {
	width: 120px; height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 14px;
	display: block;
}
.hm-v2 .hm-team-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--hm-forest-dark);
	margin: 0 0 4px;
}
.hm-v2 .hm-team-role {
	font-size: 13px;
	color: var(--hm-action);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 10px;
}
.hm-v2 .hm-team-bio {
	font-size: 14px;
	color: var(--hm-slate-soft);
	line-height: 1.55;
}

/* === Muted text === */
.hm-v2 .hm-muted { color: var(--hm-mist); font-size: 14px; }

/* === Wave 3 — Article layout === */

/* Article header */
.hm-v2 .hm-article-header { padding: 36px 0 24px; }
.hm-v2 .hm-article-categories {
	display: flex; flex-wrap: wrap; gap: 8px;
	margin: 16px 0 12px;
}
.hm-v2 .hm-article-category {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--hm-action, #FF9800);
	text-decoration: none;
	padding: 4px 10px;
	border: 1px solid currentColor;
	border-radius: 999px;
	letter-spacing: 0.04em;
}
.hm-v2 .hm-article-category:hover { background: var(--hm-action, #FF9800); color: #fff; }

.hm-v2 .hm-article-title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--hm-forest-dark);
	letter-spacing: -0.025em;
	margin: 0 0 14px;
	max-width: 760px;
}
@media (min-width: 720px) {
	.hm-v2 .hm-article-title { font-size: 44px; }
}

.hm-v2 .hm-article-meta {
	font-size: 14px;
	color: var(--hm-slate-soft);
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.hm-v2 .hm-article-author { font-weight: 600; }
.hm-v2 .hm-meta-sep { color: var(--hm-mist); }

/* Cover image */
.hm-v2 .hm-article-cover {
	margin: 24px 0 36px;
}
.hm-v2 .hm-article-cover img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

/* Article body — wider prose */
.hm-v2 .hm-prose-article {
	max-width: 720px;
	font-size: 17px;
	line-height: 1.75;
}
.hm-v2 .hm-prose-article h2 {
	font-size: 26px;
	margin: 40px 0 14px;
}
.hm-v2 .hm-prose-article h3 {
	font-size: 20px;
	margin: 28px 0 10px;
}
.hm-v2 .hm-prose-article img {
	border-radius: 10px;
	margin: 24px 0;
	max-width: 100%;
	height: auto;
}
.hm-v2 .hm-prose-article blockquote {
	border-inline-start: 4px solid var(--hm-mint, #9EE5BF);
	padding: 4px 16px;
	margin: 24px 0;
	color: var(--hm-slate-soft);
	font-style: italic;
}

/* Article modified line */
.hm-v2 .hm-article-modified {
	padding: 24px 0;
	color: var(--hm-mist);
	font-size: 13px;
	text-align: center;
}

/* Article TOC */
.hm-v2 .hm-article-toc {
  background: var(--hm-paper, #fafbf9);
  border: 1px solid var(--hm-border);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 0 auto 36px;
  max-width: 720px;
}
.hm-v2 .hm-article-toc-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--hm-mist);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.hm-v2 .hm-article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hm-v2 .hm-article-toc li { margin: 6px 0; }
.hm-v2 .hm-article-toc .hm-toc-l3 { padding-inline-start: 20px; font-size: 14px; }
.hm-v2 .hm-article-toc a {
  color: var(--hm-forest-dark);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}
.hm-v2 .hm-article-toc a:hover {
  border-bottom-color: var(--hm-forest-dark);
}

/* Related articles */
.hm-v2 .hm-related-heading {
	font-size: 22px;
	font-weight: 700;
	color: var(--hm-forest-dark);
	margin: 0 0 24px;
}
.hm-v2 .hm-related-card {
	display: block;
	background: #fff;
	border: 1px solid var(--hm-border);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s, box-shadow 0.15s;
}
.hm-v2 .hm-related-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.hm-v2 .hm-related-thumb {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}
.hm-v2 .hm-related-text { padding: 16px 18px 18px; }
.hm-v2 .hm-related-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--hm-forest-dark);
	line-height: 1.3;
	margin: 0 0 8px;
}
.hm-v2 .hm-related-excerpt {
	font-size: 14px;
	color: var(--hm-slate-soft);
	line-height: 1.55;
	margin: 0;
}

/* Article hub content area — keep WP block content rendering naturally */
.hm-v2 .hm-article-hub-content .hm-prose-article {
	max-width: 920px;
}
.hm-v2 .hm-article-hub-content .wp-block-columns {
	margin: 24px 0;
}

/* === Wave 5 — Dashboard (/my-account/) === */
/*
 * Mode A — chrome around WC's [woocommerce_my_account] shortcode output.
 * We add a greeting card and quick-nav; the WC nav + endpoints continue to render
 * inside .hm-dashboard-body. WooCommerce default classes (.woocommerce-MyAccount-navigation,
 * .woocommerce-MyAccount-content) are styled via a light touch to match Quiet Banking.
 */
.hm-v2 .hm-dashboard-greeting {
  padding: 36px 0 0;
  background: linear-gradient(180deg, var(--hm-mint-soft, #d6f4e3) 0%, #fff 100%);
}
.hm-v2 .hm-greeting-card {
  background: #fff;
  border: 1px solid var(--hm-border);
  border-radius: 14px;
  padding: 24px 28px;
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .hm-v2 .hm-greeting-card { grid-template-columns: 1fr auto; }
}
.hm-v2 .hm-greeting-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--hm-mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}
.hm-v2 .hm-greeting-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--hm-forest-dark);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.hm-v2 .hm-greeting-sub {
  font-size: 14px;
  color: var(--hm-slate-soft);
  margin: 4px 0 0;
}
.hm-v2 .hm-greeting-sub a { color: var(--hm-forest-dark); text-decoration: none; font-weight: 600; }
.hm-v2 .hm-greeting-sub a:hover { color: var(--hm-action); }

.hm-v2 .hm-greeting-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hm-v2 .hm-greeting-quick-nav a {
  display: inline-block;
  background: var(--hm-paper);
  border: 1px solid var(--hm-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hm-forest-dark);
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.hm-v2 .hm-greeting-quick-nav a:hover {
  background: var(--hm-mint, #9ee5bf);
  border-color: var(--hm-mint, #9ee5bf);
}

.hm-v2 .hm-dashboard-body { padding: 36px 0 60px; }

/* WC native my-account — light restyle to match Quiet Banking, no structure change */
.hm-v2 .hm-dashboard-body .woocommerce-MyAccount-navigation ul {
  background: #fff;
  border: 1px solid var(--hm-border);
  border-radius: 12px;
  padding: 10px 0;
  list-style: none;
  margin: 0 0 24px;
}
.hm-v2 .hm-dashboard-body .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
}
.hm-v2 .hm-dashboard-body .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 10px 18px;
  color: var(--hm-charcoal, #1f2a23);
  text-decoration: none;
  font-size: 14px;
  border-inline-start: 3px solid transparent;
  transition: background 0.12s, border-color 0.12s;
}
.hm-v2 .hm-dashboard-body .woocommerce-MyAccount-navigation li.is-active a,
.hm-v2 .hm-dashboard-body .woocommerce-MyAccount-navigation li a:hover {
  background: var(--hm-mint-soft, #d6f4e3);
  border-inline-start-color: var(--hm-forest-dark);
}
.hm-v2 .hm-dashboard-body .woocommerce-MyAccount-content {
  background: #fff;
  border: 1px solid var(--hm-border);
  border-radius: 12px;
  padding: 24px 28px;
}

/* === Wave 5 — Member benefit pages === */
.hm-v2 .hm-page-benefit .hm-benefit-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hm-action, #ff9800);
  background: rgba(255, 152, 0, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin: 8px 0 12px;
}

/* === Wave 5 — Auth pages === */
.hm-v2 .hm-auth-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--hm-mint-soft, #d6f4e3) 0%, #fff 50%);
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
}
.hm-v2 .hm-auth-container {
  max-width: 480px;
}
.hm-v2 .hm-auth-card {
  background: #fff;
  border: 1px solid var(--hm-border);
  border-radius: 14px;
  padding: 36px 36px 28px;
  box-shadow: 0 8px 32px rgba(45, 90, 61, 0.06);
}
.hm-v2 .hm-auth-head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hm-border);
}
.hm-v2 .hm-auth-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--hm-forest-dark);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.hm-v2 .hm-auth-sub {
  font-size: 14px;
  color: var(--hm-slate-soft);
  margin: 0;
}
.hm-v2 .hm-auth-body {
  font-size: 15px;
}
.hm-v2 .hm-auth-body input[type="text"],
.hm-v2 .hm-auth-body input[type="email"],
.hm-v2 .hm-auth-body input[type="password"],
.hm-v2 .hm-auth-body input[type="tel"],
.hm-v2 .hm-auth-body select,
.hm-v2 .hm-auth-body textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--hm-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}
.hm-v2 .hm-auth-body input:focus,
.hm-v2 .hm-auth-body select:focus,
.hm-v2 .hm-auth-body textarea:focus {
  outline: 3px solid rgba(255, 152, 0, 0.25);
  border-color: var(--hm-action, #ff9800);
  outline-offset: 0;
}
.hm-v2 .hm-auth-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hm-forest-dark);
  margin: 14px 0 6px;
}
.hm-v2 .hm-auth-body input[type="submit"],
.hm-v2 .hm-auth-body button[type="submit"],
.hm-v2 .hm-auth-body .button {
  background: var(--hm-forest-dark);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-top: 18px;
}
.hm-v2 .hm-auth-body input[type="submit"]:hover,
.hm-v2 .hm-auth-body button[type="submit"]:hover {
  background: var(--hm-action, #ff9800);
}
.hm-v2 .hm-auth-footer {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--hm-slate-soft);
}
.hm-v2 .hm-auth-footer a {
  color: var(--hm-forest-dark);
  text-decoration: none;
  font-weight: 600;
}
.hm-v2 .hm-auth-footer a:hover {
  color: var(--hm-action, #ff9800);
}

/* === Wave 4 — City / Region / City-Index pages === */
/*
 * These templates wrap the existing hme-city-pages.php shortcode output.
 * The shortcode prints its own CSS (inline + style block). v2 only adds chrome.
 * Keep the card grid styles untouched.
 */
.hm-v2 .hm-section-city-content,
.hm-v2 .hm-section-region-content,
.hm-v2 .hm-section-city-index-content {
	padding-top: 32px;
	padding-bottom: 60px;
}
/* The hero on city/region pages should not double-print breadcrumbs;
 * hide any breadcrumb that hme-city-pages.php emits inside its own content,
 * since v2 already shows one in the hero. */
.hm-v2 .hm-section-city-content .hme-breadcrumb,
.hm-v2 .hm-section-region-content .hme-breadcrumb,
.hm-v2 .hm-section-city-index-content .hme-breadcrumb {
	display: none;
}
/* Make the existing region quick-nav blend better */
.hm-v2 .hme-quick-nav {
	margin-bottom: 28px;
}

/* ============================================================
 * Shared brand hero — _hero_brand.php (2026-05-30 Phase 2)
 *
 * Same logo + ע״ר + divider + eyebrow + h1 + lead pattern that lives in home.php
 * (hm-h-hero-brand-*), now available to every v2 template via .hm-hero-brand-*
 * selectors. Pastel gradient background (mint + coral on warm-white sand) so the
 * site feels uniform across all pages.
 * ============================================================ */

.hm-v2 .hm-hero-brand {
	position: relative;
	background:
		radial-gradient(ellipse at top right, rgba(158, 229, 191, 0.35) 0%, transparent 50%),
		radial-gradient(ellipse at bottom left, rgba(244, 184, 159, 0.25) 0%, transparent 50%),
		linear-gradient(180deg, var(--hm-warm-white) 0%, var(--hm-sand-light) 100%);
	padding: 48px 0 56px;
	overflow: hidden;
}
@media (min-width: 768px) {
	.hm-v2 .hm-hero-brand { padding: 72px 0 80px; }
}

.hm-v2 .hm-hero-brand-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 16px;
}
@media (min-width: 768px) {
	.hm-v2 .hm-hero-brand-inner { padding: 0 24px; }
}

.hm-v2 .hm-hero-brand-block {
	text-align: center;
	margin-bottom: 36px;
}
.hm-v2 .hm-hero-brand-logo {
	width: clamp(120px, 18vw, 160px);
	height: clamp(120px, 18vw, 160px);
	margin: 0 auto 18px;
	filter: drop-shadow(0 10px 24px rgba(45, 90, 61, 0.18));
}
.hm-v2 .hm-hero-brand-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.hm-v2 .hm-hero-brand-title {
	font-size: clamp(20px, 2.8vw, 26px);
	font-weight: 800;
	color: var(--hm-forest-dark);
	letter-spacing: -0.01em;
	margin: 0 0 6px;
}
.hm-v2 .hm-hero-brand-sub {
	font-size: 14px;
	color: var(--hm-slate-soft);
	margin: 0 0 22px;
}
.hm-v2 .hm-hero-brand-divider {
	width: 80px;
	height: 3px;
	background: var(--hm-mint-dark);
	margin: 0 auto;
	border-radius: 3px;
}

.hm-v2 .hm-hero-brand-breadcrumb {
	margin-bottom: 20px;
}

.hm-v2 .hm-hero-brand-text {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}

.hm-v2 .hm-hero-brand-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--hm-white);
	border: 1px solid var(--hm-border);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	color: var(--hm-forest-dark);
	font-weight: 600;
	margin-bottom: 18px;
}
.hm-v2 .hm-hero-brand-eyebrow i {
	color: var(--hm-action);
	width: 15px;
	height: 15px;
}

.hm-v2 .hm-hero-brand-h1 {
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 800;
	color: var(--hm-forest-dark);
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
}

.hm-v2 .hm-hero-brand-lead {
	font-size: 17px;
	color: var(--hm-slate-soft);
	max-width: 620px;
	margin: 0 auto 24px;
	line-height: 1.55;
}

.hm-v2 .hm-hero-brand-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.hm-v2 .hm-hero-brand-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: transform .12s ease, box-shadow .12s ease;
}
.hm-v2 .hm-hero-brand-btn-primary {
	background: var(--hm-action);
	color: var(--hm-white);
	box-shadow: 0 4px 16px rgba(255, 152, 0, 0.32);
}
.hm-v2 .hm-hero-brand-btn-primary:hover {
	background: var(--hm-action-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 22px rgba(232, 134, 0, 0.40);
}
.hm-v2 .hm-hero-brand-btn-ghost {
	background: var(--hm-white);
	color: var(--hm-forest-dark);
	border: 1px solid var(--hm-border);
}
.hm-v2 .hm-hero-brand-btn-ghost:hover {
	background: var(--hm-sand-light);
	transform: translateY(-1px);
}

/* Strip variant — auto-prepended by _layout.php on every v2 page (except home,
 * dashboard, singles). Shorter padding because it's only the brand block on top
 * of the existing template content. */
.hm-v2 .hm-hero-brand.hm-hero-brand-strip {
	padding: 28px 0 24px;
}
@media (min-width: 768px) {
	.hm-v2 .hm-hero-brand.hm-hero-brand-strip { padding: 36px 0 28px; }
}
.hm-v2 .hm-hero-brand.hm-hero-brand-strip .hm-hero-brand-block {
	margin-bottom: 0;
}
.hm-v2 .hm-hero-brand.hm-hero-brand-strip .hm-hero-brand-logo {
	width: clamp(80px, 12vw, 110px);
	height: clamp(80px, 12vw, 110px);
	margin-bottom: 12px;
}
.hm-v2 .hm-hero-brand.hm-hero-brand-strip .hm-hero-brand-title {
	font-size: clamp(16px, 2.2vw, 20px);
}
.hm-v2 .hm-hero-brand.hm-hero-brand-strip .hm-hero-brand-sub {
	margin-bottom: 14px;
}

/* When the existing template-specific hm-hero-compact follows the strip,
 * remove its top padding so the two heroes flow visually as one unit. */
.hm-v2 .hm-hero-brand-strip + .hm-hero,
.hm-v2 .hm-hero-brand-strip + section.hm-hero {
	padding-top: 16px;
}
