/* ═══════════════════════════════════════════════════
   HARMOVER INSIGHTS — editorial blog listing
   Scoped under .hmv-insights to avoid collisions with
   category-page styles in explore-theme.css.
═══════════════════════════════════════════════════ */

.hmv-insights {
	--forest: #1A3735;
	--gold: #926D1F;
	--gold-light: #b8892a;
	--cream: #F7F3EE;
	--ink: #1a1a18;
	--muted: #6b6b60;
	--border: #d9d0c3;
	background: var(--cream);
	color: var(--ink);
}

/* Full-bleed wrapper lets the hero header break out of the
   .explore-content container while the rest of the content
   remains centred. */
.hmv-insights {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding-bottom: 0;
}

/* ── HEADER ── */
.hmv-insights .hi-header {
	background: var(--forest);
	padding: 64px 40px 52px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

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

.hmv-insights .hi-eyebrow {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
	opacity: 0.9;
}

.hmv-insights .hi-title {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 300;
	color: #f0ebe3;
	letter-spacing: 0.04em;
	line-height: 1.15;
	margin-bottom: 16px;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

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

.hmv-insights .hi-subtitle {
	font-size: 1.05rem;
	font-style: italic;
	color: rgba(240, 235, 227, 0.6);
	font-weight: 300;
	max-width: 480px;
	margin: 0 auto;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── BREADCRUMB (category pages) ── */
.hmv-insights .hi-breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

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

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

.hmv-insights .hi-breadcrumb-sep {
	color: rgba(240, 235, 227, 0.25);
}

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

/* ── CATEGORY INTRO (category pages) ── */
.hmv-insights .hi-cat-intro {
	max-width: 640px;
	margin: 48px auto 0;
	padding: 0 40px;
	text-align: center;
}

.hmv-insights .hi-cat-intro p {
	font-size: 1.1rem;
	font-style: italic;
	color: var(--muted);
	line-height: 1.75;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── EMPTY STATE (categories without articles yet) ── */
.hmv-insights .hi-empty {
	max-width: 640px;
	margin: 48px auto 0;
	padding: 48px 40px;
	text-align: center;
	border: 1px dashed var(--border);
}

.hmv-insights .hi-empty-label {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.hmv-insights .hi-empty-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--forest);
	margin-bottom: 10px;
}

.hmv-insights .hi-empty-note {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 0.95rem;
	font-style: italic;
	color: var(--muted);
	line-height: 1.7;
}

/* ── Responsive — category intro + empty ── */
@media (max-width: 640px) {
	.hmv-insights .hi-cat-intro {
		padding: 0 24px;
	}
	.hmv-insights .hi-empty {
		margin: 36px 24px 0;
		padding: 36px 24px;
	}
}

/* ── GOLD RULE ── */
.hmv-insights .hi-gold-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0 40px;
	margin: 48px auto 0;
	max-width: 860px;
}

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

.hmv-insights .hi-diamond {
	width: 6px;
	height: 6px;
	background: var(--gold);
	transform: rotate(45deg);
	opacity: 0.7;
}

/* ── FILTER TABS ── */
.hmv-insights .hi-filter-bar {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 36px 40px 0;
}

.hmv-insights .hi-tag {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	padding: 7px 18px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
}

.hmv-insights .hi-tag:hover,
.hmv-insights .hi-tag.active {
	background: var(--forest);
	color: var(--gold-light);
	border-color: var(--forest);
}

/* ── LATEST — distinctive editorial hero card for the newest article ── */
.hmv-insights .hi-latest {
	max-width: 1080px;
	margin: 56px auto 0;
	padding: 0 40px;
}

.hmv-insights .hi-latest-link {
	position: relative;
	display: block;
	background: var(--forest);
	color: #f0ebe3;
	text-decoration: none;
	padding: 56px 64px 52px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 22px 50px -28px rgba(13, 32, 30, 0.55);
}

.hmv-insights .hi-latest-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 100% 0%, rgba(184, 137, 42, 0.22) 0%, transparent 55%),
		radial-gradient(ellipse at 0% 100%, rgba(146, 109, 31, 0.10) 0%, transparent 50%);
	pointer-events: none;
}

.hmv-insights .hi-latest-link::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--gold);
	opacity: 0.75;
}

.hmv-insights .hi-latest-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 26px 56px -28px rgba(13, 32, 30, 0.65);
}

.hmv-insights .hi-latest-link:hover .hi-arrow {
	transform: translateX(6px);
}

.hmv-insights .hi-latest-inner {
	position: relative;
	max-width: 760px;
}

.hmv-insights .hi-latest-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	margin-bottom: 26px;
	color: rgba(240, 235, 227, 0.55);
}

.hmv-insights .hi-latest-flag {
	color: var(--forest);
	background: var(--gold-light);
	padding: 5px 11px;
	letter-spacing: 0.32em;
	font-weight: 500;
}

.hmv-insights .hi-latest-tag {
	color: var(--gold-light);
}

.hmv-insights .hi-latest-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.85rem, 4vw, 2.85rem);
	font-weight: 300;
	color: #f0ebe3;
	letter-spacing: 0.01em;
	line-height: 1.2;
	margin: 0 0 22px;
}

.hmv-insights .hi-latest-title em {
	font-style: italic;
	color: var(--gold-light);
}

.hmv-insights .hi-latest-teaser {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.18rem;
	font-style: italic;
	color: rgba(240, 235, 227, 0.78);
	line-height: 1.65;
	margin: 0 0 30px;
	max-width: 620px;
}

.hmv-insights .hi-latest-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'DM Mono', monospace;
	font-size: 10.5px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-light);
	border-top: 1px solid rgba(184, 137, 42, 0.35);
	padding-top: 18px;
}

.hmv-insights .hi-latest-cta .hi-arrow {
	font-size: 16px;
	color: var(--gold-light);
	transition: transform 0.25s ease;
}

/* ── MORE ARTICLES section header ── */
.hmv-insights .hi-more {
	max-width: 1080px;
	margin: 64px auto 0;
	padding: 0 40px;
}

.hmv-insights .hi-more-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 28px;
}

.hmv-insights .hi-more-title {
	font-family: 'DM Mono', monospace;
	font-size: 10.5px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0;
	font-weight: 400;
	white-space: nowrap;
}

.hmv-insights .hi-more-header::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--gold);
	opacity: 0.3;
}

.hmv-insights .hi-more .hi-grid {
	margin-top: 0;
	padding: 0;
}

/* ── GRID ── */
.hmv-insights .hi-grid {
	max-width: 1080px;
	margin: 48px auto 0;
	padding: 0 40px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px 36px;
}

/* ── ARTICLE CARD ── */
.hmv-insights .hi-card {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--border);
	padding-top: 28px;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

.hmv-insights .hi-card:hover {
	opacity: 0.82;
}

.hmv-insights .hi-card:hover .hi-arrow {
	transform: translateX(5px);
}

.hmv-insights .hi-card-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.hmv-insights .hi-card-tag {
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold);
}

.hmv-insights .hi-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--border);
}

.hmv-insights .hi-card-date {
	font-family: 'DM Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.15em;
	color: var(--muted);
}

.hmv-insights .hi-card-title {
	font-size: 1.45rem;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 12px;
	color: var(--forest);
	letter-spacing: 0.01em;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

.hmv-insights .hi-card-teaser {
	font-size: 0.97rem;
	color: var(--muted);
	line-height: 1.65;
	flex: 1;
	margin-bottom: 22px;
	font-style: italic;
	font-family: 'Cormorant Garamond', Georgia, serif;
}

.hmv-insights .hi-card-cta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--forest);
}

.hmv-insights .hi-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
	font-size: 14px;
	color: var(--gold);
}

/* ── COMING SOON CARD (article not yet published) ── */
.hmv-insights .hi-card.coming-soon {
	cursor: default;
	opacity: 0.72;
}

.hmv-insights .hi-card.coming-soon:hover {
	opacity: 0.72;
}

.hmv-insights .hi-card.coming-soon .hi-card-title {
	color: var(--forest);
}

.hmv-insights .hi-card.coming-soon .hi-card-cta {
	color: var(--muted);
	font-style: normal;
	opacity: 0.7;
	gap: 8px;
}

.hmv-insights .hi-card.coming-soon .hi-card-cta::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
	opacity: 0.5;
	flex-shrink: 0;
}

/* ── FEATURED ── */
@media (min-width: 700px) {
	.hmv-insights .hi-card.featured {
		grid-column: span 2;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 48px;
		align-items: start;
	}

	.hmv-insights .hi-card.featured .hi-card-body {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.hmv-insights .hi-card.featured .hi-card-title {
		font-size: 2rem;
	}
}

/* ── FOOTER NOTE ── */
.hmv-insights .hi-footer {
	max-width: 1080px;
	margin: 64px auto 0;
	padding: 32px 40px 48px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.hmv-insights .hi-footer-brand {
	font-family: 'DM Mono', monospace;
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--muted);
}

.hmv-insights .hi-footer-note {
	font-style: italic;
	font-size: 0.88rem;
	color: var(--muted);
	font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
	.hmv-insights .hi-header {
		padding: 48px 24px 40px;
	}

	.hmv-insights .hi-grid {
		padding: 0 24px;
		gap: 32px;
	}

	.hmv-insights .hi-filter-bar {
		padding: 28px 24px 0;
	}

	.hmv-insights .hi-latest {
		padding: 0 20px;
		margin-top: 40px;
	}

	.hmv-insights .hi-latest-link {
		padding: 40px 28px 36px;
	}

	.hmv-insights .hi-latest-meta {
		gap: 10px;
		margin-bottom: 20px;
	}

	.hmv-insights .hi-latest-teaser {
		font-size: 1.05rem;
	}

	.hmv-insights .hi-more {
		padding: 0 24px;
		margin-top: 48px;
	}

	.hmv-insights .hi-more .hi-grid {
		padding: 0;
	}

	.hmv-insights .hi-footer {
		padding: 28px 24px 40px;
		flex-direction: column;
		align-items: flex-start;
	}
}
