/* ============================================================================
   newsroom.css — GladGrade Newsroom editorial design system
   Shared by /newsroom, /newsroom/category/*, /newsroom/[slug], and
   /newsroom/media-resources. Loaded after /styles/css/header-footer.css.

   Built on the existing GladGrade tokens (Inter, gold ramp, black chrome).
   Note: --nr-accent-text is a darkened gold used for text and links so that
   contrast on white meets WCAG 2.1 AA (6.2:1); the brighter --gold-primary is
   reserved for decorative fills and rules where contrast rules don't apply.
   ============================================================================ */

:root {
  --gold-primary: #F79400;
  --gold-light: #FADA0B;
  --gold-dark: #DB7C00;

  --nr-accent-text: #8F5100;
  --nr-ink: #111111;
  --nr-ink-soft: #444444;
  --nr-ink-muted: #5F5F5F;
  --nr-rule: #E6E6E6;
  --nr-rule-strong: #CFCFCF;
  --nr-surface: #FFFFFF;
  --nr-surface-sunken: #FAFAF8;

  --nr-measure: 68ch;
  --nr-shell: 1200px;
  --nr-gutter: 1.5rem;
  --nr-radius: 14px;
}

@media (min-width: 768px) {
  :root { --nr-gutter: 2.5rem; }
}

@media (min-width: 1200px) {
  :root { --nr-gutter: 3rem; }
}

/* ---------------------------------------------------------------- base ---- */

/* Border-box sizing and a zeroed body margin. Every other page on the site
   establishes these in its own inline <style>; newsroom pages load only
   header-footer.css and this file, so they must be declared here or padded
   boxes overflow their containers and the shared header/footer render
   differently here than everywhere else. */
.nr,
.nr *,
.nr *::before,
.nr *::after {
  box-sizing: border-box;
}

.nr {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--nr-ink);
  background: var(--nr-surface);
  -webkit-font-smoothing: antialiased;
}

/* Scoped reset. Newsroom pages load only header-footer.css and this file, so
   there is no global `* { margin: 0 }` in play and user-agent margins would
   otherwise leak in.

   Written with :where() so the whole selector carries ZERO specificity: it
   still beats user-agent defaults, but every component rule below beats it.
   Without that, `.nr p { margin: 0 }` would outrank the `.nr-body > * + *`
   flow rule and collapse the article's vertical rhythm. */
:where(.nr) :where(h1, h2, h3, h4, p, ul, ol, li, dl, dt, dd, figure, blockquote) {
  margin: 0;
  padding: 0;
}

:where(.nr) :where(ul, ol) { list-style: none; }

:where(.nr) img { max-width: 100%; }

/* ------------------------------------------------------------ overrides -- */
/* header-footer.css styles the bare `header`, `nav ul` and `nav a` selectors
   for the site chrome. Those selectors also reach the semantic <header> and
   <nav> elements inside newsroom articles, so they are neutralised here.
   Class selectors win on specificity, so the site chrome itself is untouched. */

.nr .nr-article-head {
  position: static;
  width: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}

/* `nav ul { display: flex }` would lay the related-links list out horizontally. */
.nr nav.nr-links ul {
  display: block;
  gap: 0;
}

.nr nav.nr-breadcrumbs a,
.nr nav.nr-links a {
  font-size: inherit;
}

/* Clears the site's fixed header. */
.nr-main { margin-top: 70px; display: block; }

@media (max-width: 900px) {
  .nr-main { margin-top: 132px; }
}

@media (max-width: 768px) {
  .nr-main { margin-top: 120px; }
}

.nr-shell {
  max-width: var(--nr-shell);
  margin-inline: auto;
  padding-inline: var(--nr-gutter);
}

.nr-shell--wide { max-width: 1440px; }

.nr-measure { max-width: var(--nr-measure); }

/* Skip link — visually hidden until focused. */
.nr-skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1100;
  padding: 0.75rem 1.25rem;
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--gold-primary);
  border-radius: 8px;
  transition: top 0.15s ease;
}

.nr-skip:focus {
  top: 1rem;
}

/* Active-state for the shared header/footer "Newsroom" link. This stylesheet
   only loads on newsroom routes, so the highlight is scoped by construction —
   /newsroom, /newsroom/category/*, and /newsroom/[slug] all get it. */
.nr #nav-menu a[aria-current="page"],
.nr footer a[aria-current="page"] {
  color: var(--gold-light);
  font-weight: 700;
}

/* Accessible skip target + screen-reader-only utility. */
.nr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.nr a:focus-visible,
.nr button:focus-visible,
.nr input:focus-visible,
.nr select:focus-visible,
.nr [tabindex]:focus-visible {
  outline: 3px solid var(--nr-accent-text);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------- typography ---- */

.nr-eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nr-accent-text);
  margin-bottom: 1rem;
}

.nr-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--nr-rule);
}

.nr-hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 22ch;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.nr-hero p {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.6;
  color: var(--nr-ink-soft);
  max-width: 62ch;
  margin: 0;
}

.nr-section {
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.nr-section + .nr-section { padding-top: 0; }

.nr-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--nr-ink);
}

.nr-section-head h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0;
}

.nr-section-head p {
  margin: 0;
  color: var(--nr-ink-muted);
  font-size: 0.9375rem;
}

/* ------------------------------------------------------------- meta ------ */

.nr-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--nr-ink-muted);
  margin-bottom: 0.875rem;
}

.nr-meta__cat {
  color: var(--nr-accent-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a.nr-meta__cat:hover { border-bottom-color: var(--nr-accent-text); }

.nr-meta__sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--nr-rule-strong);
  flex: none;
}

.nr-meta time { font-variant-numeric: tabular-nums; }

.nr-type-badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--nr-rule-strong);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nr-ink-soft);
}

/* ------------------------------------------------------------ media ----- */

.nr-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--nr-radius);
  background: var(--nr-surface-sunken);
  border: 1px solid var(--nr-rule);
  aspect-ratio: 16 / 9;
}

.nr-frame > img,
.nr-frame > svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo-style artwork should not be cropped. */
.nr-frame--contain { background: #fff; }
.nr-frame--contain > img { object-fit: contain; padding: 4%; }

/* ---------------------------------------------------------- featured ---- */

.nr-featured {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

@media (min-width: 900px) {
  .nr-featured {
    grid-template-columns: 1.15fr 1fr;
  }
}

/* Media wrappers are anchors, so they need block layout explicitly. */
.nr-featured__media,
.nr-card__media {
  display: block;
  text-decoration: none;
}

.nr-featured__body h2 {
  font-size: clamp(1.625rem, 3.4vw, 2.625rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.nr-featured__body h2 a {
  color: inherit;
  text-decoration: none;
}

.nr-featured__body h2 a:hover { color: var(--nr-accent-text); }

.nr-featured__body p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--nr-ink-soft);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.nr-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--nr-accent-text);
  text-decoration: none;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 2px;
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.nr-link:hover { gap: 0.7rem; border-bottom-color: var(--nr-accent-text); }

.nr-link::after { content: '\203A'; font-size: 1.15em; line-height: 1; }

/* ------------------------------------------------------------- cards ---- */

.nr-grid {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .nr-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .nr-grid { grid-template-columns: repeat(3, 1fr); }
}

.nr-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nr-card__media { margin-bottom: 1.125rem; }

.nr-card .nr-frame { transition: transform 0.3s ease, box-shadow 0.3s ease; }

.nr-card:hover .nr-frame {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.12);
}

.nr-card h3 {
  font-size: 1.1875rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 0.625rem;
  text-wrap: pretty;
}

.nr-card h3 a {
  color: inherit;
  text-decoration: none;
}

.nr-card h3 a:hover { color: var(--nr-accent-text); }

.nr-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--nr-ink-soft);
  margin: 0 0 1rem;
}

.nr-card__foot { margin-top: auto; }

/* -------------------------------------------------------- controls ----- */

.nr-controls {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--nr-rule);
}

.nr-controls__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.nr-search {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  flex: 1 1 260px;
  max-width: 420px;
}

.nr-search__field {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--nr-ink);
  background: var(--nr-surface);
  border: 1px solid var(--nr-rule-strong);
  border-radius: 8px;
}

.nr-search__field::placeholder { color: #7A7A7A; }

.nr-search__btn {
  padding: 0.7rem 1.1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  background: var(--gold-primary);
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nr-search__btn:hover { background: var(--gold-light); }

.nr-select {
  padding: 0.7rem 0.9rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--nr-ink);
  background: var(--nr-surface);
  border: 1px solid var(--nr-rule-strong);
  border-radius: 8px;
  cursor: pointer;
}

.nr-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.nr-chip {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--nr-ink-soft);
  text-decoration: none;
  background: var(--nr-surface);
  border: 1px solid var(--nr-rule-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nr-chip:hover {
  border-color: var(--nr-ink);
  color: var(--nr-ink);
}

.nr-chip[aria-current="true"],
.nr-chip.is-active {
  background: var(--gold-primary);
  border-color: var(--gold-dark);
  color: #000;
}

.nr-chip__count {
  font-weight: 600;
  opacity: 0.65;
  font-variant-numeric: tabular-nums;
}

.nr-result-count {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: var(--nr-ink-muted);
}

.nr-empty {
  padding: 3.5rem 0;
  text-align: center;
  color: var(--nr-ink-muted);
}

.nr-empty h2 {
  font-size: 1.25rem;
  color: var(--nr-ink);
  margin: 0 0 0.5rem;
}

.nr-empty p { margin: 0; }

[hidden] { display: none !important; }

/* --------------------------------------------------------- article ----- */

.nr-breadcrumbs {
  padding: 1.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--nr-ink-muted);
}

.nr-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nr-breadcrumbs li { display: flex; gap: 0.4rem; align-items: center; }

.nr-breadcrumbs li + li::before {
  content: '/';
  color: var(--nr-rule-strong);
}

.nr-breadcrumbs a {
  color: var(--nr-ink-muted);
  text-decoration: none;
}

.nr-breadcrumbs a:hover {
  color: var(--nr-accent-text);
  text-decoration: underline;
}

.nr-breadcrumbs [aria-current="page"] { color: var(--nr-ink); font-weight: 600; }

.nr-article-head {
  padding: clamp(2rem, 4.5vw, 3.25rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}

.nr-article-head h1 {
  font-size: clamp(1.875rem, 4.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0.75rem 0 0;
  max-width: 32ch;
  text-wrap: balance;
}

.nr-article-head .nr-subtitle {
  font-size: clamp(1.0625rem, 1.8vw, 1.375rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--nr-ink-soft);
  margin: 1.125rem 0 0;
  max-width: 46ch;
}

.nr-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--nr-rule);
  font-size: 0.875rem;
  color: var(--nr-ink-muted);
}

.nr-byline strong { color: var(--nr-ink); font-weight: 600; }

.nr-hero-media { margin: 0 0 clamp(2rem, 4vw, 3rem); }

.nr-hero-media figcaption,
.nr-body figcaption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--nr-ink-muted);
}

/* Article body — constrained measure for readability. */
.nr-body {
  max-width: var(--nr-measure);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--nr-ink-soft);
}

@media (min-width: 768px) {
  .nr-body { font-size: 1.125rem; }
}

/* Vertical rhythm comes from the flow rule; individual elements must not
   re-zero their margin-top or they would override it (equal specificity,
   later wins), so only margin-bottom is reset above in the scoped reset. */
.nr-body > * + * { margin-top: 1.5rem; }

.nr-body p.nr-lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--nr-ink);
  font-weight: 500;
}

@media (min-width: 768px) {
  .nr-body p.nr-lead { font-size: 1.3125rem; }
}

.nr-body h2 {
  margin-top: 3rem;
  font-size: clamp(1.3125rem, 2.3vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--nr-ink);
}

.nr-body h3 {
  margin-top: 2.5rem;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--nr-ink);
}

.nr-body a {
  color: var(--nr-accent-text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold-primary);
}

.nr-body a:hover {
  border-bottom-color: var(--nr-accent-text);
  background: rgba(247, 148, 0, 0.08);
}

.nr-body strong { color: var(--nr-ink); font-weight: 700; }

/* Restore real list markers inside prose (the scoped reset clears them). */
.nr-body ul, .nr-body ol { margin: 1.5rem 0 0; padding-left: 1.35rem; }
.nr-body ul { list-style: disc; }
.nr-body ol { list-style: decimal; }
.nr-body li + li { margin-top: 0.6rem; }
.nr-body li::marker { color: var(--gold-dark); }

.nr-body .nr-dateline {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--nr-ink);
  text-transform: none;
}

/* Editorial pull quote. */
.nr-quote {
  margin: 2.5rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 3px solid var(--gold-primary);
}

@media (min-width: 768px) {
  .nr-quote { padding-left: 2rem; }
}

.nr-quote blockquote {
  margin: 0;
  font-size: 1.1875rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--nr-ink);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .nr-quote blockquote { font-size: 1.375rem; }
}

.nr-quote figcaption {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--nr-ink-muted);
}

.nr-quote figcaption .nr-quote__name {
  display: block;
  font-weight: 700;
  color: var(--nr-ink);
}

/* Key facts panel. */
.nr-facts {
  margin: 2.5rem 0 0;
  padding: 1.75rem;
  background: var(--nr-surface-sunken);
  border: 1px solid var(--nr-rule);
  border-radius: var(--nr-radius);
}

.nr-facts h2,
.nr-facts h3 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nr-accent-text);
}

.nr-facts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nr-facts li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--nr-ink);
}

.nr-facts li + li { margin-top: 0.75rem; }

.nr-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold-primary);
}

/* Short declarative statement stack. */
.nr-callout {
  margin: 2.5rem 0 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--nr-rule);
  border-bottom: 1px solid var(--nr-rule);
}

.nr-callout p {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--nr-ink);
  letter-spacing: -0.01em;
}

.nr-callout p + p { margin-top: 0.35rem; }

/* Founder-message signature. */
.nr-signature {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nr-rule);
}

.nr-signature .nr-signature__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--nr-ink);
  margin: 0;
}

.nr-signature .nr-signature__title {
  font-size: 0.9375rem;
  color: var(--nr-ink-muted);
  margin: 0.25rem 0 0;
}

.nr-inline-logo {
  margin: 2.5rem 0 0;
  max-width: 320px;
}

/* Boilerplate "About" blocks. */
.nr-boilerplate {
  max-width: var(--nr-measure);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2rem;
  border-top: 2px solid var(--nr-ink);
}

.nr-boilerplate section + section { margin-top: 2rem; }

.nr-boilerplate h2 {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--nr-ink);
  margin: 0 0 0.75rem;
}

.nr-boilerplate p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--nr-ink-soft);
  margin: 0;
}

.nr-boilerplate p + p { margin-top: 0.75rem; }

.nr-boilerplate a {
  color: var(--nr-accent-text);
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold-primary);
  text-decoration: none;
}

/* External resource links. */
.nr-links {
  max-width: var(--nr-measure);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.nr-links h2 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nr-accent-text);
  margin: 0 0 1rem;
}

.nr-links ul { list-style: none; margin: 0; padding: 0; }

.nr-links li + li { margin-top: 0.5rem; }

.nr-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--nr-accent-text);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold-primary);
}

.nr-links a:hover { border-bottom-color: var(--nr-accent-text); }

.nr-links a[data-external="true"]::after {
  content: '\2197';
  font-size: 0.85em;
  opacity: 0.7;
}

/* Media contact — reusable MediaContact component. */
.nr-media-contact {
  max-width: var(--nr-measure);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: 1.75rem;
  background: #0B0B0B;
  color: #fff;
  border-radius: var(--nr-radius);
}

.nr-media-contact h2 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.125rem;
}

.nr-media-contact .nr-mc__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.nr-media-contact .nr-mc__role,
.nr-media-contact .nr-mc__org {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0.2rem 0 0;
}

.nr-media-contact dl {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.6rem 0.75rem;
  grid-template-columns: auto 1fr;
  font-size: 0.9375rem;
  align-items: baseline;
}

.nr-media-contact dt {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.nr-media-contact dd { margin: 0; min-width: 0; }

.nr-media-contact a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 218, 11, 0.45);
  overflow-wrap: anywhere;
}

.nr-media-contact a:hover { border-bottom-color: var(--gold-light); }

.nr-media-contact a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .nr-media-contact { padding: 1.25rem; }
  .nr-media-contact dl { grid-template-columns: 1fr; gap: 0.15rem; }
  .nr-media-contact dd + dt { margin-top: 0.6rem; }
}

/* Share controls. */
.nr-share {
  max-width: var(--nr-measure);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--nr-rule);
}

.nr-share h2 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nr-ink-muted);
  margin: 0 0 1rem;
}

.nr-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nr-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.95rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--nr-ink);
  background: var(--nr-surface);
  border: 1px solid var(--nr-rule-strong);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nr-share__btn:hover {
  border-color: var(--nr-ink);
  background: var(--nr-surface-sunken);
}

.nr-share__btn svg { width: 15px; height: 15px; fill: currentColor; flex: none; }

.nr-share__status {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--nr-accent-text);
  min-height: 1.2em;
}

/* Related news. */
.nr-related {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--nr-rule);
}

.nr-related > h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 2rem;
}

/* ------------------------------------------------- media resources ----- */

.nr-resources {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 700px) {
  .nr-resources { grid-template-columns: repeat(2, 1fr); }
}

.nr-resource {
  padding: 1.75rem;
  background: var(--nr-surface-sunken);
  border: 1px solid var(--nr-rule);
  border-radius: var(--nr-radius);
}

.nr-resource h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--nr-ink);
}

.nr-resource p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--nr-ink-soft);
  margin: 0;
}

.nr-resource__status {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: rgba(247, 148, 0, 0.16);
  color: var(--nr-accent-text);
}

.nr-cta-band {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--nr-radius);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: #000;
}

.nr-cta-band h2 {
  font-size: clamp(1.375rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.nr-cta-band p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.78);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.nr-btn-dark {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  background: #000;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nr-btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

.nr-btn-dark:focus-visible { outline: 3px solid #000; outline-offset: 3px; }

/* --------------------------------------------------- generated hero ---- */
/* Branded fallback used when an article has no approved photograph. */

.nr-fallback {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: clamp(1.25rem, 3.5%, 2.25rem);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(250, 218, 11, 0.22) 0%, rgba(250, 218, 11, 0) 55%),
    linear-gradient(155deg, #131313 0%, #000000 100%);
  color: #fff;
  text-align: left;
}

/* The fallback is built from <span> elements so it can sit inside an anchor;
   each part therefore needs its box type declared. Wrapped in :where() so this
   default carries no specificity and the flex row below still wins. */
:where(.nr-fallback) > span { display: block; }

.nr-fallback__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nr-fallback__mark {
  width: clamp(30px, 8%, 44px);
  height: auto;
  flex: none;
}

.nr-fallback__cat {
  display: block;
  font-size: clamp(0.5625rem, 1.1vw, 0.6875rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Clamped to three lines with max-height rather than -webkit-line-clamp, which
   requires display:-webkit-box and stopped painting the text at all in current
   Chrome once the standard `line-clamp` property shipped. */
.nr-fallback__title {
  display: block;
  overflow: hidden;
  max-height: 3.6em;
  font-size: clamp(0.9375rem, 2.6vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.nr-fallback__rule {
  display: block;
  height: 3px;
  width: 44px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.nr-card .nr-fallback__title { font-size: clamp(0.875rem, 3.4vw, 1.0625rem); }

/* Article-page banner variant: a shorter frame with larger type, so a
   text-only hero reads as a deliberate title card rather than an empty box. */
.nr-frame--banner { aspect-ratio: 12 / 5; }

.nr-fallback--hero { padding: clamp(1.5rem, 4%, 3rem); }

.nr-fallback--hero .nr-fallback__mark { width: clamp(38px, 6%, 56px); }

.nr-fallback--hero .nr-fallback__cat { font-size: clamp(0.6875rem, 1vw, 0.8125rem); }

.nr-fallback--hero .nr-fallback__rule {
  width: 64px;
  height: 4px;
  margin-bottom: 1rem;
}

.nr-fallback--hero .nr-fallback__title {
  font-size: clamp(1.25rem, 3.4vw, 2.375rem);
  max-height: none;
}

/* ------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  .nr *,
  .nr *::before,
  .nr *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .nr-card:hover .nr-frame { transform: none; }
  .nr-btn-dark:hover { transform: none; }
  .nr-link:hover { gap: 0.4rem; }
}

/* ------------------------------------------------------------- print --- */

@media print {
  .nr-controls, .nr-share, .nr-related, .nr-breadcrumbs { display: none; }
  .nr-main { margin-top: 0; }
  .nr-media-contact { background: #fff; color: #000; border: 1px solid #000; }
  .nr-media-contact h2, .nr-media-contact a { color: #000; }
}
