/**
 * Culture page — SPA-canonical styles.
 *
 * Mirrors components/Culture.jsx#Culture hero verbatim. The legacy WP hero
 * (`.guides-intro` + `.guides-title`) was a plain paper text section borrowed
 * from the /guides/ template; SPA renders a full-bleed Berat castle image with
 * a dark gradient overlay, breadcrumb on top, and an 88px white display H1
 * pushed to the bottom by `marginTop: auto`. Two genuinely different hero
 * treatments — this stylesheet ports the SPA one.
 *
 * SPA breakpoint: window.innerWidth <= 900 → @media (max-width: 900px).
 */

/* ── Hero ──────────────────────────────────────────────────────── */
.va-culture-hero {
	position: relative;
	margin-top: -96px;
	height: 78vh;
	min-height: 660px;
	overflow: hidden;
	color: #fff;
	display: block;
}
.va-culture-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.va-culture-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
		rgba(8, 35, 56, 0.45) 0%,
		rgba(8, 35, 56, 0.08) 38%,
		rgba(8, 35, 56, 0.88) 100%);
}
.va-culture-hero-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 150px 56px 60px;
	display: flex;
	flex-direction: column;
}
.va-culture-hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}
.va-culture-hero-breadcrumb a {
	color: rgba(255, 255, 255, 0.75);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
}
.va-culture-hero-breadcrumb .sep { color: rgba(255, 255, 255, 0.4); }
.va-culture-hero-inner {
	margin-top: auto;
	max-width: 940px;
}
.va-culture-hero-eyebrow {
	color: rgba(255, 255, 255, 0.78) !important;
	margin: 0;
}
.va-culture-hero-title {
	margin: 16px 0 0;
	color: #fff;
	font-size: 88px;
	line-height: 0.96;
	letter-spacing: -0.03em;
	font-weight: 400;
}
.va-culture-hero-lede {
	/* SPA lede is a plain <p> (no className), so the browser default
	   `p { margin: 1em 0 }` applies — at font-size 19, that adds a 19px
	   margin-bottom which keeps the bottom-anchored stack shifted UP.
	   Mirror it verbatim or the H1 lands ~19px lower than SPA. (Same
	   bug class as Session 2A.2 rentacar; see that changelog entry.) */
	margin: 22px 0 19px;
	max-width: 680px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 19px;
	line-height: 1.55;
}

/* Mobile branch (SPA window.innerWidth <= 900) */
@media (max-width: 900px) {
	.va-culture-hero {
		margin-top: -64px;
		height: 70vh;
		min-height: 520px;
	}
	.va-culture-hero-content { padding: 100px 24px 34px; }
	.va-culture-hero-title { font-size: 44px; }
	.va-culture-hero-lede { font-size: 16px; margin-bottom: 16px; }
}
