@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');

/*
 * Newsgraphy — Inner pages (single posts + static pages)
 * Used by single.php and page.php
 */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens (duplicated from homepage so inner pages are self-contained) ── */
:root {
  --blue:      #0866bc;
  --blue900:   #03284b;
  --blue800:   #043d70;
  --blue400:   #5293d0;
  --orange:    #e27705;
  --orange800: #874703;
  --sans:      "Poppins","Noto Sans SC","Helvetica Neue",Arial,system-ui,sans-serif;
  --serif:     "DM Serif Display",Georgia,serif;
  --display:   "Poppins","AlibabaPuHuiTi Black","Noto Sans SC",sans-serif;
  --text:      #0d1117;
  --muted:     #6b7280;
  --border:    #e2e8f0;
  --surface:   #f7fafd;
}

@font-face {
  font-family: "AlibabaPuHuiTi Black";
  src: url('../fonts/AlibabaPuHuiTi-3-115-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

html, body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════ */
#ng-inner-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 200;
  background: var(--blue900);
  border-bottom: 3px solid var(--orange);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 0;
}

/* Compensate for fixed nav — push page content down */
body.ng-inner {
  padding-top: 72px;
}

.ng-inner-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.ng-inner-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.ng-inner-nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: 28px;
}
.ng-inner-nav-links a {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--sans);
  padding: 6px 12px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-radius: 6px;
  transition: color 150ms, background 150ms;
  display: block;
}
.ng-inner-nav-links a:hover,
.ng-inner-nav-links a.current {
  color: #fff;
  background: rgba(255,255,255,.09);
}

.ng-inner-nav-spacer { flex: 1; }

/* ── Stories dropdown (shared with homepage) ── */
.ng-has-dropdown { position: relative; }
.ng-has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: .55; }
.ng-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #03284b;
  border-radius: 10px;
  list-style: none;
  padding: 6px 0;
  min-width: 170px;
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms, transform 150ms, visibility 150ms;
  z-index: 200;
  pointer-events: none;
}
.ng-has-dropdown:hover .ng-dropdown,
.ng-has-dropdown:focus-within .ng-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.ng-dropdown li a {
  display: block;
  padding: 7px 18px;
  color: rgba(255,255,255,.72) !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 120ms, background 120ms;
}
.ng-dropdown li a:hover {
  color: #fff !important;
  background: rgba(255,255,255,.08);
}

/* ── Search button ── */
.ng-nav-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  padding: 6px 10px;
  transition: color 120ms;
  display: flex;
  align-items: center;
}
.ng-nav-search-btn:hover { color: #fff; }

/* ── Search overlay ── */
.ng-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3,40,75,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.ng-search-overlay.open { display: flex; }
.ng-search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 14px 20px;
  width: min(620px, 88vw);
}
.ng-search-input {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  font-family: inherit;
  width: 100%;
  outline: none;
}
.ng-search-input::placeholder { color: rgba(255,255,255,.35); }
.ng-search-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: color 120ms;
}
.ng-search-close:hover { color: #fff; }

/* Language toggle */
.ng-inner-lang-toggle {
  font-size: 12px;
  font-weight: 900;
  font-family: var(--sans);
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: background 120ms;
  margin-left: 8px;
}
.ng-inner-lang-toggle:hover { background: rgba(255,255,255,.22); }

.ng-inner-cta {
  font-size: 13px;
  font-weight: 900;
  font-family: var(--sans);
  padding: 8px 22px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.4);
  white-space: nowrap;
  transition: background 150ms, border-color 150ms;
  margin-left: 12px;
}
.ng-inner-cta:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

/* Hamburger (mobile) */
.ng-inner-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  margin-left: 8px;
}
.ng-inner-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms, opacity 200ms;
}
.ng-inner-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ng-inner-hamburger.open span:nth-child(2) { opacity: 0; }
.ng-inner-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.ng-inner-mobile-menu {
  display: none;
  position: fixed;
  top: 75px; /* nav + border */
  left: 0; right: 0;
  z-index: 199;
  flex-direction: column;
  background: rgba(3,40,75,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ng-inner-mobile-menu.open { display: flex; }
.ng-inner-mobile-menu a {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--sans);
  color: rgba(255,255,255,.85);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  display: block;
}
.ng-inner-mobile-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }
.ng-inner-mobile-menu a.ng-mobile-login {
  margin: 16px 24px 0;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 12px 24px;
  border-bottom: none;
  font-weight: 900;
}

/* ════════════════════════════════════════════════════════════════
   GOOGLE TRANSLATE — suppress injected UI completely
════════════════════════════════════════════════════════════════ */
/* iframe toolbar that sits at the very top of the viewport */
.goog-te-banner-frame { display: none !important; }
/* The outer skip-translate wrapper Google injects into <body> */
body > .skiptranslate { display: none !important; }
/* Google shifts body.top to make room for the toolbar — undo it */
body { top: 0 !important; }
/* Tooltip balloon that appears on selected text */
#goog-gt-tt,
.goog-te-balloon-frame { display: none !important; }
/* The combo-box container (hidden inside our #ng-gt-el div) */
.goog-te-gadget { font-size: 0 !important; }

/* ════════════════════════════════════════════════════════════════
   READING PROGRESS BAR
════════════════════════════════════════════════════════════════ */
#ng-progress {
  position: fixed;
  top: 72px; /* flush to bottom of nav, overlays the border */
  left: 0;
  width: 0%;
  height: 3px;
  background: #0866bc;
  z-index: 202;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════
   ARTICLE — single.php
════════════════════════════════════════════════════════════════ */

/* ── Article header ── */
.ng-article-header {
  max-width: 800px;
  margin: 56px auto 48px;
  padding: 0 48px;
  text-align: center;
}

.ng-article-category {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 150ms;
}
.ng-article-category:hover { background: var(--blue800); }

.ng-article-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 20px;
}

.ng-article-deck {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
}

.ng-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.ng-article-meta .sep { color: var(--border); }
.ng-article-meta strong { color: var(--text); font-weight: 700; }
.ng-article-meta time { color: var(--muted); }

/* ── Featured image ── */
.ng-article-image {
  max-width: 1000px;
  margin: 0 auto 52px;
  padding: 0 48px;
}
.ng-article-image img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--surface);
}
.ng-article-image figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── Article body ── */
.ng-article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 48px;
  font-size: 18px;
  line-height: 1.85;
  color: #1a1a1a;
}

.ng-article-body > * + * { margin-top: 24px; }

.ng-article-body h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-top: 52px;
  margin-bottom: 8px;
  color: var(--text);
}
.ng-article-body h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 8px;
  color: var(--text);
}
.ng-article-body h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  margin-top: 32px;
}

.ng-article-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ng-article-body a:hover { color: var(--blue800); }

.ng-article-body ul,
.ng-article-body ol {
  padding-left: 24px;
}
.ng-article-body li { margin-bottom: 8px; }

/* Pull quote */
.ng-article-body blockquote {
  border-left: 4px solid var(--orange);
  background: var(--surface);
  margin: 36px -12px;
  padding: 20px 28px;
  font-size: 20px;
  font-style: italic;
  color: var(--blue900);
  line-height: 1.6;
}
.ng-article-body blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  color: var(--muted);
}

/* Data callout */
.ng-data-callout {
  background: var(--blue900);
  color: #fff;
  padding: 28px 32px;
  margin: 36px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.ng-data-callout .ng-dc-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--orange);
  flex-shrink: 0;
}
.ng-data-callout .ng-dc-label {
  font-size: 15px;
  line-height: 1.55;
  opacity: .8;
}

/* Tables */
.ng-article-body table,
.ng-article-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 32px 0;
}
.ng-article-body th {
  background: var(--blue900);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ng-article-body td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.ng-article-body tr:nth-child(even) td { background: var(--surface); }
.ng-article-body tr:hover td { background: #eef4fb; }

/* Images in body */
.ng-article-body img,
.ng-article-body figure {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  display: block;
}
.ng-article-body figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: -22px;
  margin-bottom: 32px;
}

/* Horizontal rule */
.ng-article-body hr {
  border: none;
  border-top: 2px solid var(--border);
  margin: 48px 0;
}

/* ── Article tags ── */
/* Buy Me a Coffee — below article meta */
.ng-article-bmac {
  text-align: center;
  margin-top: 20px;
}
.ng-article-bmac img {
  height: 45px;
  width: auto;
  display: inline-block;
}

/* Bottom CTA — above tags */
.ng-article-bottom-cta {
  max-width: 700px;
  margin: 52px auto 0;
  padding: 28px 48px;
  background: var(--surface, #f7f6f3);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.ng-article-bottom-cta p { margin: 0 0 12px; }
.ng-article-bottom-cta p:last-child { margin-bottom: 0; }
.ng-article-bottom-cta a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ng-article-tags {
  max-width: 700px;
  margin: 28px auto 0;
  padding: 24px 48px 0;
  border-top: 2px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ng-article-tags .ng-tags-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.ng-article-tags a {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  transition: border-color 150ms, background 150ms;
}
.ng-article-tags a:hover {
  border-color: var(--blue);
  background: #eef4fb;
}

/* ── Related posts ── */
.ng-related {
  background: var(--surface);
  border-top: 3px solid var(--orange);
  padding: 56px 48px;
  margin-top: 72px;
}
.ng-related-inner { max-width: 1100px; margin: 0 auto; }
.ng-related-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ng-related-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ng-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ng-related-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 200ms, box-shadow 200ms;
  position: relative;
}
.ng-related-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms;
}
.ng-related-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(8,102,188,.08); }
.ng-related-card:hover::after { transform: scaleX(1); }
.ng-related-card .ng-rc-cat {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange800);
}
.ng-related-card .ng-rc-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--text);
  transition: color 150ms;
}
.ng-related-card:hover .ng-rc-title { color: var(--blue); }
.ng-related-card .ng-rc-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.ng-related-card .ng-rc-date {
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
}

/* ════════════════════════════════════════════════════════════════
   PAGE — page.php
════════════════════════════════════════════════════════════════ */
.ng-page-hero {
  background: var(--blue900);
  color: #fff;
  padding: 64px 48px 56px;
  border-bottom: 3px solid var(--orange);
}
.ng-page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.ng-page-eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ng-page-eyebrow::before {
  content: "";
  width: 24px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}
.ng-page-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
}

.ng-page-body-wrap {
  /* No horizontal max-width — cover blocks need to escape to full viewport */
  padding: 60px 0 80px;
}
.ng-page-body {
  font-size: 17px;
  line-height: 1.85;
  color: #1a1a1a;
}
/* Apply reading column width to each child individually */
.ng-page-body > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
}
/* Cover blocks break out to full viewport width */
.ng-page-body > .wp-block-cover {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.ng-page-body > * + * { margin-top: 22px; }
.ng-page-body h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-top: 52px;
  color: var(--text);
}
.ng-page-body h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-top: 40px;
  color: var(--text);
}
.ng-page-body a { color: var(--blue); }
.ng-page-body a:hover { color: var(--blue800); }
.ng-page-body ul,
.ng-page-body ol { padding-left: 24px; }
.ng-page-body li { margin-bottom: 8px; }
.ng-page-body blockquote {
  border-left: 4px solid var(--orange);
  background: var(--surface);
  margin: 32px -12px;
  padding: 20px 28px;
  font-style: italic;
  color: var(--blue900);
  font-size: 19px;
  line-height: 1.6;
}
.ng-page-body img { max-width: 100%; height: auto; margin: 28px 0; display: block; }

/* ════════════════════════════════════════════════════════════════
   INNER FOOTER
════════════════════════════════════════════════════════════════ */
.ng-inner-footer {
  background: var(--blue900);
  color: rgba(255,255,255,.75);
  border-top: 3px solid var(--orange);
  padding: 56px 48px 40px;
}
.ng-inner-footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 40px;
}
.ng-inner-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ng-inner-footer-logo { height: 48px; width: auto; }
.ng-inner-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  white-space: nowrap;
}
.ng-inner-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 48px;
  align-content: start;
  justify-content: end;
}
.ng-inner-footer-nav a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  text-align: center;
  transition: color 150ms;
}
.ng-inner-footer-nav a:hover { color: #fff; }
.ng-inner-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1180px;
  margin: 0 auto;
}
.ng-inner-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.ng-inner-footer-social { display: flex; gap: 20px; }
.ng-inner-footer-social a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 150ms;
}
.ng-inner-footer-social a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ng-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* WordPress admin bar offset (logged-in users) */
.admin-bar #ng-inner-nav        { top: 32px; }
.admin-bar #ng-progress         { top: calc(32px + 72px); }
.admin-bar body.ng-inner        { padding-top: calc(72px + 32px); }

@media screen and (max-width: 782px) {
  .admin-bar #ng-inner-nav      { top: 46px; }
  .admin-bar #ng-progress       { top: calc(46px + 64px); }
  .admin-bar body.ng-inner      { padding-top: calc(64px + 46px); }
}

@media (max-width: 768px) {
  /* Nav */
  #ng-inner-nav { padding: 0 20px; height: 64px; }
  body.ng-inner { padding-top: 64px; }
  .ng-inner-logo img { height: 38px; }
  .ng-inner-nav-links { display: none; }
  .ng-inner-cta { display: none; }
  /* lang toggle stays visible on mobile between logo and hamburger */
  .ng-inner-lang-toggle { margin-left: auto; }
  .ng-inner-hamburger { display: flex; margin-left: 8px; }
  #ng-progress { top: 64px; }
  .ng-inner-mobile-menu { top: 67px; }

  /* Article */
  .ng-article-header { padding: 0 20px; margin: 40px auto 36px; }
  .ng-article-headline { font-size: clamp(28px, 8vw, 44px); }
  .ng-article-deck { font-size: 16px; }
  .ng-article-image { padding: 0; }
  .ng-article-body { padding: 0 20px; font-size: 16px; }
  .ng-article-body blockquote { margin-left: 0; margin-right: 0; }
  .ng-article-tags { padding: 24px 20px 0; }

  /* Page */
  .ng-page-hero { padding: 48px 20px 40px; }
  .ng-page-body-wrap { padding: 40px 20px 60px; }
  .ng-page-body { font-size: 16px; }
  .ng-page-body blockquote { margin-left: 0; margin-right: 0; }

  /* Related */
  .ng-related { padding: 40px 20px; margin-top: 56px; }
  .ng-related-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .ng-inner-footer { padding: 48px 20px 32px; }
  .ng-inner-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .ng-inner-footer-tagline { white-space: normal; }
  .ng-inner-footer-nav { justify-content: start; gap: 10px 32px; }
  .ng-inner-footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .ng-article-headline { font-size: clamp(26px, 9vw, 38px); }
  .ng-page-title { font-size: clamp(28px, 9vw, 42px); }
  .ng-inner-footer-nav { gap: 20px; }
  .ng-data-callout { flex-direction: column; gap: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   ARCHIVE & SEARCH
════════════════════════════════════════════════════════════════ */
.ng-archive-wrap {
  padding-top: 48px;
  padding-bottom: 80px;
}
.ng-archive-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}
.ng-archive-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  align-items: start;
}
.ng-archive-date {
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.35);
  padding-top: 4px;
  letter-spacing: .02em;
}
.ng-archive-title {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--text);
}
.ng-archive-title a {
  color: inherit;
  text-decoration: none;
}
.ng-archive-title a:hover { color: var(--blue); }
.ng-archive-excerpt {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(0,0,0,.5);
  line-height: 1.6;
}
.ng-archive-empty {
  text-align: center;
  padding: 64px 0;
  color: rgba(0,0,0,.4);
  font-size: 16px;
}
.ng-archive-pagination {
  padding: 40px 0 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.ng-archive-pagination .page-numbers {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border: 1.5px solid transparent;
}
.ng-archive-pagination .page-numbers.current {
  background: var(--blue);
  color: #fff;
}
.ng-archive-pagination .page-numbers:hover:not(.current) {
  border-color: var(--blue);
}
@media (max-width: 768px) {
  .ng-archive-list { padding: 0 20px; }
  .ng-archive-item { grid-template-columns: 1fr; gap: 6px; }
  .ng-archive-date { font-size: 12px; }
}
