@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');
:root {
  --bg-main: #0A0E1F;
  --bg-card: #131A33;
  --accent: #E9B478;
  --accent-2: #2E5BE6;
  --text-main: #F4F1EC;
  --text-muted: #93A0C0;
  --border: #24304F;

  /* light surfaces for header/footer (dark logo → light bars) */
  --bar-bg: #F4F1EC;
  --bar-bg-2: #EDE7DA;
  --bar-ink: #171C33;
  --bar-muted: #5A6486;
  --bar-border: #DDD3BF;

  --gold-grad: linear-gradient(135deg, #E9B478 0%, #935237 100%);
  --radius: 6px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px -12px rgba(0,0,0,.55);
  --shadow-gold: 0 0 22px rgba(233,180,120,.42);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; overflow-wrap: anywhere; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

/* ---------- Layout: full-width strips ---------- */
.nvg-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.nvg-section { padding-block: clamp(2.75rem, 6vw, 5rem); }
.nvg-section--alt { background: var(--bg-card); }
.nvg-section__head { margin-bottom: 2rem; }
.nvg-section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.nvg-hairline { height: 2px; border: 0; background: var(--gold-grad); opacity: .8; }

/* ---------- Buttons ---------- */
.nvg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  white-space: nowrap;
}
.nvg-btn--primary {
  background: var(--gold-grad);
  color: #0A0E1F;
  box-shadow: var(--shadow-gold);
}
.nvg-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(233,180,120,.6); text-decoration: none; }
.nvg-btn--outline {
  background: transparent;
  color: var(--accent-2);
  border-color: var(--accent-2);
}
.nvg-btn--outline:hover { background: var(--accent-2); color: #fff; text-decoration: none; }
.nvg-btn--lg { padding: 1.05rem 2.1rem; font-size: 1.06rem; }

/* ---------- Header (light bar, dark logo) ---------- */
.nvg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bar-bg);
  border-bottom: 2px solid var(--bar-border);
  box-shadow: 0 2px 14px rgba(10,14,31,.12);
}
.nvg-header__bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 70px;
  padding-block: .5rem;
}
.nvg-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nvg-logo__img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(45vw, 190px);
}
.nvg-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.nvg-nav a:not(.nvg-btn) {
  color: var(--bar-ink);
  font-weight: 600;
  font-size: .96rem;
  padding: .3rem 0;
  position: relative;
}
.nvg-nav a:not(.nvg-btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-grad);
  transition: width .2s ease;
}
.nvg-nav a:not(.nvg-btn):hover { text-decoration: none; color: #000; }
.nvg-nav a:not(.nvg-btn):hover::after { width: 100%; }
.nvg-nav .nvg-btn { color: #0A0E1F; }

.nvg-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: auto;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nvg-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--bar-ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nvg-header.is-open .nvg-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nvg-header.is-open .nvg-burger span:nth-child(2) { opacity: 0; }
.nvg-header.is-open .nvg-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nvg-burger { display: flex; }
  .nvg-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: .5rem clamp(1rem, 4vw, 2.5rem) 1.25rem;
    background: var(--bar-bg);
    border-bottom: 2px solid var(--bar-border);
    box-shadow: var(--shadow);
  }
  .nvg-header.is-open .nvg-nav { display: flex; }
  .nvg-nav a:not(.nvg-btn) {
    padding: .85rem .25rem;
    border-bottom: 1px solid var(--bar-border);
  }
  .nvg-nav a:not(.nvg-btn)::after { display: none; }
  .nvg-nav .nvg-btn { width: 100%; margin-top: 1rem; }
}

/* ---------- Hero (overlay) ---------- */
.nvg-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 78% 10%, rgba(233,180,120,.18), transparent 60%),
    var(--bg-main);
  border-bottom: 2px solid var(--border);
}
.nvg-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.nvg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(10,12,26,.92) 0%, rgba(10,12,26,.74) 45%, rgba(10,12,26,.5) 100%);
}
.nvg-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.nvg-hero__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.nvg-hero h1 { color: #F7EFE1; }
.nvg-hero__sub {
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  color: #E6E2D8;
  margin-bottom: 1.75rem;
  max-width: 56ch;
}
.nvg-hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
@media (max-width: 480px) {
  .nvg-hero__cta { flex-direction: column; align-items: stretch; }
  .nvg-hero__cta .nvg-btn { width: 100%; white-space: normal; }
}
.nvg-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .5rem 1rem;
  background: rgba(46,91,230,.22);
  border: 1px solid rgba(46,91,230,.5);
  border-radius: var(--radius-pill);
  color: #DCE4FF;
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Overview ---------- */
.nvg-overview p { color: var(--text-main); }
.nvg-overview p + p { margin-top: 1rem; }

/* ---------- Feature cards (grid) ---------- */
.nvg-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.nvg-feature-card {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.nvg-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(233,180,120,.12);
  color: var(--accent);
  margin-bottom: 1rem;
}
.nvg-feature-card h3 { color: var(--text-main); }
.nvg-feature-card p { color: var(--text-muted); margin: 0; }

/* ---------- Cards grid ---------- */
.nvg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.25rem;
}
.nvg-card {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* ---------- Icons ---------- */
.nvg-icon {
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

/* ---------- Data table ---------- */
.nvg-table-wrap { overflow-x: auto; max-width: 100%; margin-block: 1.5rem; }
.nvg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.nvg-table thead th {
  background: var(--gold-grad);
  color: #0A0E1F;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: left;
  padding: .85rem 1rem;
  white-space: nowrap;
}
.nvg-table td, .nvg-table th { padding: .8rem 1rem; }
.nvg-table tbody tr:nth-child(odd) { background: var(--bg-main); }
.nvg-table tbody tr:nth-child(even) { background: var(--bg-card); }
.nvg-table td { border-top: 1px solid var(--border); color: var(--text-main); }
.nvg-table .nvg-key { color: var(--accent); font-weight: 700; }

/* ---------- Two cols + content panel ---------- */
.nvg-two-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.nvg-two-cols > * { min-width: 0; }
@media (max-width: 860px) { .nvg-two-cols { grid-template-columns: 1fr; } }

.nvg-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.nvg-panel__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.nvg-facts { margin: 0; }
.nvg-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}
.nvg-facts__row:last-child { border-bottom: 0; }
.nvg-facts__row dt { color: var(--text-muted); margin: 0; }
.nvg-facts__row dd { margin: 0; color: var(--accent); font-weight: 700; text-align: right; }
.nvg-checklist { list-style: none; margin: 0; padding: 0; }
.nvg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .55rem 0;
  color: var(--text-main);
}
.nvg-checklist .nvg-icon { color: var(--accent); margin-top: .1em; }
.nvg-mini-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.nvg-mini-tile {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.nvg-mini-tile__value { font-family: var(--font-head); font-size: 1.5rem; color: var(--accent); }
.nvg-mini-tile__label { font-size: .8rem; color: var(--text-muted); }
.nvg-score { text-align: center; }
.nvg-score__num { font-family: var(--font-head); font-size: 3rem; color: var(--accent); line-height: 1; }
.nvg-score__stars { color: var(--accent); display: flex; justify-content: center; gap: .15rem; margin: .35rem 0; }
.nvg-score__label { color: var(--text-muted); font-size: .9rem; }

/* ---------- Numbered list ---------- */
.nvg-numbered { list-style: none; counter-reset: nvg-steps; margin: 0; padding: 0; }
.nvg-numbered li {
  counter-increment: nvg-steps;
  position: relative;
  padding: 0 0 1.25rem 3.5rem;
  color: var(--text-main);
}
.nvg-numbered li::before {
  content: counter(nvg-steps);
  position: absolute;
  left: 0; top: 0;
  width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #0A0E1F;
  background: var(--gold-grad);
  border-radius: var(--radius-pill);
}

/* ---------- Stats bar (tiles) ---------- */
.nvg-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 1.25rem;
}
.nvg-stat {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.nvg-stat__value { font-family: var(--font-head); font-size: clamp(1.7rem, 4.5vw, 2.9rem); color: var(--accent); line-height: 1.05; overflow-wrap: anywhere; }
.nvg-stat__label { color: var(--text-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-top: .5rem; }

/* ---------- Categories bar ---------- */
.nvg-cats { display: flex; flex-wrap: wrap; gap: .6rem; }
.nvg-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: .9rem;
  font-weight: 600;
}
.nvg-pill--hot { background: var(--gold-grad); color: #0A0E1F; border-color: transparent; }

/* ---------- Page header ---------- */
.nvg-page-header {
  position: relative;
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(233,180,120,.14), transparent 60%),
    var(--bg-card);
  border-bottom: 2px solid var(--border);
  padding-block: clamp(2rem, 5vw, 3.25rem);
  overflow: hidden;
}
.nvg-page-header h1 { color: #F7EFE1; margin-bottom: .5rem; }
.nvg-breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; color: var(--text-muted); list-style: none; margin: 0; padding: 0; }
.nvg-breadcrumb a { color: var(--text-muted); }
.nvg-breadcrumb a:hover { color: var(--accent); }
.nvg-breadcrumb li + li::before { content: '/'; margin-right: .4rem; color: var(--border); }

/* ---------- TOC ---------- */
.nvg-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.nvg-toc ul { list-style: none; margin: 0; padding: 0; }
.nvg-toc li { padding: .3rem 0; }

/* ---------- Legal body ---------- */
.nvg-legal { counter-reset: nvg-legal; max-width: 100%; }
.nvg-legal h2 { counter-increment: nvg-legal; }
.nvg-legal h2::before { content: counter(nvg-legal) '. '; color: var(--accent); font-family: var(--font-body); }
.nvg-legal p, .nvg-legal li { color: var(--text-muted); }
.nvg-legal a { color: var(--accent); }

/* ---------- FAQ (single) ---------- */
.nvg-faq details { border-bottom: 1px solid var(--border); }
.nvg-faq summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
}
.nvg-faq summary::-webkit-details-marker { display: none; }
.nvg-faq summary::before {
  content: '+';
  margin-right: .6rem;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.3rem;
  transition: transform .2s;
}
.nvg-faq details[open] summary::before { content: '−'; }
.nvg-faq details > :not(summary) { padding: .5rem 0 1rem; color: var(--text-muted); }

/* ---------- CTA block ---------- */
.nvg-cta-block {
  position: relative;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(233,180,120,.2), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}
.nvg-cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.nvg-cta-block h2 { color: #F7EFE1; }
.nvg-cta-block p { color: var(--text-muted); max-width: 60ch; margin-inline: auto; }

/* ---------- Payments table ---------- */
.nvg-payments { width: 100%; border-collapse: collapse; min-width: 520px; }
.nvg-payments thead th { background: var(--gold-grad); color: #0A0E1F; text-align: left; padding: .8rem 1rem; white-space: nowrap; }
.nvg-payments td { padding: .8rem 1rem; border-top: 1px solid var(--border); color: var(--text-main); }
.nvg-payments tbody tr:nth-child(even) { background: var(--bg-card); }

/* ---------- RTP grid ---------- */
.nvg-rtp {
  display: grid;
  gap: clamp(.6rem, 1.5vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) { .nvg-rtp { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .nvg-rtp { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.nvg-rtp-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nvg-rtp-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.nvg-rtp-item__thumb {
  aspect-ratio: 3/2;
  position: relative;
  background: linear-gradient(135deg, #1a2140, #0d1226);
}
.nvg-rtp-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nvg-rtp-item__name { padding: .6rem .75rem; font-weight: 600; font-size: .9rem; color: var(--text-main); }
.nvg-rtp-item__badge {
  position: absolute;
  top: .5rem; left: .5rem;
  background: rgba(10,14,31,.82);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: var(--radius);
}
.nvg-rtp-tooltip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity .2s;
  background: linear-gradient(0deg, rgba(10,14,31,.95), rgba(10,14,31,0));
  color: var(--text-main);
  padding: 1.25rem .75rem .6rem;
  font-size: .82rem;
}
.nvg-rtp-item:hover .nvg-rtp-tooltip { opacity: 1; }

/* ---------- Footer (light bar, dark logo) ---------- */
.nvg-footer {
  background: var(--bar-bg-2);
  color: var(--bar-muted);
  border-top: 3px solid var(--accent);
}
.nvg-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.nvg-footer__grid > * { min-width: 0; }
@media (max-width: 860px) { .nvg-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .nvg-footer__grid { grid-template-columns: 1fr; } }
.nvg-footer__brand .nvg-logo__img { margin-bottom: 1rem; height: 44px; }
.nvg-footer__about { color: var(--bar-muted); font-size: .9rem; }
.nvg-footer h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bar-ink);
  margin-bottom: .9rem;
}
.nvg-footer ul { list-style: none; margin: 0; padding: 0; }
.nvg-footer li { padding: .5rem 0; }
.nvg-footer a { color: var(--bar-muted); font-size: .92rem; }
.nvg-footer a:hover { color: var(--bar-ink); text-decoration: none; }
.nvg-footer__disclaimer {
  border-top: 1px solid var(--bar-border);
  padding-block: 1.5rem;
  font-size: .8rem;
  color: #454E6E;
}
.nvg-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bar-ink);
  color: var(--bar-ink);
  font-weight: 700;
  font-size: .78rem;
  margin-right: .6rem;
  flex-shrink: 0;
  vertical-align: middle;
}
.nvg-footer__copy {
  border-top: 1px solid var(--bar-border);
  padding-block: 1.25rem;
  font-size: .82rem;
  color: var(--bar-muted);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.nvg-footer .nvg-logo__img{filter:none;background:transparent;padding:0}
.nvg-footer .nvg-footer__logo-chip{background:transparent;padding:0}
/* sa-ph-media */
.nvg-page-header:has(.nvg-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.nvg-page-header:has(.nvg-hero__img) .nvg-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.nvg-page-header:has(.nvg-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
.nvg-page-header:has(.nvg-hero__img)>:not(.nvg-hero__img){position:relative;z-index:2}
.nvg-page-header:has(.nvg-hero__img),.nvg-page-header:has(.nvg-hero__img) h1,.nvg-page-header:has(.nvg-hero__img) a,.nvg-page-header:has(.nvg-hero__img) p,.nvg-page-header:has(.nvg-hero__img) li,.nvg-page-header:has(.nvg-hero__img) span{color:#fff}
/* sa-hero-media */
.nvg-hero:has(>.nvg-hero__img){position:relative;isolation:isolate}
.nvg-hero:has(>.nvg-hero__img)>.nvg-hero__img{z-index:0}
.nvg-hero:has(>.nvg-hero__img)::after{z-index:1}
.nvg-hero:has(>.nvg-hero__img)>:not(.nvg-hero__img){position:relative;z-index:2}
/* sa-rhythm */
:where(.nvg-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.nvg-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.nvg-rtp-item,.nvg-rtp-item:hover,.nvg-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
