/* ═══════════════════════════════════════════════════════════════
   Vertwo Premium — News blocks (front-end styles)
   ───────────────────────────────────────────────────────────────
   v0.20.0 — Phase B

   Front-end CSS for the two custom Gutenberg blocks shipped in v0.20.0:
     - vertwo/news-eyebrow   →  .nd-section-eyebrow
     - vertwo/cinema-quote   →  .nd-cinemaquote

   Verbatim port from prototype 07-news-details.html (single <style> block,
   approx lines 384-432). The classes are also reused inside the news
   single template's body column (.nd-body), so this file is enqueued on
   any page that may render the blocks (page.php for now; news templates
   in v0.20.1).

   --hairline + --orange + --gold + --font-title CSS vars defined in
   design-system.css. Keep this file selectorOnly — no design-system
   redeclarations.
   ═══════════════════════════════════════════════════════════════ */


/* ─── Section eyebrow (kicker above an h3) ────────────────── */
.nd-section-eyebrow {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 6px;
	display: block;
}
.nd-section-eyebrow::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 1px;
	background: var(--orange);
	opacity: .7;
	vertical-align: middle;
	margin-right: 8px;
	transform: translateY(-2px);
}


/* ─── CinemaQuote (full-bleed pull quote) ──────────────────── */
.nd-cinemaquote {
	margin: 48px -10px;
	padding: 36px 42px 32px;
	border-radius: 18px;
	background: linear-gradient(135deg, #F27A0F 0%, #F5A623 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(242, 122, 15, 0.32);
	isolation: isolate;
}
.nd-cinemaquote::before {
	content: "\201C";
	position: absolute;
	top: -30px;
	left: 18px;
	font-family: var(--font-title);
	font-weight: 900;
	font-size: 11rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.18);
	pointer-events: none;
}
.nd-cinemaquote::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(ellipse at 80% 110%, rgba(255, 255, 255, 0.14) 0%, transparent 55%);
	pointer-events: none;
}
.nd-cinemaquote-text {
	font-family: var(--font-title);
	font-weight: 700;
	font-style: italic;
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: #fff;
	position: relative;
	z-index: 1;
}
.nd-cinemaquote-attr {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	position: relative;
	z-index: 1;
}
.nd-cinemaquote-attr::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 1px;
	background: rgba(255, 255, 255, 0.6);
}


/* ─── Tablet (≤1023px) — slightly tighter cinemaquote ─────── */
@media (max-width: 1023px) {
	.nd-cinemaquote {
		margin: 36px 0;
		padding: 28px 24px 24px;
	}
	.nd-cinemaquote::before {
		font-size: 8.5rem;
		top: -22px;
		left: 10px;
	}
}


/* ─── Mobile (≤520px) — phone proportions ─────────────────── */
@media (max-width: 520px) {
	.nd-cinemaquote {
		margin: 30px 0;
		padding: 22px 18px 20px;
		border-radius: 14px;
	}
	.nd-cinemaquote::before {
		font-size: 7rem;
		top: -18px;
		left: 6px;
	}
	.nd-cinemaquote-text {
		font-size: 1.08rem;
	}
	.nd-cinemaquote-attr {
		font-size: 0.7rem;
		margin-top: 18px;
		padding-top: 14px;
	}
}
