/* ═════════════════════════════════════════════════════════════════
   PAGE — NEWS ARTICLE
   Single article view (see /pages/page-news-article.php).

   Page deltas only — cream background, hero breadcrumb + headline,
   article body content blocks, partner logos, and keep-reading grid.

   Class prefix: `.na-*` (na = news article)
   ═════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────────
   PAGE BACKGROUND
   ───────────────────────────────────────────────────────────────── */
.na-page {
	background: var(--cream);
}


/* ─────────────────────────────────────────────────────────────────
   HERO — breadcrumb + stacked headline
   ───────────────────────────────────────────────────────────────── */
.na-hero {
	padding-top: clamp(100px, 11vw, 144px);
	padding-bottom: clamp(32px, 4vw, 60px);
}

.na-breadcrumb {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: clamp(24px, 3vw, 48px);
	font-family: var(--f-sans);
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	color: var(--green);
	letter-spacing: 0.04em;
}

.na-breadcrumb a {
	text-decoration: underline;
	color: var(--green);
}

.na-breadcrumb span {
	color: var(--green);
	text-decoration: none;
}

.na-headline {
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 2vw, 24px);
	margin: 0;
}

.na-title-main {
	font-family: var(--f-sans);
	font-weight: 500;
	font-size: clamp(48px, 7.8vw, 112px);
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.na-title-sub {
	font-family: var(--f-sans);
	font-weight: 500;
	font-size: clamp(22px, 3vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--ink);
}


/* ─────────────────────────────────────────────────────────────────
   ARTICLE BODY — content block column
   ───────────────────────────────────────────────────────────────── */
.na-body-section {
	padding-top: clamp(32px, 4vw, 56px);
	padding-bottom: clamp(60px, 8vw, 120px);
}

.na-body-wrap {
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 3.5vw, 48px);
}


/* ─────────────────────────────────────────────────────────────────
   PARTNER LOGOS — white pill with logo + divider + name
   ───────────────────────────────────────────────────────────────── */
.na-partner-logos {
	display: flex;
	align-items: center;
	gap: 40px;
	background: var(--white);
	border-radius: 20px;
	padding: 40px 60px;
	width: fit-content;
	max-width: 100%;
}

.na-partner-logo {
	height: 52px;
	width: auto;
}

.na-partner-divider {
	width: 1px;
	height: 80px;
	background: rgba(26, 26, 26, 0.2);
	flex-shrink: 0;
}

.na-partner-name {
	font-family: var(--f-sans);
	font-weight: 600;
	font-size: clamp(20px, 2vw, 28px);
	color: var(--ink);
	margin: 0;
	white-space: nowrap;
}


/* ─────────────────────────────────────────────────────────────────
   TEXT BLOCK
   ───────────────────────────────────────────────────────────────── */
.na-text {
	font-family: var(--f-sans);
	font-weight: 400;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.54;
	color: rgba(26, 26, 26, 0.75);
	margin: 0;
}

.na-text a {
	color: var(--green);
	text-decoration: underline;
}


/* ─────────────────────────────────────────────────────────────────
   PULL QUOTE
   ───────────────────────────────────────────────────────────────── */
.na-quote {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	border: none;
}

.na-quote-body {
	font-family: var(--f-sans);
	font-weight: 400;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.54;
	color: rgba(26, 26, 26, 0.75);
	margin: 0;
}

.na-quote-mark {
	color: var(--orange);
	font-weight: 900;
}

.na-quote-attribution {
	font-family: var(--f-sans);
	font-weight: 700;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.54;
	color: rgba(26, 26, 26, 0.75);
	margin: 0;
}


/* ─────────────────────────────────────────────────────────────────
   SECTION HEADING
   ───────────────────────────────────────────────────────────────── */
.na-section-head {
	font-family: var(--f-sans);
	font-weight: 700;
	font-size: clamp(20px, 2.4vw, 34px);
	line-height: 1.41;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0;
}


/* ─────────────────────────────────────────────────────────────────
   BULLET LIST
   ───────────────────────────────────────────────────────────────── */
.na-bullet-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.na-bullet-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.na-bullet-icon {
	flex-shrink: 0;
	width: 24px;
	margin-top: 4px;
}

.na-bullet-text {
	font-family: var(--f-sans);
	font-weight: 400;
	font-size: clamp(18px, 2vw, 26px);
	line-height: 1.54;
	color: rgba(26, 26, 26, 0.75);
	margin: 0;
}

.na-bullet-text a {
	color: var(--green);
	text-decoration: underline;
}


/* ─────────────────────────────────────────────────────────────────
   VIDEO EMBED — responsive 16:9 iframe
   ───────────────────────────────────────────────────────────────── */
.na-video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 14px;
}

.na-video-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* ─────────────────────────────────────────────────────────────────
   CTAs — share + back to news
   ───────────────────────────────────────────────────────────────── */
.na-ctas {
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
	padding-top: clamp(12px, 2vw, 24px);
}


/* ─────────────────────────────────────────────────────────────────
   KEEP READING — 3-column card grid
   ───────────────────────────────────────────────────────────────── */
.na-keep-reading {
	padding-top: clamp(40px, 6vw, 80px);
	padding-bottom: clamp(60px, 8vw, 100px);
	border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.na-kr-heading {
	font-family: var(--f-sans);
	font-weight: 500;
	font-size: clamp(48px, 7.8vw, 112px);
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--ink);
	margin: 0 0 clamp(28px, 4vw, 48px);
}

.na-kr-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.na-kr-card {
	background: var(--cream);
	border: 1px solid #d7d5d0;
	border-radius: 14px;
	padding: 30px 30px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 280px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.na-kr-card:hover {
	border-color: var(--green);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.na-kr-card-title {
	font-family: var(--f-sans);
	font-weight: 500;
	font-size: clamp(18px, 2vw, 28px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0;
}

.na-kr-card-meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 24px;
}

.na-kr-card-date {
	font-family: var(--f-sans);
	font-weight: 400;
	font-size: clamp(14px, 1.5vw, 20px);
	color: rgba(26, 26, 26, 0.75);
	margin: 0;
}

.na-kr-card-cat {
	font-family: var(--f-sans);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--green);
	margin: 0;
	letter-spacing: 0.04em;
}


/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.na-kr-grid {
		grid-template-columns: 1fr 1fr;
	}

	.na-partner-logos {
		padding: 30px 40px;
	}
}

@media (max-width: 600px) {
	.na-kr-grid {
		grid-template-columns: 1fr;
	}

	.na-partner-logos {
		flex-direction: column;
		gap: 24px;
	}

	.na-partner-divider {
		width: 80px;
		height: 1px;
	}
}
