/* =============================================================
   SINGLE NEWS POST — single-news.css
   Hero follows the HEADER/HERO CONSISTENCY RULE:
   58vh / min 480px / 105deg gradient + radial red glow at 78% 50%
   ============================================================= */

/* ---------- HERO ---------- */
.ns-hero {
	position: relative;
	height: 58vh;
	min-height: 480px;
	display: flex;
	align-items: center;
	background-color: var(--wba-dark, #1A1A1A);
	background-size: cover;
	background-position: center;
}
.ns-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg,
			rgba(20, 20, 20, 0.92) 0%,
			rgba(20, 20, 20, 0.72) 45%,
			rgba(20, 20, 20, 0.40) 100%),
		radial-gradient(circle at 78% 50%, rgba(193, 39, 45, 0.30), transparent 55%);
}
.ns-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 48px);
}
.ns-hero__eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	padding: 9px 18px;
	border: 1px solid rgba(193, 39, 45, 0.55);
	background: rgba(193, 39, 45, 0.18);
	border-radius: 999px;
	margin-bottom: 24px;
}
.ns-hero__title {
	max-width: 820px;
	font-size: clamp(1.9rem, 4.4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 22px;
}
.ns-hero__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: rgba(255, 255, 255, 0.75);
}
.ns-hero__dot {
	width: 3px; height: 3px;
	border-radius: 50%;
	background: var(--wba-orange, #F7931E);
	flex-shrink: 0;
}

/* ---------- ARTICLE PROSE ---------- */
.ns-article {
	background: #fff;
	padding: 88px var(--gutter-d, 48px);
}
.ns-article__inner {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1.02rem;
	line-height: 1.85;
	color: #333;
}
.ns-article__inner > p { margin: 0 0 1.5em; }
.ns-article__inner > p:first-of-type {
	font-size: 1.14rem;
	color: var(--wba-dark, #1A1A1A);
}
.ns-article__inner h2,
.ns-article__inner h3 {
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--wba-dark, #1A1A1A);
	line-height: 1.25;
	margin: 2em 0 0.7em;
}
.ns-article__inner h2 { font-size: 1.6rem; }
.ns-article__inner h3 { font-size: 1.25rem; }
.ns-article__inner a {
	color: var(--wba-red, #C1272D);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.ns-article__inner img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	margin: 2em 0;
}
.ns-article__inner blockquote {
	margin: 2.2em 0;
	padding: 4px 0 4px 26px;
	border-left: 3px solid var(--wba-red, #C1272D);
	font-size: 1.2rem;
	font-weight: 300;
	font-style: italic;
	line-height: 1.6;
	color: var(--wba-dark, #1A1A1A);
}
.ns-article__inner ul,
.ns-article__inner ol { margin: 0 0 1.5em; padding-left: 1.3em; }
.ns-article__inner li { margin-bottom: 0.5em; }
.ns-article__inner figure { margin: 2em 0; }
.ns-article__inner figcaption {
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	color: var(--wba-muted, #888);
	margin-top: 10px;
}

/* ---------- TAGS ---------- */
.ns-tags {
	max-width: 720px;
	margin: 48px auto 0;
	padding-top: 28px;
	border-top: 1px solid var(--wba-border, #E6E6E2);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.ns-tags__label {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: lowercase;
	color: var(--wba-muted, #888);
	margin-right: 6px;
}
.ns-tags__chip {
	padding: 6px 12px;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: lowercase;
	color: var(--wba-muted, #888);
	background: var(--wba-cream, #F8F8F6);
	border: 1px solid transparent;
	border-radius: 4px;
	text-decoration: none;
	transition: color 0.2s, border-color 0.2s;
}
.ns-tags__chip:hover {
	color: var(--wba-red, #C1272D);
	border-color: rgba(193, 39, 45, 0.3);
}

/* ---------- PREV / NEXT ---------- */
.ns-adjacent {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid var(--wba-border, #E6E6E2);
	background: #fff;
}
.ns-adjacent__link,
.ns-adjacent__spacer {
	padding: 36px var(--gutter-d, 48px);
}
.ns-adjacent__link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-decoration: none;
	transition: background 0.2s;
}
.ns-adjacent__link:hover { background: var(--wba-cream, #F8F8F6); }
.ns-adjacent__link--next { text-align: right; border-left: 1px solid var(--wba-border, #E6E6E2); }
.ns-adjacent__dir {
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: lowercase;
	color: var(--wba-muted, #888);
}
.ns-adjacent__title {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--wba-dark, #1A1A1A);
	transition: color 0.2s;
}
.ns-adjacent__link:hover .ns-adjacent__title { color: var(--wba-red, #C1272D); }

/* ---------- RELATED ---------- */
.ns-related {
	background: var(--wba-cream, #F8F8F6);
	padding: 88px var(--gutter-d, 48px);
	border-top: 1px solid var(--wba-border, #E6E6E2);
}
.ns-related__inner {
	max-width: 1240px;
	margin: 0 auto;
}
.ns-related__eyebrow {
	display: block;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wba-muted, #888);
	margin-bottom: 14px;
}
.ns-related__title {
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--wba-dark, #1A1A1A);
	margin: 0 0 40px;
}
.ns-related__title em { font-weight: 300; font-style: italic; }
.ns-related__all {
	text-align: center;
	margin-top: 48px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 700px) {
	.ns-hero { min-height: 440px; }
	.ns-hero__inner { padding: 0 var(--gutter-m, 20px); }
	.ns-article { padding: 56px var(--gutter-m, 20px); }
	.ns-adjacent { grid-template-columns: 1fr; }
	.ns-adjacent__link,
	.ns-adjacent__spacer { padding: 26px var(--gutter-m, 20px); }
	.ns-adjacent__link--next {
		border-left: 0;
		border-top: 1px solid var(--wba-border, #E6E6E2);
		text-align: left;
	}
	.ns-adjacent__spacer { display: none; }
	.ns-related { padding: 56px var(--gutter-m, 20px); }
}
