/* =============================================================
   NEWS & MEDIA HUB — page-news.css
   1. Masthead hero (typographic, white)
   2. Featured story split
   3. Sticky filter rail (category pills + tag chips)
   4. Grid wrap, count, empty state, load more
   5. "Have a story?" dark CTA band
   ============================================================= */

/* =============================================================
   1. MASTHEAD HERO
   ============================================================= */
.nw-mast {
	background: #fff;
	padding: 120px var(--gutter-d, 48px) 64px;
	border-bottom: 1px solid var(--wba-border, #E6E6E2);
}
.nw-mast__inner {
	max-width: 1240px;
	margin: 0 auto;
}
.nw-mast__eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wba-muted, #888);
	padding: 9px 18px;
	border: 1px solid rgba(193, 39, 45, 0.35);
	background: rgba(193, 39, 45, 0.05);
	border-radius: 999px;
	margin-bottom: 28px;
}
.nw-mast__title {
	font-size: clamp(3.2rem, 9vw, 6.6rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: var(--wba-dark, #1A1A1A);
	margin: 0 0 26px;
	text-transform: lowercase;
}
.nw-mast__title em {
	font-weight: 300;
	font-style: italic;
	color: var(--wba-red, #C1272D);
}
.nw-mast__lede {
	max-width: 600px;
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin: 0 0 36px;
}
.nw-mast__dateline {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--wba-muted, #888);
}
.nw-mast__rule {
	width: 44px;
	height: 3px;
	background: var(--wba-red, #C1272D);
	flex-shrink: 0;
}
.nw-mast__dot {
	width: 3px; height: 3px;
	border-radius: 50%;
	background: var(--wba-red, #C1272D);
	flex-shrink: 0;
}

/* =============================================================
   2. FEATURED STORY
   ============================================================= */
.nw-feat {
	background: #fff;
	padding: 64px var(--gutter-d, 48px);
}
.nw-feat__inner {
	max-width: 1240px;
	margin: 0 auto;
}
.nw-feat__card {
	display: grid;
	grid-template-columns: 7fr 5fr;
	border: 1px solid var(--wba-border, #E6E6E2);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: var(--wba-dark, #1A1A1A);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	background: #fff;
}
.nw-feat__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(26, 26, 26, 0.1);
}
.nw-feat__media {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	background: var(--wba-cream, #F8F8F6);
}
.nw-feat__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.nw-feat__card:hover .nw-feat__media img { transform: scale(1.03); }
.nw-feat__media--fallback {
	background: linear-gradient(120deg, #1A1A1A, #2c2c2c);
	display: flex;
	align-items: center;
	justify-content: center;
}
.nw-feat__mono {
	font-weight: 800;
	font-size: 9rem;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.07);
	user-select: none;
}
.nw-feat__body {
	padding: 48px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.nw-feat__flag {
	position: absolute;
	top: 0;
	left: 44px;
	background: var(--wba-red, #C1272D);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: lowercase;
	padding: 7px 14px 6px;
	border-radius: 0 0 4px 4px;
}
.nw-feat__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: lowercase;
	color: var(--wba-muted, #888);
	margin-bottom: 16px;
}
.nw-feat__cat { color: var(--wba-red, #C1272D); font-weight: 700; }
.nw-feat__title {
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.015em;
	margin: 0 0 16px;
	transition: color 0.2s;
}
.nw-feat__card:hover .nw-feat__title { color: var(--wba-red, #C1272D); }
.nw-feat__excerpt {
	font-size: 0.92rem;
	line-height: 1.7;
	color: #555;
	margin: 0 0 24px;
}
.nw-feat__read {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--wba-dark, #1A1A1A);
}
.nw-feat__card:hover .nw-feat__read { color: var(--wba-red, #C1272D); }

/* =============================================================
   3. STICKY FILTER RAIL
   ============================================================= */
.nw-rail {
	position: sticky;
	top: var(--nw-nav-offset, 97px); /* measured by news-filter.js — sits flush under the sticky nav */
	z-index: 40;
	background: #fff;
	border-top: 3px solid var(--wba-red, #C1272D);
	border-bottom: 1px solid var(--wba-border, #E6E6E2);
	box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
}
.nw-rail__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 16px var(--gutter-d, 48px);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.nw-rail__row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.nw-rail__label {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: lowercase;
	color: var(--wba-muted, #888);
	margin-right: 4px;
}

/* Category pills */
.nw-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: lowercase;
	color: var(--wba-dark, #1A1A1A);
	background: #fff;
	border: 1px solid var(--wba-border, #E6E6E2);
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nw-pill:hover {
	border-color: var(--wba-red, #C1272D);
	color: var(--wba-red, #C1272D);
}
.nw-pill.is-active {
	background: var(--wba-dark, #1A1A1A);
	border-color: var(--wba-dark, #1A1A1A);
	color: #fff;
}
.nw-pill__count {
	font-size: 0.6rem;
	font-weight: 700;
	color: var(--wba-muted, #888);
}
.nw-pill.is-active .nw-pill__count { color: var(--wba-orange, #F7931E); }

/* Tag chips */
.nw-chip {
	padding: 6px 12px;
	font-family: inherit;
	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;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nw-chip:hover {
	color: var(--wba-red, #C1272D);
	border-color: rgba(193, 39, 45, 0.3);
}
.nw-chip.is-active {
	background: rgba(193, 39, 45, 0.08);
	border-color: var(--wba-red, #C1272D);
	color: var(--wba-red, #C1272D);
}
.nw-rail__clear {
	margin-left: auto;
	padding: 6px 12px;
	font-family: inherit;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: lowercase;
	color: var(--wba-red, #C1272D);
	background: transparent;
	border: 0;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* =============================================================
   4. GRID WRAP / COUNT / EMPTY / LOAD MORE
   ============================================================= */
.nw-grid-wrap {
	background: var(--wba-cream, #F8F8F6);
	padding: 56px var(--gutter-d, 48px) 88px;
}
.nw-grid-wrap__inner {
	max-width: 1240px;
	margin: 0 auto;
}
.nw-count {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--wba-muted, #888);
	margin: 0 0 26px;
}
.nw-count strong { color: var(--wba-dark, #1A1A1A); }
.nw-grid.is-loading { opacity: 0.45; pointer-events: none; }
.nw-grid { transition: opacity 0.2s; }

.nw-empty {
	text-align: center;
	padding: 72px 24px;
}
.nw-empty__mono {
	display: block;
	font-size: 5.5rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--wba-border, #E6E6E2);
	line-height: 1;
	margin-bottom: 14px;
	user-select: none;
}
.nw-empty p {
	max-width: 420px;
	margin: 0 auto;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--wba-muted, #888);
}
.nw-more {
	text-align: center;
	margin-top: 48px;
}

/* =============================================================
   5. "HAVE A STORY?" DARK CTA BAND
   (this page's single dark section)
   ============================================================= */
.nw-cta {
	background: var(--wba-dark, #1A1A1A);
	padding: 88px var(--gutter-d, 48px);
	position: relative;
	overflow: hidden;
}
.nw-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 82% 50%, rgba(193, 39, 45, 0.28), transparent 55%);
	pointer-events: none;
}
.nw-cta__inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	z-index: 1;
}
.nw-cta__eyebrow {
	display: block;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--wba-orange, #F7931E);
	margin-bottom: 14px;
}
.nw-cta__title {
	font-size: clamp(1.7rem, 3.4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 14px;
}
.nw-cta__title em {
	font-weight: 300;
	font-style: italic;
}
.nw-cta__copy {
	max-width: 560px;
	font-size: 0.92rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
	.nw-feat__card { grid-template-columns: 1fr; }
	.nw-feat__media { min-height: 300px; }
	.nw-feat__body { padding: 44px 32px 40px; }
	.nw-feat__flag { left: 32px; }
}
@media (max-width: 700px) {
	.nw-mast { padding: 72px var(--gutter-m, 20px) 48px; }
	.nw-feat { padding: 44px var(--gutter-m, 20px); }
	.nw-rail__inner { padding: 12px var(--gutter-m, 20px); }
	.nw-rail__row--cats {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 2px;
	}
	.nw-rail__row--cats::-webkit-scrollbar { display: none; }
	.nw-pill { flex-shrink: 0; }
	.nw-rail__clear { margin-left: 0; }
	.nw-grid-wrap { padding: 40px var(--gutter-m, 20px) 56px; }
	.nw-cta {
		padding: 56px var(--gutter-m, 20px);
	}
	.nw-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.nw-cta .nw-btn { width: 100%; }
}
