/* ═══════════════════════════════════════════════════
   HARMOVER INSIGHTS — ARTICLE PAGE
   Scoped under .hmv-insights-article to avoid
   collisions with category pages (.hmv-insights).
═══════════════════════════════════════════════════ */

.hmv-insights-article {
	--forest: #1A3735;
	--gold: #926D1F;
	--gold-light: #b8892a;
	--cream: #F7F3EE;
	--ink: #1a1a18;
	--muted: #6b6b60;
	--border: #d9d0c3;
	--soft-bg: #f0ebe3;
	background: var(--cream);
	color: var(--ink);
	/* Full-bleed wrapper so the hero can break out of .explore-content.
	   max-width:none defeats the global `.explore-content * { max-width:100% }`
	   that would otherwise cap the article at the parent's content width and
	   prevent the negative-margin technique from filling the viewport. */
	max-width: none;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding-bottom: 0;
}

/* ── ARTICLE WRAPPER ── */
.hmv-insights-article .ha-wrap {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 24px 80px;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 300;
	color: var(--ink);
	line-height: 1.8;
}

/* ── HERO ── */
.hmv-insights-article .ha-hero {
	background: var(--forest);
	padding: 64px 40px 56px;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 56px;
}

.hmv-insights-article .ha-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 65% 0%, rgba(146, 109, 31, 0.18) 0%, transparent 70%);
	pointer-events: none;
}

.hmv-insights-article .ha-breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 auto 28px;
	max-width: 720px;
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	flex-wrap: wrap;
}

.hmv-insights-article .ha-breadcrumb a {
	color: rgba(240, 235, 227, 0.45);
	text-decoration: none;
	transition: color 0.2s;
}

.hmv-insights-article .ha-breadcrumb a:hover {
	color: var(--gold-light);
}

.hmv-insights-article .ha-breadcrumb-sep {
	color: rgba(240, 235, 227, 0.2);
}

.hmv-insights-article .ha-breadcrumb-current {
	color: var(--gold-light);
}

.hmv-insights-article .ha-hero-tag {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
	display: block;
}

.hmv-insights-article .ha-hero-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 300;
	color: #f0ebe3;
	line-height: 1.2;
	letter-spacing: 0.02em;
	margin: 0 auto 20px;
	max-width: 920px;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

.hmv-insights-article .ha-hero-title em {
	font-style: italic;
	color: var(--gold-light);
}

.hmv-insights-article .ha-hero-meta {
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(240, 235, 227, 0.4);
	margin-top: 28px;
}
.hmv-insights-article .ha-hero-author {
	color: var(--gold-light);
}

/* ── LEAD ── */
.hmv-insights-article .ha-lead {
	font-size: 1.25rem;
	font-style: italic;
	color: var(--muted);
	line-height: 1.75;
	border-left: 2px solid var(--gold);
	padding-left: 24px;
	margin-bottom: 48px;
}

/* ── BODY TEXT ── */
.hmv-insights-article .ha-wrap p {
	font-size: 1.08rem;
	margin-bottom: 24px;
	color: var(--ink);
}

/* ── HEADINGS ── */
.hmv-insights-article .ha-wrap h2 {
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--forest);
	letter-spacing: 0.02em;
	margin: 52px 0 16px;
	line-height: 1.25;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

.hmv-insights-article .ha-wrap h3 {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--forest);
	margin: 32px 0 12px;
	font-style: italic;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── GOLD RULE ── */
.hmv-insights-article .ha-rule {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 48px 0;
}

.hmv-insights-article .ha-rule::before,
.hmv-insights-article .ha-rule::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--gold);
	opacity: 0.35;
}

.hmv-insights-article .ha-rule-diamond {
	width: 5px;
	height: 5px;
	background: var(--gold);
	transform: rotate(45deg);
	opacity: 0.6;
}

/* ── HIGHLIGHT BOX ── */
.hmv-insights-article .ha-box {
	background: var(--soft-bg);
	border-left: 3px solid var(--gold);
	padding: 24px 28px;
	margin: 36px 0;
	border-radius: 0 2px 2px 0;
}

.hmv-insights-article .ha-box-title {
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
	display: block;
}

.hmv-insights-article .ha-box p {
	margin-bottom: 8px;
	font-size: 1rem;
	color: var(--ink);
}

.hmv-insights-article .ha-box p:last-child {
	margin-bottom: 0;
}

/* ── COMPOUND LIST ── */
.hmv-insights-article .ha-compound {
	margin: 28px 0;
	padding: 0;
	list-style: none;
}

.hmv-insights-article .ha-compound li {
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 16px;
	align-items: start;
	font-size: 1rem;
}

.hmv-insights-article .ha-compound li:last-child {
	border-bottom: none;
}

.hmv-insights-article .ha-compound-name {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--forest);
	padding-top: 3px;
}

.hmv-insights-article .ha-compound-desc {
	color: var(--muted);
	font-style: italic;
	line-height: 1.65;
}

/* ── PROTOCOL STEPS ── */
.hmv-insights-article .ha-steps {
	counter-reset: step-counter;
	list-style: none;
	padding: 0;
	margin: 28px 0;
}

.hmv-insights-article .ha-steps li {
	counter-increment: step-counter;
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	margin-bottom: 24px;
	align-items: start;
}

.hmv-insights-article .ha-steps li::before {
	content: counter(step-counter);
	font-family: 'DM Mono', monospace;
	font-size: 11px;
	color: var(--gold);
	border: 1px solid var(--gold);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 3px;
	opacity: 0.8;
}

.hmv-insights-article .ha-steps li p {
	margin-bottom: 0;
}

/* ── WARNING BOX ── */
.hmv-insights-article .ha-warning {
	background: rgba(26, 55, 53, 0.04);
	border: 1px solid var(--border);
	border-left: 3px solid var(--forest);
	padding: 20px 24px;
	margin: 36px 0;
	border-radius: 0 2px 2px 0;
}

.hmv-insights-article .ha-warning-title {
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--forest);
	margin-bottom: 10px;
	display: block;
}

.hmv-insights-article .ha-warning p {
	font-size: 0.96rem;
	color: var(--muted);
	margin-bottom: 0;
}

/* ── CTA BLOCK ── */
.hmv-insights-article .ha-cta {
	background: var(--forest);
	padding: 48px 40px;
	text-align: center;
	margin: 64px 0 0;
	position: relative;
	overflow: hidden;
}

.hmv-insights-article .ha-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(146, 109, 31, 0.2) 0%, transparent 70%);
	pointer-events: none;
}

.hmv-insights-article .ha-cta-eyebrow {
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
	display: block;
	position: relative;
	z-index: 1;
}

.hmv-insights-article .ha-cta h3 {
	font-size: 1.8rem;
	font-weight: 300;
	color: #f0ebe3;
	margin-bottom: 14px;
	font-style: normal;
	font-family: 'Cormorant Garamond', Georgia, serif;
	letter-spacing: 0.02em;
	position: relative;
	z-index: 1;
}

.hmv-insights-article .ha-cta h3 em {
	font-style: italic;
	color: var(--gold-light);
}

.hmv-insights-article .ha-cta p {
	font-size: 1rem;
	color: rgba(240, 235, 227, 0.65);
	font-style: italic;
	max-width: 480px;
	margin: 0 auto 28px;
	font-family: 'Cormorant Garamond', Georgia, serif;
	position: relative;
	z-index: 1;
}

.hmv-insights-article .ha-cta-btn {
	display: inline-block;
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--forest);
	background: var(--gold-light);
	padding: 14px 32px;
	text-decoration: none;
	transition: background 0.2s;
	position: relative;
	z-index: 1;
}

.hmv-insights-article .ha-cta-btn:hover {
	background: var(--gold);
}

/* ── BACK LINK ── */
.hmv-insights-article .ha-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--muted);
	text-decoration: none;
	margin-bottom: 40px;
	margin-top: 8px;
	transition: color 0.2s;
}

.hmv-insights-article .ha-back:hover {
	color: var(--forest);
}

/* ── REFERENCES ── */
.hmv-insights-article .ha-references {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--border);
}

.hmv-insights-article .ha-references-title {
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
	display: block;
}

.hmv-insights-article .ha-references-list {
	padding-left: 20px;
	margin: 0;
}

.hmv-insights-article .ha-references-list li {
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 10px;
	font-style: normal;
}

.hmv-insights-article .ha-references-list li em {
	font-style: italic;
}

/* ── DISCLAIMER ── */
.hmv-insights-article .ha-disclaimer {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-size: 0.85rem;
	font-style: italic;
	color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
	.hmv-insights-article .ha-hero {
		padding: 48px 24px 44px;
	}

	.hmv-insights-article .ha-wrap {
		padding: 0 20px 60px;
	}

	.hmv-insights-article .ha-cta {
		padding: 40px 24px;
	}

	.hmv-insights-article .ha-compound li {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.hmv-insights-article .ha-compound-name {
		padding-top: 0;
	}
}
