/* ═══════════════════════════════════════════════════════
   NOVAPUNK NEWSLETTER — editorial.css
   Nike about-page inspired layout system
   Full-bleed, editorial, image-led, minimal UI
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset for editorial pages ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Root ── */
body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.nl-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.09);
}

.nl-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.35s;
}
.nl-nav.scrolled .nl-logo { color: #0a0a0a; }

.nl-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nl-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.35s;
}
.nl-nav-link:hover { border-bottom-color: rgba(255,255,255,0.7); }
.nl-nav.scrolled .nl-nav-link { color: #0a0a0a; }
.nl-nav.scrolled .nl-nav-link:hover { border-bottom-color: #0a0a0a; }

/* ═══════════════════════════════════════
   MASTHEAD — full viewport hero
═══════════════════════════════════════ */
.nl-masthead {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 5rem 2.5rem;
}

.nl-masthead-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
}

.nl-masthead-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.42) 38%,
    rgba(0,0,0,0.18) 65%,
    rgba(0,0,0,0.08) 100%
  );
}

.nl-masthead-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.nl-masthead-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nl-masthead-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.nl-masthead-headline {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 2px 60px rgba(0,0,0,0.25);
  margin-bottom: 1.6rem;
}

.nl-masthead-sub {
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 0.03em;
  max-width: 500px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   ISSUE CARDS — index page
═══════════════════════════════════════ */
.nl-issue-grid {
  display: flex;
  flex-direction: column;
}

.nl-issue-card {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 2.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nl-issue-card:hover {
  box-shadow:
    0 0 20px rgba(180, 120, 255, 0.15),
    0 0 40px rgba(0, 200, 255, 0.10),
    0 0 80px rgba(255, 180, 100, 0.06),
    0 0 120px rgba(180, 120, 255, 0.05);
}

.nl-issue-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nl-issue-card:hover .nl-issue-bg { transform: scale(1.04); }

.nl-issue-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.32) 42%,
    rgba(0,0,0,0.08) 100%
  );
}

.nl-issue-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.nl-issue-left { flex: 1; max-width: 680px; }

.nl-issue-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.85rem;
}

.nl-issue-headline {
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.nl-issue-teaser {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: rgba(255,255,255,0.68);
  font-weight: 400;
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.nl-issue-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  transition: gap 0.25s, border-color 0.25s;
}
.nl-issue-cta::after { content: '→'; transition: transform 0.25s; }
.nl-issue-card:hover .nl-issue-cta { gap: 1rem; border-bottom-color: rgba(255,255,255,0.8); }
.nl-issue-card:hover .nl-issue-cta::after { transform: translateX(4px); }

.nl-issue-vol {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   ARTICLE PAGE — section layouts
═══════════════════════════════════════ */

/* Section: full-bleed photo with text overlay */
.nl-section-overlay {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 5rem 2.5rem;
  overflow: hidden;
}

.nl-section-overlay.align-center { align-items: center; }
.nl-section-overlay.align-top    { align-items: flex-start; padding-top: 8rem; }

.nl-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nl-bg.position-top    { background-position: center top; }
.nl-bg.position-bottom { background-position: center bottom; }
.nl-bg.position-left   { background-position: left center; }

.nl-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.50) 35%,
    rgba(0,0,0,0.22) 65%,
    rgba(0,0,0,0) 100%
  );
}
.nl-bg.overlay-light::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.12) 75%,
    rgba(0,0,0,0) 100%
  );
}
.nl-bg.overlay-strong::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.62) 35%,
    rgba(0,0,0,0.30) 65%,
    rgba(0,0,0,0.08) 100%
  );
}

.nl-overlay-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Section number badge */
.nl-section-num {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 3;
}
.nl-section-num.light { color: rgba(255,255,255,0.3); }
.nl-section-num.dark  { color: rgba(0,0,0,0.18); }

/* Section: clean white text block */
.nl-section-white {
  padding: 7rem 2.5rem;
  background: #ffffff;
}

.nl-section-white.narrow { padding: 7rem 2.5rem; }

.nl-section-white .nl-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section: dark full-bleed text */
.nl-section-dark {
  padding: 7rem 2.5rem;
  background: #0a0a0a;
  color: #ffffff;
}

.nl-section-dark .nl-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section: off-white / light grey */
.nl-section-offwhite {
  padding: 7rem 2.5rem;
  background: #f7f7f5;
}

.nl-section-offwhite .nl-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section: split layout 50/50 */
.nl-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.nl-section-split.photo-right { }
.nl-section-split.photo-left  { }

.nl-split-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
}

.nl-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
  background: #ffffff;
}

.nl-split-text.dark {
  background: #0a0a0a;
  color: #ffffff;
}

.nl-split-text.offwhite { background: #f7f7f5; }

/* Section: full-bleed photo, text stack below */
.nl-section-photo-stack .nl-stack-photo {
  width: 100%;
  height: 62vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nl-section-photo-stack .nl-stack-text {
  padding: 5rem 2.5rem;
  background: #ffffff;
}

.nl-section-photo-stack.dark .nl-stack-text {
  background: #0a0a0a;
  color: #ffffff;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY SYSTEM
═══════════════════════════════════════ */

/* Labels / eyebrows */
.nl-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nl-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* White context overrides */
.nl-section-overlay .nl-label,
.nl-section-dark .nl-label,
.nl-split-text.dark .nl-label {
  color: rgba(255,255,255,0.45);
}

/* H1 — hero headline on photo */
.nl-h1 {
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 12px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

/* H2 — section headline */
.nl-h2 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.022em;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}
.nl-section-dark .nl-h2,
.nl-split-text.dark .nl-h2,
.nl-section-overlay .nl-h2 { color: #ffffff; }

/* H3 — subsection */
.nl-h3 {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #0a0a0a;
  margin-bottom: 0.9rem;
}
.nl-section-dark .nl-h3,
.nl-split-text.dark .nl-h3 { color: #ffffff; }

/* Body text */
.nl-body {
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  line-height: 1.80;
  color: #2a2a2a;
  max-width: 680px;
  font-weight: 400;
}
.nl-body p { margin-bottom: 1.3rem; }
.nl-body p:last-child { margin-bottom: 0; }
.nl-body strong { font-weight: 700; color: #0a0a0a; }

.nl-section-dark .nl-body,
.nl-split-text.dark .nl-body { color: rgba(255,255,255,0.72); }
.nl-section-dark .nl-body strong,
.nl-split-text.dark .nl-body strong { color: #ffffff; }

/* Wide body (no max-width cap) */
.nl-body.wide { max-width: 860px; }
.nl-body.full  { max-width: none; }

/* ── Text readability over images ── */
/* Headlines in overlay sections get hard shadow for any image brightness */
.nl-section-overlay .nl-h2,
.nl-section-overlay .nl-h3 {
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 12px rgba(0,0,0,0.5);
}
/* Masthead headline */
.nl-masthead-headline {
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 16px rgba(0,0,0,0.5);
}
/* Body text and labels over images */
.nl-section-overlay .nl-body,
.nl-section-overlay .nl-label {
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
/* Issue card headlines (index page) */
.nl-issue-headline {
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 12px rgba(0,0,0,0.5);
}

/* Pull quote */
.nl-pullquote {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #0a0a0a;
  max-width: 700px;
  padding-left: 2rem;
  border-left: 3px solid #0a0a0a;
  margin: 2.5rem 0;
}
.nl-section-dark .nl-pullquote {
  color: #ffffff;
  border-left-color: rgba(255,255,255,0.5);
}

/* Caption */
.nl-caption {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-top: 1rem;
}

/* ═══════════════════════════════════════
   ARTICLE FOOTER NAVIGATION
═══════════════════════════════════════ */
.nl-article-footer {
  padding: 4rem 2.5rem;
  background: #f5f5f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.nl-footer-nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  min-height: 44px;
  min-width: 44px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s, box-shadow 0.45s;
}
.nl-footer-nav-link:hover {
  border-bottom-color: #0a0a0a;
  box-shadow:
    0 0 18px rgba(180, 120, 255, 0.12),
    0 0 36px rgba(0, 200, 255, 0.08),
    0 0 60px rgba(255, 180, 100, 0.05);
}

.nl-footer-center {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

/* ═══════════════════════════════════════
   NEWSLETTER INDEX FOOTER
═══════════════════════════════════════ */
.nl-index-footer {
  padding: 4rem 2.5rem;
  background: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nl-index-footer-brand {
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.nl-index-footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   FADE-IN ANIMATIONS
═══════════════════════════════════════ */
.nl-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nl-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.nl-fade.delay-1 { transition-delay: 0.1s; }
.nl-fade.delay-2 { transition-delay: 0.2s; }
.nl-fade.delay-3 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.nl-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.nl-inner-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.nl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.nl-spacer { height: 3rem; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nl-split-text { padding: 4rem 3rem; }
}

@media (max-width: 900px) {
  .nl-section-split {
    grid-template-columns: 1fr;
  }
  .nl-section-split.photo-right .nl-split-photo { order: -1; }
  .nl-section-split.photo-left  .nl-split-photo { order: -1; }
  .nl-split-photo { min-height: 56vw; }
  .nl-split-text  { padding: 3.5rem 2rem; }
  .nl-two-col     { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nl-nav,
  .nl-article-nav { padding: 1.25rem 1.5rem; }

  .nl-masthead { padding: 3.5rem 1.5rem; }
  .nl-masthead-content { max-width: 100%; }

  .nl-section-overlay { padding: 3.5rem 1.5rem; min-height: 80vh; }
  .nl-section-white   { padding: 4.5rem 1.5rem; }
  .nl-section-dark    { padding: 4.5rem 1.5rem; }
  .nl-section-offwhite{ padding: 4.5rem 1.5rem; }
  .nl-split-text      { padding: 3rem 1.5rem; }

  .nl-section-photo-stack .nl-stack-text { padding: 3.5rem 1.5rem; }

  .nl-issue-card   { padding: 2.5rem 1.5rem; min-height: 72vw; }
  .nl-issue-content{ flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .nl-issue-vol    { display: none; }

  .nl-article-footer { padding: 3rem 1.5rem; }
  .nl-index-footer   { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .nl-nav, .nl-article-nav { padding: 1.1rem 1.1rem; }

  .nl-masthead { padding: 2.5rem 1.1rem; min-height: 90vw; }
  .nl-section-overlay  { padding: 2.5rem 1.1rem; }
  .nl-section-white    { padding: 3.5rem 1.1rem; }
  .nl-section-dark     { padding: 3.5rem 1.1rem; }
  .nl-section-offwhite { padding: 3.5rem 1.1rem; }
  .nl-split-text       { padding: 2.5rem 1.1rem; }
  .nl-section-photo-stack .nl-stack-text { padding: 2.5rem 1.1rem; }
  .nl-section-num      { right: 1.1rem; top: 1.5rem; }
  .nl-article-footer   { padding: 2rem 1.1rem; flex-direction: column; align-items: flex-start; }
  .nl-index-footer     { padding: 2rem 1.1rem; }

  .nl-issue-card { padding: 1.75rem 1.1rem; }

  .nl-pullquote { padding-left: 1.25rem; font-size: clamp(1.1rem, 4vw, 1.5rem); }
}

/* ═══════════════════════════════════════
   ISSUE FOOTER NAVIGATION (per-issue pages)
═══════════════════════════════════════ */
.nl-issue-footer {
  padding: 4rem 2.5rem;
  background: #0a0a0a;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nl-issue-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nl-footer-nav {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nl-footer-nav:hover {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.4);
}

.nl-footer-center {
  text-align: center;
}

.nl-footer-brand {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.nl-footer-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════
   TWO-COLUMN BODY TEXT BLOCK
═══════════════════════════════════════ */
.nl-body-columns {
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  line-height: 1.80;
  color: #2a2a2a;
  max-width: 1100px;
  font-weight: 400;
  columns: 2;
  column-gap: 3.5rem;
  column-rule: 1px solid rgba(0,0,0,0.08);
}
.nl-body-columns p { margin-bottom: 1.3rem; break-inside: avoid; }
.nl-body-columns p:last-child { margin-bottom: 0; }
.nl-body-columns strong { font-weight: 700; color: #0a0a0a; }

.nl-section-dark .nl-body-columns {
  color: rgba(255,255,255,0.72);
  column-rule-color: rgba(255,255,255,0.07);
}
.nl-section-dark .nl-body-columns strong { color: #ffffff; }

@media (max-width: 768px) {
  .nl-body-columns {
    columns: 1;
    column-rule: none;
  }
  .nl-issue-footer { padding: 3rem 1.5rem; }
  .nl-issue-footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nl-footer-center { text-align: left; }
}

@media (max-width: 480px) {
  .nl-issue-footer { padding: 2rem 1.1rem; }
}

/* ── No horizontal scroll on any device ── */
html, body { max-width: 100%; overflow-x: hidden; }
