/* ==========================================================================
   NexaGulf -- Theme stylesheet (v3)

   Single typeface (Inter), white/neutral surfaces, hairline rules.
   Signature device: the sourceline -- a small metadata row under every
   headline. Tokens live in style.css (:root).
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ng-font-body);
  font-size: var(--ng-fs-body);
  line-height: var(--ng-lh-body);
  color: var(--ng-ink);
  background: var(--ng-bg);
  font-feature-settings: "cv05" 1, "cv11" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ng-dur) var(--ng-ease); }
p { margin: 0 0 1em; }
hr { border: 0; border-top: 1px solid var(--ng-line); margin: var(--ng-space-6) 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ng-font-display);
  color: var(--ng-ink);
  margin: 0 0 .5em;
  line-height: var(--ng-lh-head);
  font-weight: 700;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
h1 { font-size: var(--ng-fs-h1); line-height: var(--ng-lh-tight); letter-spacing: -0.028em; }
h2 { font-size: var(--ng-fs-h2); letter-spacing: -0.024em; }
h3 { font-size: var(--ng-fs-h3); letter-spacing: -0.018em; }
h4 { font-size: var(--ng-fs-h4); letter-spacing: -0.012em; }

:focus-visible { outline: 2px solid var(--ng-green); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--ng-green); color: #fff; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.ng-skip-link { position: absolute; left: -999px; top: 0; z-index: 9999; }
.ng-skip-link:focus { left: 12px; top: 12px; width: auto; height: auto; clip: auto; background: var(--ng-ink); color: #fff; padding: 12px 20px; border-radius: var(--ng-radius); }

.ng-wrap { max-width: var(--ng-container); margin: 0 auto; padding: 0 var(--ng-gutter); }
.ng-wrap-wide { max-width: var(--ng-container-wide); margin: 0 auto; padding: 0 var(--ng-gutter); }
.ng-measure { max-width: var(--ng-article-w); }

.ng-eyebrow {
  display: inline-block; font-size: var(--ng-fs-meta); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ng-green);
}

/* Numerals: every figure on this site is tabular. */
.ng-num, table td, table th, time, .ng-calc-result, .ng-rate-table { font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   Sourceline -- signature device
   -------------------------------------------------------------------------- */
.ng-sourceline {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0 10px;
  font-size: var(--ng-fs-meta); font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ng-muted);
}
.ng-sourceline .dot { color: var(--ng-line-strong); }
.ng-sourceline a { color: var(--ng-green); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* --------------------------------------------------------------------------
   Buttons + controls
   -------------------------------------------------------------------------- */
.ng-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ng-font-body); font-size: 15px; font-weight: 600; letter-spacing: -.006em;
  padding: 12px 20px; border-radius: var(--ng-radius); border: 1px solid transparent;
  line-height: 1.2; white-space: nowrap; cursor: pointer;
  transition: background-color var(--ng-dur) var(--ng-ease), border-color var(--ng-dur) var(--ng-ease), color var(--ng-dur) var(--ng-ease), transform var(--ng-dur) var(--ng-ease);
}
.ng-btn:active { transform: translateY(1px); }
.ng-btn--sm { padding: 9px 15px; font-size: 14px; }
.ng-btn--lg { padding: 15px 26px; font-size: 16px; }
.ng-btn--primary { background: var(--ng-green); color: #fff; }
.ng-btn--primary:hover { background: var(--ng-green-dark); color: #fff; }
.ng-btn--secondary { background: transparent; color: var(--ng-ink); border-color: var(--ng-line-strong); }
.ng-btn--secondary:hover { background: var(--ng-ink); border-color: var(--ng-ink); color: #fff; }
.ng-btn--ghost { background: var(--ng-surface); color: var(--ng-ink); }
.ng-btn--ghost:hover { background: var(--ng-surface-2); }
.ng-btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.ng-btn--onDark:hover { background: rgba(255,255,255,.1); color: #fff; }
.ng-btn--arrow::after { content: "\2192"; transition: transform var(--ng-dur) var(--ng-ease); }
.ng-btn--arrow:hover::after { transform: translateX(3px); }

.ng-input, .ng-field input[type=text], .ng-field input[type=email], .ng-field input[type=number],
.ng-field input[type=search], .ng-field select, .ng-field textarea {
  width: 100%; font-family: var(--ng-font-body); font-size: 16px; color: var(--ng-ink);
  padding: 12px 14px; border: 1px solid var(--ng-line-strong); background: var(--ng-bg);
  border-radius: var(--ng-radius); transition: border-color var(--ng-dur) var(--ng-ease), box-shadow var(--ng-dur) var(--ng-ease);
}
.ng-input:focus, .ng-field input:focus, .ng-field select:focus, .ng-field textarea:focus {
  outline: none; border-color: var(--ng-green); box-shadow: 0 0 0 3px rgba(13,107,78,.14);
}
.ng-tag, .ng-badge {
  display: inline-block; font-size: var(--ng-fs-meta); font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
  background: var(--ng-green-tint); color: var(--ng-green);
}
.ng-badge--muted { background: var(--ng-surface); color: var(--ng-muted); }
.ng-badge--pending { background: var(--ng-amber-tint); color: var(--ng-amber); }

/* --------------------------------------------------------------------------
   Utility bar + header
   -------------------------------------------------------------------------- */
.ng-utility { background: var(--ng-ink); color: rgba(255,255,255,.7); font-size: 12.5px; letter-spacing: .01em; }
.ng-utility .ng-wrap-wide { display: flex; align-items: center; justify-content: space-between; min-height: 34px; }
.ng-utility strong { color: #fff; font-weight: 600; }
.ng-utility time { color: rgba(255,255,255,.48); }

.ng-header { background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--ng-line); position: sticky; top: 0; z-index: 500; }
.ng-header__inner { display: flex; align-items: center; gap: var(--ng-space-5); min-height: 66px; }
.ng-brand { display: inline-flex; align-items: center; }
.ng-brand img, .ng-brand__mark { height: 26px; width: auto; }
.ng-header__brand { flex-shrink: 0; }
.ng-nav { margin-right: auto; }
.ng-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.ng-menu-item { position: relative; }
.ng-menu-link {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 1px;
  font-size: 15px; font-weight: 500; letter-spacing: -.008em; color: var(--ng-ink-soft);
  padding: 8px 12px; border-radius: var(--ng-radius);
  transition: color var(--ng-dur) var(--ng-ease), background-color var(--ng-dur) var(--ng-ease);
}
.ng-menu-item--top > .ng-menu-link { flex-direction: row; align-items: center; }
.ng-menu-link:hover { color: var(--ng-ink); background: var(--ng-surface); }
.ng-menu-item.current-menu-item > .ng-menu-link,
.ng-menu-item.current_page_parent > .ng-menu-link { color: var(--ng-green); }
.ng-menu-link__sub { font-size: 12px; font-weight: 400; color: var(--ng-muted); }
.ng-menu-item--parent > .ng-menu-link { padding-right: 8px; }
.ng-menu-toggle { display: none; }
.ng-header__actions { display: flex; align-items: center; gap: var(--ng-space-2); flex-shrink: 0; }
.ng-search-toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: none; border-radius: var(--ng-radius); background: transparent; color: var(--ng-ink); cursor: pointer; }
.ng-search-toggle:hover { background: var(--ng-surface); }
.ng-search-toggle svg { width: 19px; height: 19px; }
.ng-search-panel { border-top: 1px solid var(--ng-line); background: var(--ng-bg); padding: var(--ng-space-3) 0; }
.ng-search-panel[hidden] { display: none; }
.ng-search-panel .ng-searchform { max-width: 520px; }

.ng-submenu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 230px; background: #fff; border: 1px solid var(--ng-line); border-radius: var(--ng-radius-md);
  box-shadow: var(--ng-shadow-lg); opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity var(--ng-dur) var(--ng-ease), transform var(--ng-dur) var(--ng-ease), visibility var(--ng-dur);
  z-index: 600;
}
.ng-menu-item--parent:hover > .ng-submenu, .ng-menu-item--parent:focus-within > .ng-submenu,
.ng-menu-item--parent.is-open > .ng-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.ng-submenu .ng-menu-link { display: flex; width: 100%; padding: 9px 12px; }
@media (min-width: 901px) {
  .ng-submenu:has(> li:nth-child(6)):not(:has(> li:nth-child(7))) { min-width: 420px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
}

.ng-burger { display: none; width: 40px; height: 40px; border: 1px solid var(--ng-line); border-radius: var(--ng-radius); background: #fff; align-items: center; justify-content: center; cursor: pointer; }
.ng-burger__bars, .ng-burger__bars::before, .ng-burger__bars::after { display: block; width: 17px; height: 1.8px; border-radius: 2px; background: var(--ng-ink); position: relative; }
.ng-burger__bars::before, .ng-burger__bars::after { content: ""; position: absolute; left: 0; }
.ng-burger__bars::before { top: -6px; }
.ng-burger__bars::after { top: 6px; }

.ng-mobile-nav { position: fixed; inset: 0; background: var(--ng-bg); z-index: 700; padding: var(--ng-space-4); overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform .28s var(--ng-ease), visibility .28s; display: flex; flex-direction: column; }
.ng-mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.ng-mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--ng-space-5); }
.ng-mobile-nav__close { width: 44px; height: 44px; border: 1px solid var(--ng-line); border-radius: var(--ng-radius); background: #fff; display: flex; align-items: center; justify-content: center; }
.ng-mobile-nav .ng-menu { flex-direction: column; align-items: stretch; gap: 0; }
.ng-mobile-nav .ng-menu-item--top { border-bottom: 1px solid var(--ng-line); }
.ng-mobile-nav .ng-menu-link { font-size: 21px; font-weight: 650; letter-spacing: -.02em; padding: 15px 4px; width: 100%; border-radius: 0; }
.ng-mobile-nav .ng-submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 12px 4px; display: grid !important; grid-template-columns: 1fr; }
.ng-mobile-nav .ng-submenu .ng-menu-link { font-size: 15.5px; font-weight: 500; padding: 9px 4px; }
.ng-mobile-nav .ng-menu-toggle { display: none; }
.ng-mobile-nav__cta { margin-top: auto; padding-top: var(--ng-space-4); display: flex; flex-direction: column; gap: 10px; }
.ng-mobile-nav__cta .ng-btn { width: 100%; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.ng-hero { position: relative; padding: var(--ng-space-7) 0; background: var(--ng-ink); color: #fff; overflow: hidden; }
.ng-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(47,201,146,.07), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 68px);
}
.ng-hero .ng-wrap-wide { position: relative; z-index: 1; }
.ng-hero__grid { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: var(--ng-space-6); align-items: start; }
.ng-hero .ng-eyebrow { color: var(--ng-mint); }
.ng-hero__title { color: #fff; font-size: var(--ng-fs-display); margin: 16px 0 20px; line-height: var(--ng-lh-tight); letter-spacing: -.032em; max-width: 660px; }
.ng-hero__sub { font-size: var(--ng-fs-lead); color: rgba(255,255,255,.7); max-width: 540px; line-height: 1.55; margin-bottom: 30px; }
.ng-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.ng-hero__story { display: block; color: #fff; }
.ng-hero__story figure { margin: 0 0 14px; background: rgba(255,255,255,.06); overflow: hidden; border-radius: var(--ng-radius-md); }
.ng-hero__story img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ng-hero__story .ng-sourceline { color: rgba(255,255,255,.5); }

/* --------------------------------------------------------------------------
   Section rhythm
   -------------------------------------------------------------------------- */
.ng-section { padding: var(--ng-space-7) 0; }
.ng-section-tight { padding: var(--ng-space-6) 0; }
.ng-section--ink { background: var(--ng-ink); color: rgba(255,255,255,.84); }
.ng-section--ink h2, .ng-section--ink h3 { color: #fff; }
.ng-section--ink .ng-section-head { border-bottom-color: rgba(255,255,255,.14); }
.ng-section--surface { background: var(--ng-surface); }
.ng-rule-top { border-top: 1px solid var(--ng-line); }
.ng-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--ng-space-4); margin-bottom: var(--ng-space-5); border-bottom: 1px solid var(--ng-line); padding-bottom: var(--ng-space-3); }
.ng-see-all { font-size: 14px; font-weight: 600; color: var(--ng-green); white-space: nowrap; }
.ng-see-all:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Story lead + coverage
   -------------------------------------------------------------------------- */
.ng-story-headline { font-family: var(--ng-font-display); font-weight: 700; letter-spacing: -.022em; line-height: 1.2; color: var(--ng-ink); }
.ng-story-headline a:hover { color: var(--ng-green); }
.ng-story-dek { font-size: var(--ng-fs-small); color: var(--ng-muted); line-height: 1.55; }
.ng-story-lead { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: var(--ng-space-6); }
.ng-story-lead figure { margin: 0 0 14px; background: var(--ng-surface); overflow: hidden; border-radius: var(--ng-radius-md); }
.ng-story-lead img { width: 100%; aspect-ratio: 16/9.5; object-fit: cover; }
.ng-story-lead .ng-story-headline { font-size: 34px; margin: 10px 0; }
.ng-story-side { display: flex; flex-direction: column; }
.ng-story-side__item { padding: var(--ng-space-4) 0; border-top: 1px solid var(--ng-line); }
.ng-story-side__item:first-child { border-top: none; padding-top: 0; }
.ng-story-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ng-space-5); }

/* --------------------------------------------------------------------------
   Topic directory
   -------------------------------------------------------------------------- */
.ng-topic-row { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--ng-ink); border-bottom: 1px solid var(--ng-ink); }
.ng-topic-cell { padding: var(--ng-space-4) var(--ng-space-3); border-right: 1px solid var(--ng-line); transition: background-color var(--ng-dur) var(--ng-ease); }
.ng-topic-cell:last-child { border-right: none; }
.ng-topic-cell:hover { background: var(--ng-surface); }
.ng-topic-cell .t-name { font-family: var(--ng-font-display); font-size: 17px; font-weight: 650; letter-spacing: -.015em; display: block; margin-bottom: 4px; color: var(--ng-ink); }
.ng-topic-cell .t-count { font-size: var(--ng-fs-meta); color: var(--ng-muted); }

/* --------------------------------------------------------------------------
   Country table
   -------------------------------------------------------------------------- */
.ng-country-table { width: 100%; border-collapse: collapse; }
.ng-country-table thead th { text-align: left; font-size: var(--ng-fs-meta); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ng-muted); padding: 0 var(--ng-space-3) var(--ng-space-2); border-bottom: 1px solid var(--ng-ink); }
.ng-country-table tbody td { padding: var(--ng-space-4) var(--ng-space-3); border-bottom: 1px solid var(--ng-line); vertical-align: top; }
.ng-country-table tbody tr { transition: background-color var(--ng-dur) var(--ng-ease); }
.ng-country-table tbody tr:hover td { background: var(--ng-surface); }
.ng-country-table .cn-name { font-family: var(--ng-font-display); font-size: 19px; font-weight: 650; letter-spacing: -.018em; }
.ng-country-table .cn-code { font-size: var(--ng-fs-meta); color: var(--ng-muted); font-weight: 500; }
.ng-country-table .cn-update { font-size: var(--ng-fs-small); color: var(--ng-ink); }
.ng-country-table .cn-topics { font-size: var(--ng-fs-meta); color: var(--ng-muted); }
.ng-country-table .cn-guides { font-size: var(--ng-fs-small); }
.ng-country-table .explore-link { font-size: 14px; font-weight: 600; color: var(--ng-green); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Trust / editorial standard
   -------------------------------------------------------------------------- */
.ng-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ng-space-5) var(--ng-space-6); margin-bottom: var(--ng-space-6); }
.ng-trust-item { display: flex; gap: var(--ng-space-3); }
.ng-trust-num { font-family: var(--ng-font-display); font-size: 15px; font-weight: 700; color: var(--ng-mint); flex-shrink: 0; width: 30px; padding-top: 3px; letter-spacing: .04em; }
.ng-trust-item h4 { font-size: 16px; margin-bottom: 5px; color: #fff; }
.ng-trust-item p { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }
.ng-trust-links { display: flex; gap: var(--ng-space-5); flex-wrap: wrap; padding-top: var(--ng-space-4); border-top: 1px solid rgba(255,255,255,.14); }
.ng-trust-links a { font-size: 14px; font-weight: 600; color: #fff; border-bottom: 1px solid rgba(255,255,255,.32); padding-bottom: 2px; }
.ng-trust-links a:hover { border-bottom-color: var(--ng-mint); color: var(--ng-mint); }

/* --------------------------------------------------------------------------
   Guides
   -------------------------------------------------------------------------- */
.ng-guides-layout { display: grid; grid-template-columns: minmax(0,6fr) minmax(0,6fr); gap: var(--ng-space-6); }
.ng-guide-featured { display: block; }
.ng-guide-featured figure { background: var(--ng-surface); margin: 0 0 var(--ng-space-3); border-radius: var(--ng-radius-md); overflow: hidden; }
.ng-guide-featured img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ng-guide-row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--ng-space-3); padding: var(--ng-space-3) 0; border-top: 1px solid var(--ng-line); }
.ng-guide-row:last-child { border-bottom: 1px solid var(--ng-line); }
.ng-guide-row__title { font-family: var(--ng-font-display); font-size: 17px; font-weight: 600; letter-spacing: -.015em; }
.ng-guide-row__title a:hover { color: var(--ng-green); }
.ng-guide-row__intent { font-size: var(--ng-fs-meta); color: var(--ng-muted); text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }

/* --------------------------------------------------------------------------
   Newsletter
   -------------------------------------------------------------------------- */
.ng-brief { background: var(--ng-green); color: #fff; }
.ng-brief__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--ng-space-6); padding: var(--ng-space-6) 0; }
.ng-brief__copy h2 { color: #fff; font-size: 30px; margin-bottom: var(--ng-space-2); }
.ng-brief__copy p { color: rgba(255,255,255,.8); font-size: var(--ng-fs-small); max-width: 440px; margin: 0; }
.ng-brief__notice { margin-top: 12px; font-size: 14px; font-weight: 600; color: #fff; }
.ng-brief__notice--error { color: #FFD9D9; }
.ng-brief__form { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; width: 380px; }
.ng-brief__form .row { display: flex; gap: 8px; }
.ng-brief__form input[type=email] { flex: 1; padding: 13px 16px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: #fff; font-family: var(--ng-font-body); font-size: 15px; border-radius: var(--ng-radius); }
.ng-brief__form input[type=email]:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.16); }
.ng-brief__form input::placeholder { color: rgba(255,255,255,.55); }
.ng-brief__form .fine { font-size: 12.5px; color: rgba(255,255,255,.62); }
.ng-brief__form .fine a { text-decoration: underline; color: rgba(255,255,255,.85); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ng-footer { background: var(--ng-ink); color: rgba(255,255,255,.6); padding: var(--ng-space-7) 0 var(--ng-space-4); position: relative; }
.ng-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #2FC992, #0D6B4E 55%, #08543C); }
.ng-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: var(--ng-space-5); padding-bottom: var(--ng-space-6); border-bottom: 1px solid rgba(255,255,255,.12); }
.ng-footer__brand svg { height: 24px; margin-bottom: var(--ng-space-3); }
.ng-footer__brand p { font-size: 14px; color: rgba(255,255,255,.5); max-width: 280px; line-height: 1.65; }
.ng-footer-col h5, .ng-footer__col h5 { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: var(--ng-space-3); }
.ng-footer-col ul, .ng-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ng-footer-col a, .ng-footer__col a { font-size: 14.5px; color: rgba(255,255,255,.72); }
.ng-footer-col a:hover, .ng-footer__col a:hover { color: var(--ng-mint); }
.ng-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--ng-space-4); padding-top: var(--ng-space-4); font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; }
.ng-footer__disclaimer { max-width: 760px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */
.ng-article__head { max-width: var(--ng-article-w); }
.ng-article__head h1 { margin: 14px 0 16px; }
.ng-article__standfirst { font-size: var(--ng-fs-lead); color: var(--ng-muted); line-height: 1.55; margin-bottom: var(--ng-space-4); }
.ng-byline { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid var(--ng-line); border-bottom: 1px solid var(--ng-line); flex-wrap: wrap; }
.ng-byline__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ng-surface-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--ng-muted); }
.ng-byline__who { margin-right: auto; }
.ng-byline__name { display: block; font-weight: 600; font-size: 14.5px; }
.ng-byline__role { display: block; font-size: 13px; color: var(--ng-muted); }
.ng-byline__dates { font-size: 13px; color: var(--ng-muted); text-align: right; line-height: 1.6; }
.ng-article__figure { margin: 0 0 var(--ng-space-5); background: var(--ng-surface); max-width: var(--ng-article-w); border-radius: var(--ng-radius-md); overflow: hidden; }
.ng-article__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ng-article__figure figcaption { font-size: 13px; color: var(--ng-muted); margin-top: 8px; padding: 0 2px 8px; }

.ng-callout, .ng-source-box { max-width: var(--ng-article-w); background: var(--ng-surface); border: 1px solid var(--ng-line); border-radius: var(--ng-radius-md); padding: 22px 26px; margin: var(--ng-space-5) 0; }
.ng-callout--means { background: var(--ng-green-tint); border-color: rgba(13,107,78,.16); }
.ng-callout h2, .ng-source-box h2 { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; color: var(--ng-green); }
.ng-callout p, .ng-source-box a, .ng-source-box span { font-size: 16px; line-height: 1.7; }
.ng-callout p:last-child { margin-bottom: 0; }
.ng-source-box a { color: var(--ng-green); text-decoration: underline; text-underline-offset: 3px; }
.ng-disclaimer-inline { max-width: var(--ng-article-w); font-size: 13.5px; line-height: 1.65; color: var(--ng-muted); background: var(--ng-danger-bg); border: 1px solid #F0D9D9; border-radius: var(--ng-radius-md); padding: 16px 20px; margin: var(--ng-space-5) 0; }
.ng-disclaimer-inline p:last-child { margin-bottom: 0; }
.ng-corrections-link { max-width: var(--ng-article-w); font-size: 13px; color: var(--ng-muted); margin-top: 16px; }
.ng-corrections-link a { color: var(--ng-green); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Country single page
   -------------------------------------------------------------------------- */
.ng-country-hero { background: var(--ng-ink); color: #fff; padding: 48px 0 40px; }
.ng-country-hero .ng-crumb { color: rgba(255,255,255,.5); margin-bottom: 20px; }
.ng-country-hero .ng-crumb a { color: rgba(255,255,255,.5); }
.ng-country-hero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--ng-space-4); flex-wrap: wrap; }
.ng-country-hero .ng-eyebrow { color: var(--ng-mint); }
.ng-country-hero h1 { color: #fff; margin: 12px 0 0; }
.ng-facts-inline { display: flex; gap: var(--ng-space-5); margin: 0; flex-wrap: wrap; }
.ng-facts-inline dt { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ng-muted); margin-bottom: 3px; }
.ng-facts-inline dd { margin: 0; font-weight: 650; }
.ng-facts-inline--onDark dt { color: rgba(255,255,255,.5); }
.ng-facts-inline--onDark dd { color: #fff; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.ng-cards { display: grid; gap: var(--ng-space-5); }
.ng-cards--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.ng-cards--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.ng-cards--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.ng-card { background: var(--ng-bg); border: 1px solid var(--ng-line); border-radius: var(--ng-radius-md); overflow: hidden; transition: box-shadow var(--ng-dur) var(--ng-ease), border-color var(--ng-dur) var(--ng-ease), transform var(--ng-dur) var(--ng-ease); }
.ng-card:hover { box-shadow: var(--ng-shadow); border-color: var(--ng-line-strong); transform: translateY(-2px); }
.ng-card__media { display: block; height: 190px; overflow: hidden; background: var(--ng-surface); }
.ng-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ng-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; }
.ng-card__title { font-size: 18px; margin: 0; letter-spacing: -.018em; }
.ng-card__title a { color: var(--ng-ink); }
.ng-card__title a:hover { color: var(--ng-green); }
.ng-card__excerpt { color: var(--ng-muted); font-size: var(--ng-fs-small); margin: 0; }
.ng-card__meta { font-size: var(--ng-fs-meta); color: var(--ng-muted); margin: 0; }
.ng-card--row { flex-direction: row; }

/* --------------------------------------------------------------------------
   Page structure
   -------------------------------------------------------------------------- */
.ng-main { min-height: 40vh; }
.ng-page-head { padding: 44px 0 32px; background: var(--ng-surface); border-bottom: 1px solid var(--ng-line); }
.ng-page-head__title { margin: 8px 0 0; }
.ng-page-head__desc { color: var(--ng-muted); font-size: var(--ng-fs-lead); margin-top: 10px; max-width: 720px; }
.ng-layout { display: grid; grid-template-columns: 1fr; gap: var(--ng-space-6); padding-top: var(--ng-space-6); padding-bottom: var(--ng-space-7); }
.ng-layout--sidebar { grid-template-columns: minmax(0,1fr) 320px; }
.ng-layout__side, .ng-layout__main { min-width: 0; }

.ng-prose { font-size: var(--ng-fs-lead); line-height: 1.75; color: var(--ng-ink-soft); max-width: var(--ng-article-w); }
.ng-prose h2 { font-size: var(--ng-fs-h3); margin: 1.7em 0 .55em; color: var(--ng-ink); }
.ng-prose h3 { font-size: 20px; margin: 1.5em 0 .45em; color: var(--ng-ink); }
.ng-prose a { color: var(--ng-green); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.ng-prose img { margin: 1.6em 0; border-radius: var(--ng-radius-md); }
.ng-prose ul, .ng-prose ol { padding-left: 1.3em; }
.ng-prose li { margin-bottom: .5em; }
.ng-prose blockquote {
  font-size: 21px; line-height: 1.5; font-weight: 500; letter-spacing: -.015em;
  border-left: 3px solid var(--ng-green); padding-left: 22px; margin: 32px 0; color: var(--ng-ink);
}
.ng-prose table { width: 100%; border-collapse: collapse; font-size: var(--ng-fs-small); margin: 1.6em 0; }
.ng-prose th, .ng-prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--ng-line); }
.ng-prose thead th { font-size: var(--ng-fs-meta); text-transform: uppercase; letter-spacing: .07em; color: var(--ng-muted); border-bottom: 1px solid var(--ng-ink); }

.ng-widget { background: var(--ng-bg); border: 1px solid var(--ng-line); border-radius: var(--ng-radius-md); padding: 22px; margin-bottom: 22px; }
.ng-widget__title { font-size: 17px; margin-bottom: 14px; }

.ng-crumb { font-size: 13px; color: var(--ng-muted); display: flex; gap: 8px; flex-wrap: wrap; }
.ng-crumb a { color: var(--ng-muted); }
.ng-crumb a:hover { color: var(--ng-green); }
.ng-crumb .sep { color: var(--ng-line-strong); }

.ng-terms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--ng-line); max-width: var(--ng-article-w); }
.ng-postnav { border-top: 1px solid var(--ng-line); margin-top: 40px; }
.ng-postnav__inner { display: flex; justify-content: space-between; gap: 24px; padding: 28px var(--ng-gutter); }
.ng-postnav__link { max-width: 45%; }
.ng-postnav__link--next { text-align: right; margin-left: auto; }
.ng-postnav__label { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ng-muted); margin-bottom: 4px; }
.ng-postnav__title { font-weight: 600; letter-spacing: -.015em; }

.ng-empty, .ng-empty-state { text-align: center; padding: 48px 24px; color: var(--ng-muted); background: var(--ng-surface); border-radius: var(--ng-radius-md); }
.ng-404 { text-align: center; padding: 96px 0; }
.ng-404 h1 { font-size: 40px; margin: 14px 0 12px; }
.ng-404 p { font-size: var(--ng-fs-lead); color: var(--ng-muted); max-width: 520px; margin: 0 auto 36px; }
.ng-404 .ng-searchform { max-width: 480px; margin: 0 auto 36px; }
.ng-404__links { list-style: none; display: flex; gap: 32px; justify-content: center; padding: 32px 0 0; margin: 0 auto; border-top: 1px solid var(--ng-line); flex-wrap: wrap; max-width: 600px; }
.ng-404__links a { font-weight: 600; color: var(--ng-green); }

.ng-searchform { display: flex; gap: 8px; }
.ng-searchform__input { flex: 1; }
.ng-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.ng-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border: 1px solid var(--ng-line-strong); border-radius: var(--ng-radius); color: var(--ng-ink); font-weight: 500; }
.ng-pagination .page-numbers:hover { background: var(--ng-surface); }
.ng-pagination .page-numbers.current { background: var(--ng-green); border-color: var(--ng-green); color: #fff; }

.ng-comments { max-width: var(--ng-article-w); margin-top: 40px; }
.ng-comments__list { list-style: none; margin: 0; padding: 0; }
.ng-comments__title { font-size: var(--ng-fs-h3); margin-bottom: var(--ng-space-4); }
.ng-page-links { margin: var(--ng-space-4) 0; font-size: var(--ng-fs-small); font-weight: 600; display: flex; gap: 10px; }
.ng-page-links a { color: var(--ng-green); }
.ng-elementor-page .ng-main > .elementor { width: 100%; }

/* --------------------------------------------------------------------------
   Section widgets
   -------------------------------------------------------------------------- */
.ng-sec-heading { padding-top: var(--ng-space-2); }
.ng-sec-heading.ng-rule-top { padding-top: var(--ng-space-5); }
.ng-sec-heading .ng-section-head { margin-bottom: 0; }
.ng-sec-heading__intro { color: var(--ng-muted); font-size: var(--ng-fs-small); max-width: 640px; margin-top: var(--ng-space-3); line-height: 1.65; }
.ng-sec-heading.ng-on-dark h2, .ng-sec-heading.ng-on-dark h3, .ng-sec-heading.ng-on-dark h4 { color: #fff; }
.ng-sec-heading.ng-on-dark .ng-eyebrow { color: var(--ng-mint); }
.ng-sec-heading.ng-on-dark .ng-section-head { border-bottom-color: rgba(255,255,255,.16); }
.ng-sec-heading.ng-on-dark .ng-sec-heading__intro { color: rgba(255,255,255,.66); }
.ng-sec-heading.ng-on-dark.ng-rule-top { border-top-color: rgba(255,255,255,.16); }
.ng-on-dark .ng-crumb, .ng-on-dark .ng-crumb a { color: rgba(255,255,255,.55); }
.ng-related { padding-top: var(--ng-space-5); }

/* FAQ -- native details/summary, no JS */
.ng-faq { max-width: 860px; }
.ng-faq__item { border-top: 1px solid var(--ng-line); }
.ng-faq__item:last-child { border-bottom: 1px solid var(--ng-line); }
.ng-faq__item summary {
  cursor: pointer; list-style: none; padding: var(--ng-space-4) 44px var(--ng-space-4) 0; position: relative;
  font-family: var(--ng-font-display); font-size: 18px; font-weight: 650; letter-spacing: -.018em; color: var(--ng-ink);
}
.ng-faq__item summary::-webkit-details-marker { display: none; }
.ng-faq__item summary::after {
  content: ""; position: absolute; right: 10px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--ng-green); border-bottom: 2px solid var(--ng-green);
  transform: translateY(-70%) rotate(45deg); transition: transform var(--ng-dur) var(--ng-ease);
}
.ng-faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.ng-faq__item summary:hover { color: var(--ng-green); }
.ng-faq__answer { padding: 0 44px var(--ng-space-4) 0; color: var(--ng-muted); font-size: var(--ng-fs-small); line-height: 1.75; max-width: 720px; }
.ng-faq__answer p:last-child { margin-bottom: 0; }

/* Forms */
.ng-field { margin-bottom: var(--ng-space-4); }
.ng-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ng-ink); }
.ng-field .hint { font-size: 12.5px; color: var(--ng-muted); margin: 6px 0 0; line-height: 1.5; }
.ng-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--ng-space-4); }
.ng-contact-form { background: var(--ng-bg); border: 1px solid var(--ng-line); border-radius: var(--ng-radius-lg); padding: var(--ng-space-5); max-width: 720px; }
.ng-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ng-form-notice { font-size: 15px; font-weight: 500; padding: 14px 18px; border-radius: var(--ng-radius); margin-bottom: var(--ng-space-4); }
.ng-form-notice--ok { background: var(--ng-green-tint); color: var(--ng-green); border: 1px solid rgba(13,107,78,.2); }
.ng-form-notice--error { background: var(--ng-danger-bg); color: var(--ng-danger); border: 1px solid #F0D9D9; }

.ng-footer__col--light h5 { color: var(--ng-muted); }
.ng-footer__col--light a { color: var(--ng-ink); }
.ng-footer__col--light a:hover { color: var(--ng-green); }
.ng-blank-canvas { background: var(--ng-bg); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* ==========================================================================
   Countries index
   The matrix is the page. It is a real <table> because it is tabular data --
   that keeps it readable without CSS, navigable by screen reader, and legible
   to a crawler that never runs a stylesheet.
   ========================================================================== */

.ng-countries-head { background: var(--ng-ink); color: #fff; padding: 46px 0 40px; }
.ng-countries-head .ng-crumb, .ng-countries-head .ng-crumb a { color: rgba(255,255,255,.5); }
.ng-countries-head__row { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--ng-space-5); flex-wrap: wrap; margin-top: 20px; }
.ng-countries-head__intro { max-width: 640px; }
.ng-countries-head h1 { color: #fff; margin: 0; font-size: var(--ng-fs-h1); letter-spacing: -.028em; line-height: 1.08; }
.ng-countries-head p { color: rgba(255,255,255,.68); font-size: var(--ng-fs-lead); margin: 14px 0 0; }
.ng-countries-head__stamp { display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; margin-top: 6px;
  font-size: var(--ng-fs-meta); font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ng-mint); border: 1px solid rgba(47,201,146,.32); border-radius: 100px; padding: 6px 13px; }
.ng-countries-head__stamp svg { width: 13px; height: 13px; }

/* Four derived figures. Reading them left to right should tell you the shape
   of the bloc before you reach the table. */
.ng-bloc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 38px 0 0; border-top: 1px solid rgba(255,255,255,.16); }
.ng-bloc-stats > div { padding: 22px 24px 4px 0; border-right: 1px solid rgba(255,255,255,.11); }
.ng-bloc-stats > div:last-child { border-right: 0; }
.ng-bloc-stats > div + div { padding-left: 24px; }
.ng-bloc-stats dt { font-size: var(--ng-fs-meta); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.ng-bloc-stats dd { margin: 9px 0 0; font-size: 30px; font-weight: 700; letter-spacing: -.026em; color: #fff; font-variant-numeric: tabular-nums; }
.ng-bloc-stats p { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.46); margin: 8px 0 0; max-width: 26ch; }

.ng-section-head__note { font-size: var(--ng-fs-small); color: var(--ng-muted); margin: 0; max-width: 46ch; text-align: right; }

.ng-matrix-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ng-matrix { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.ng-matrix thead th { position: sticky; top: var(--ng-header-h); z-index: 2; background: var(--ng-bg);
  text-align: left; font-size: var(--ng-fs-meta); font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ng-muted); padding: 0 var(--ng-space-3) 11px 0; border-bottom: 1.5px solid var(--ng-ink); white-space: nowrap; }
.ng-matrix thead th.num { text-align: right; }
.ng-matrix tbody th, .ng-matrix tbody td { padding: 17px var(--ng-space-3) 17px 0; border-bottom: 1px solid var(--ng-line); vertical-align: top; text-align: left; font-weight: 400; }
.ng-matrix tbody td.num { text-align: right; }
.ng-matrix tbody tr:hover th, .ng-matrix tbody tr:hover td { background: var(--ng-surface); }
.ng-matrix tbody tr:last-child th, .ng-matrix tbody tr:last-child td { border-bottom: 1.5px solid var(--ng-ink); }
.ng-matrix tbody th { font-size: 19px; font-weight: 650; letter-spacing: -.018em; white-space: nowrap; padding-left: 0; }
.ng-matrix tbody th a { color: var(--ng-ink); }
.ng-matrix tbody th a:hover { color: var(--ng-green); }
.ng-matrix .mx-code { display: block; font-size: var(--ng-fs-meta); font-weight: 500; letter-spacing: .06em; color: var(--ng-muted); margin-top: 3px; }
.ng-matrix .mx-rate { font-size: 19px; font-weight: 650; letter-spacing: -.018em; }
.ng-matrix .mx-sub { display: block; font-size: 12.5px; line-height: 1.4; color: var(--ng-muted); margin-top: 3px; max-width: 22ch; margin-left: auto; }
.ng-matrix td:not(.num) .mx-sub { margin-left: 0; }
.ng-matrix .mx-pill { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: var(--ng-amber); background: var(--ng-amber-tint); border: 1px solid rgba(154,98,7,.22); border-radius: 100px; padding: 3px 10px; }
.ng-matrix .mx-go { font-size: 14px; font-weight: 600; color: var(--ng-green); white-space: nowrap; }
.ng-matrix .mx-go:hover { text-decoration: underline; text-underline-offset: 3px; }
.ng-matrix .mx-go span { margin-left: 4px; }

/* Latest across all six -- a different question from the matrix, so a
   different shape: a numbered run, not another six-row grid. */
.ng-bloc-feed { list-style: none; margin: 0; padding: 0; counter-reset: bf; }
.ng-bloc-feed li { counter-increment: bf; display: grid; grid-template-columns: 132px 1fr auto; align-items: baseline; gap: var(--ng-space-4);
  padding: 16px 0; border-bottom: 1px solid var(--ng-line); }
.ng-bloc-feed li:last-child { border-bottom: 0; }
.ng-bloc-feed .bf-country { font-size: var(--ng-fs-meta); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ng-green); }
.ng-bloc-feed .bf-title { font-size: 18px; font-weight: 600; letter-spacing: -.014em; line-height: 1.35; color: var(--ng-ink); }
.ng-bloc-feed .bf-title:hover { color: var(--ng-green); }
.ng-bloc-feed .bf-meta { font-size: var(--ng-fs-meta); color: var(--ng-muted); white-space: nowrap; }
.ng-bloc-feed .bf-meta .dot { margin: 0 5px; }

@media (max-width: 1120px) {
  .ng-bloc-stats { grid-template-columns: repeat(2, 1fr); }
  .ng-bloc-stats > div:nth-child(2n) { border-right: 0; }
  .ng-bloc-stats > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.11); padding-top: 20px; }
  .ng-section-head__note { text-align: left; }
}

@media (max-width: 780px) {
  .ng-bloc-feed li { grid-template-columns: 1fr; gap: 5px; }
  .ng-bloc-feed .bf-meta { white-space: normal; }
}

@media (max-width: 640px) {
  .ng-countries-head { padding: 34px 0 30px; }
  .ng-bloc-stats { grid-template-columns: 1fr; }
  .ng-bloc-stats > div { border-right: 0; padding-left: 0 !important; }
  .ng-bloc-stats > div + div { border-top: 1px solid rgba(255,255,255,.11); padding-top: 20px; }
  .ng-bloc-stats dd { font-size: 26px; }
  /* The matrix stops being a table and becomes six labelled records. Six
     columns cannot be scanned on a phone, and a horizontal scrollbar hides
     the two columns most people came for. */
  .ng-matrix-scroll { overflow-x: visible; }
  .ng-matrix thead th { position: static; }
  .ng-matrix thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .ng-matrix, .ng-matrix tbody, .ng-matrix tr, .ng-matrix th, .ng-matrix td { display: block; width: 100%; }
  .ng-matrix tbody tr { padding: 18px 0; border-bottom: 1px solid var(--ng-line); }
  .ng-matrix tbody tr:last-child { border-bottom: 1.5px solid var(--ng-ink); }
  .ng-matrix tbody th { border-bottom: 0; padding: 0 0 12px; }
  .ng-matrix tbody td { border-bottom: 0; padding: 5px 0; text-align: left !important;
    display: grid; grid-template-columns: 122px 1fr; gap: var(--ng-space-3); align-items: baseline; }
  .ng-matrix tbody td::before { content: attr(data-label); font-size: var(--ng-fs-meta); font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase; color: var(--ng-muted); }
  .ng-matrix .mx-sub { margin-left: 0 !important; max-width: none; }
  .ng-matrix tbody tr:hover th, .ng-matrix tbody tr:hover td { background: none; }
}

@media (max-width: 1120px) {
  .ng-nav { display: none; }
  .ng-burger { display: inline-flex; }
  .ng-hero__grid { grid-template-columns: 1fr; }
  .ng-story-lead { grid-template-columns: 1fr; }
  .ng-story-lead .ng-story-headline { font-size: 27px; }
  .ng-guides-layout { grid-template-columns: 1fr; }
  .ng-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ng-topic-row { grid-template-columns: repeat(3, 1fr); }
  .ng-topic-cell:nth-child(3) { border-right: none; }
  .ng-topic-cell:nth-child(n+4) { border-top: 1px solid var(--ng-line); }
  .ng-footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .ng-footer__brand { grid-column: 1 / -1; margin-bottom: var(--ng-space-3); }
  .ng-cards--3, .ng-cards--4, .ng-story-cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ng-brief__inner { flex-direction: column; align-items: flex-start; }
  .ng-brief__form { width: 100%; }
  .ng-country-table .cn-topics { display: none; }
  .ng-layout--sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ng-header__cta { display: none; }
  .ng-utility .ng-wrap-wide { flex-direction: column; align-items: flex-start; gap: 2px; min-height: 0; padding: 8px 0; }
  .ng-utility time { display: none; }
  .ng-header__inner { min-height: 56px; }
  .ng-brand img, .ng-brand__mark { height: 22px; }
  .ng-section { padding: var(--ng-space-6) 0; }
  .ng-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ng-story-lead .ng-story-headline { font-size: 23px; }
  .ng-topic-row, .ng-cards--2, .ng-cards--3, .ng-cards--4, .ng-story-cols, .ng-trust-grid { grid-template-columns: 1fr; }
  .ng-topic-cell { border-right: none !important; border-top: 1px solid var(--ng-line); }
  .ng-topic-cell:first-child { border-top: none; }
  .ng-country-table thead { display: none; }
  .ng-country-table, .ng-country-table tbody, .ng-country-table tr, .ng-country-table td { display: block; width: 100%; }
  .ng-country-table tr { border-bottom: 1px solid var(--ng-line); padding: var(--ng-space-3) 0; }
  .ng-country-table td { padding: 4px 0; border-bottom: none; }
  .ng-footer__top { grid-template-columns: 1fr 1fr; }
  .ng-footer__brand { grid-column: 1 / -1; }
  .ng-footer__bottom { flex-direction: column; align-items: flex-start; }
  .ng-byline { flex-direction: column; align-items: flex-start; }
  .ng-byline__dates { text-align: left; }
  .ng-country-hero__row { flex-direction: column; align-items: flex-start; }
  .ng-field-row { grid-template-columns: 1fr; }
  .ng-contact-form { padding: var(--ng-space-4); }
  .ng-faq__item summary { font-size: 16.5px; }
  .ng-btn, input, select, textarea, button { min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
}
