:root {
  --nwb-ink: #0f1518;
  --nwb-ink-2: #172126;
  --nwb-paper: #ffffff;
  --nwb-surface: #f4f6f6;
  --nwb-line: #dfe5e7;
  --nwb-muted: #66747a;
  --nwb-teal: #067d8c;
  --nwb-teal-dark: #045e69;
  --nwb-gold: #d7a63b;
  --nwb-gold-dark: #b78624;
  --nwb-radius: 12px;
  --nwb-shadow: 0 12px 36px rgba(15, 21, 24, 0.08);
  --nwb-shell: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.nwb-child-theme {
  margin: 0;
  color: var(--nwb-ink);
  background: var(--nwb-paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nwb-child-theme a { color: inherit; text-decoration: none; }
body.nwb-child-theme img { max-width: 100%; height: auto; }

.nwb-shell { width: min(calc(100% - 40px), var(--nwb-shell)); margin-inline: auto; }
.nwb-main { min-height: 60vh; }
.nwb-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px;
}
.nwb-skip-link:focus { transform: translateY(0); }

/* Header */
.nwb-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #090d0f;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.admin-bar .nwb-site-header { top: 32px; }
.nwb-header-inner {
  width: min(calc(100% - 40px), var(--nwb-shell));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 245px 1fr 44px;
  align-items: center;
  gap: 26px;
}
.nwb-brand { display: inline-flex; align-items: center; min-width: 0; }
.nwb-brand img { display: block; width: 225px; height: auto; max-height: 58px; object-fit: contain; object-position: left center; }
.nwb-primary-nav { justify-self: end; }
.nwb-menu,
.nwb-primary-nav .menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 26px; }
.nwb-menu li,
.nwb-primary-nav .menu li { position: relative; margin: 0; }
.nwb-menu a,
.nwb-primary-nav .menu a {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 27px 0;
}
.nwb-menu a:hover,
.nwb-menu a:focus-visible,
.nwb-primary-nav .menu a:hover,
.nwb-primary-nav .menu a:focus-visible { color: var(--nwb-gold); }
.nwb-primary-nav .sub-menu {
  position: absolute;
  left: -18px;
  top: 100%;
  min-width: 220px;
  display: none;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: #11181b;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  box-shadow: var(--nwb-shadow);
}
.nwb-primary-nav li:hover > .sub-menu,
.nwb-primary-nav li:focus-within > .sub-menu { display: block; }
.nwb-primary-nav .sub-menu a { padding: 10px 12px; text-transform: none; font-size: 14px; }
.nwb-menu-toggle,
.nwb-search-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 10px;
  border-radius: 7px;
  cursor: pointer;
}
.nwb-menu-toggle { display: none; }
.nwb-search-toggle:hover,
.nwb-search-toggle:focus-visible,
.nwb-menu-toggle:hover,
.nwb-menu-toggle:focus-visible { background: rgba(255,255,255,.08); outline: none; }
.nwb-menu-toggle-lines,
.nwb-menu-toggle-lines::before,
.nwb-menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.nwb-menu-toggle-lines::before { transform: translateY(-7px); }
.nwb-menu-toggle-lines::after { transform: translateY(5px); }
.nwb-menu-toggle[aria-expanded="true"] .nwb-menu-toggle-lines { background: transparent; }
.nwb-menu-toggle[aria-expanded="true"] .nwb-menu-toggle-lines::before { transform: translateY(1px) rotate(45deg); }
.nwb-menu-toggle[aria-expanded="true"] .nwb-menu-toggle-lines::after { transform: translateY(-1px) rotate(-45deg); }
.nwb-search-panel { background: #11181b; border-top: 1px solid rgba(255,255,255,.08); padding: 14px 0; }
.nwb-search-form { display: flex; gap: 10px; max-width: 760px; margin: 0 auto; }
.nwb-search-field { flex: 1; min-width: 0; padding: 13px 15px; border: 1px solid #cfd8da; border-radius: 7px; font: inherit; }
.nwb-search-submit { border: 0; border-radius: 7px; padding: 12px 20px; font-weight: 800; background: var(--nwb-gold); color: #111; cursor: pointer; }

/* Homepage */
.nwb-home { background: var(--nwb-paper); }
.nwb-home-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; padding-top: 24px; padding-bottom: 46px; }
.nwb-home-main { min-width: 0; }
.nwb-hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--nwb-radius);
  background: #0d1417;
  color: #fff;
  box-shadow: var(--nwb-shadow);
}
.nwb-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.nwb-hero-picture { display: block; width: 100%; height: 100%; }
.nwb-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.nwb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,11,13,.97) 0%, rgba(7,11,13,.87) 42%, rgba(7,11,13,.16) 78%, rgba(7,11,13,.08) 100%);
}
.nwb-hero-content { position: relative; z-index: 1; width: min(58%, 630px); padding: 52px; }
.nwb-hero h1 { margin: 10px 0 14px; font-size: clamp(34px, 4vw, 58px); line-height: 1.02; letter-spacing: -.035em; }
.nwb-hero h1 a { color: #fff; }
.nwb-hero p { max-width: 560px; margin: 0 0 24px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.65; }
.nwb-kicker { display: inline-block; color: var(--nwb-teal-dark); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.nwb-kicker--gold { color: var(--nwb-gold); }
.nwb-button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 17px; border-radius: 6px; font-size: 12px; font-weight: 850; letter-spacing: .025em; text-transform: uppercase; }
.nwb-button--gold { color: #111 !important; background: var(--nwb-gold); }
.nwb-button--gold:hover { background: #e3b64d; }

.nwb-section { margin-top: 22px; border-top: 1px solid var(--nwb-line); padding-top: 18px; }
.nwb-section-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 15px; }
.nwb-section-heading h2 { margin: 0; font-size: 14px; line-height: 1.2; font-weight: 850; letter-spacing: .035em; text-transform: uppercase; }
.nwb-view-all { flex: none; color: var(--nwb-teal-dark) !important; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.nwb-view-all:hover { color: var(--nwb-gold-dark) !important; }

.nwb-people-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(86px, 1fr); gap: 14px; overflow-x: auto; padding: 2px 2px 10px; scrollbar-width: thin; scroll-snap-type: x proximity; }
.nwb-person { min-width: 86px; text-align: center; scroll-snap-align: start; }
.nwb-person-image { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 8px; overflow: hidden; border-radius: 50%; background: var(--nwb-surface); border: 2px solid #fff; box-shadow: 0 0 0 1px #cdd6d8; }
.nwb-person-image img { width: 100%; height: 100%; object-fit: cover; }
.nwb-person-placeholder { font-size: 28px; font-weight: 800; color: var(--nwb-teal-dark); }
.nwb-person-name { display: block; font-size: 12px; font-weight: 750; line-height: 1.25; }

.nwb-card-grid { display: grid; gap: 16px; }
.nwb-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nwb-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nwb-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--nwb-line); border-radius: 9px; transition: transform .18s ease, box-shadow .18s ease; }
.nwb-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,21,24,.07); }
.nwb-card-image { display: block; aspect-ratio: 1.48 / 1; overflow: hidden; background: var(--nwb-surface); }
.nwb-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.nwb-card:hover .nwb-card-image img { transform: scale(1.02); }
.nwb-card-body { padding: 12px 13px 14px; }
.nwb-card-title { margin: 6px 0 10px; font-size: 16px; line-height: 1.22; letter-spacing: -.015em; }
.nwb-card-meta { display: flex; gap: 6px; flex-wrap: wrap; color: var(--nwb-muted); font-size: 11px; }
.nwb-image-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #e8eeee, #f7f9f9); }

.nwb-three-up { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.nwb-mini-panel,
.nwb-sidebar-panel { border: 1px solid var(--nwb-line); border-radius: 9px; background: #fff; padding: 16px; }
.nwb-mini-panel .nwb-section-heading,
.nwb-sidebar-panel .nwb-section-heading { margin-bottom: 11px; }
.nwb-compact-list { display: grid; gap: 11px; }
.nwb-list-item { display: grid; grid-template-columns: 90px minmax(0,1fr); gap: 10px; align-items: center; }
.nwb-list-thumb { display: block; aspect-ratio: 1.45 / 1; overflow: hidden; border-radius: 5px; background: var(--nwb-surface); }
.nwb-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nwb-list-copy h3 { margin: 0 0 4px; font-size: 12px; line-height: 1.25; }
.nwb-list-date { color: var(--nwb-muted); font-size: 10px; }

.nwb-home-sidebar { display: grid; align-content: start; gap: 20px; }
.nwb-sidebar-panel { padding: 18px; }
.nwb-sidebar-panel--sticky { position: sticky; top: 96px; }
.nwb-ranked-list,
.nwb-trending-list { list-style: none; margin: 0; padding: 0; counter-reset: nwb-rank; }
.nwb-ranked-list li { counter-increment: nwb-rank; border-top: 1px solid var(--nwb-line); }
.nwb-ranked-list li:first-child { border-top: 0; }
.nwb-ranked-list a { display: grid; grid-template-columns: 30px 38px 1fr; gap: 9px; align-items: center; padding: 11px 0; font-size: 12px; font-weight: 700; line-height: 1.25; }
.nwb-ranked-list a::before { content: counter(nwb-rank); font-size: 18px; font-weight: 850; color: var(--nwb-gold-dark); }
.nwb-ranked-thumb { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background: var(--nwb-surface); }
.nwb-ranked-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nwb-trending-list { counter-reset: trend; }
.nwb-trending-list li { counter-increment: trend; border-top: 1px solid var(--nwb-line); }
.nwb-trending-list li:first-child { border-top: 0; }
.nwb-trending-list a { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 12px 0; font-size: 12px; font-weight: 700; line-height: 1.35; }
.nwb-trending-list a::before { content: counter(trend, decimal-leading-zero); color: var(--nwb-teal); font-size: 18px; font-weight: 850; }

.nwb-newsletter { margin-top: 18px; display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: center; padding: 20px 24px; border-radius: 9px; background: #10171a; color: #fff; }
.nwb-newsletter-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--nwb-teal); color: var(--nwb-gold); font-size: 28px; font-weight: 900; }
.nwb-newsletter h2 { margin: 0 0 4px; font-size: 18px; }
.nwb-newsletter p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.nwb-newsletter-status { padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; color: rgba(255,255,255,.7); font-size: 11px; }

/* Defer below-the-fold rendering work in supporting browsers. */
.nwb-three-up,
.nwb-newsletter,
.nwb-home-sidebar,
.nwb-footer-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}

/* Archive */
.nwb-archive-main { padding: 42px 0 60px; background: #fff; }
.nwb-archive-header { max-width: 820px; margin: 14px 0 30px; }
.nwb-archive-header h1 { margin: 7px 0 12px; font-size: clamp(38px, 6vw, 66px); line-height: 1; letter-spacing: -.045em; }
.nwb-archive-description { color: var(--nwb-muted); font-size: 17px; line-height: 1.7; }
.nwb-archive-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.nwb-pagination { margin-top: 34px; }
.nwb-pagination .nav-links { display: flex; gap: 7px; flex-wrap: wrap; }
.nwb-pagination .page-numbers { display: inline-flex; min-width: 40px; min-height: 40px; align-items: center; justify-content: center; padding: 7px 12px; border: 1px solid var(--nwb-line); border-radius: 6px; }
.nwb-pagination .current { color: #fff; background: var(--nwb-teal-dark); border-color: var(--nwb-teal-dark); }
.nwb-empty-state { padding: 42px; border-radius: 10px; background: var(--nwb-surface); text-align: center; }
.nwb-empty-state h2 { margin-top: 0; }

/* Article */
.nwb-article-main { padding: 34px 0 70px; background: #fff; }
.nwb-article-shell { width: min(calc(100% - 40px), 920px); margin-inline: auto; }
.nwb-breadcrumbs { margin-bottom: 24px; color: var(--nwb-muted); font-size: 12px; }
.nwb-breadcrumbs a { color: var(--nwb-teal-dark) !important; }
.nwb-article-title { max-width: 880px; margin: 9px 0 13px; font-size: clamp(38px, 5.7vw, 68px); line-height: 1.02; letter-spacing: -.045em; }
.nwb-article-deck { max-width: 800px; margin: 0 0 17px; color: #46545a; font-size: 20px; line-height: 1.55; }
.nwb-article-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; color: var(--nwb-muted); font-size: 13px; }
.nwb-article-hero { margin: 0 0 34px; overflow: hidden; border-radius: 10px; background: var(--nwb-surface); }
.nwb-article-hero img { display: block; width: 100%; height: auto; }
.nwb-article-content { width: min(100%, 760px); margin-inline: auto; color: #202a2e; font-size: 18px; line-height: 1.78; }
.nwb-article-content > *:first-child { margin-top: 0; }
.nwb-article-content h2 { margin: 1.8em 0 .55em; color: var(--nwb-ink); font-size: 32px; line-height: 1.2; letter-spacing: -.025em; }
.nwb-article-content h3 { margin: 1.6em 0 .5em; color: var(--nwb-ink); font-size: 24px; line-height: 1.25; }
.nwb-article-content a { color: var(--nwb-teal-dark) !important; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.nwb-article-content img { border-radius: 8px; }
.nwb-article-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.nwb-article-content th,
.nwb-article-content td { padding: 11px 12px; border: 1px solid var(--nwb-line); text-align: left; }
.nwb-article-content blockquote { margin: 1.5em 0; padding: 18px 22px; border-left: 4px solid var(--nwb-gold); background: var(--nwb-surface); }
.nwb-related { margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--nwb-line); }

/* Footer */
.nwb-site-footer { background: #0b1114; color: #fff; }
.nwb-footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 70px; padding-top: 50px; padding-bottom: 44px; }
.nwb-brand--footer img { width: 260px; max-height: 82px; object-fit: contain; object-position: left; }
.nwb-footer-brand p { max-width: 480px; margin: 13px 0 0; color: rgba(255,255,255,.62); line-height: 1.65; }
.nwb-footer-title { margin: 4px 0 14px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.nwb-footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.nwb-footer-menu a { color: rgba(255,255,255,.7) !important; font-size: 13px; }
.nwb-footer-menu a:hover { color: var(--nwb-gold) !important; }
.nwb-footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.nwb-footer-bottom .nwb-shell { padding-top: 17px; padding-bottom: 17px; }
.nwb-footer-bottom p { margin: 0; color: rgba(255,255,255,.48); font-size: 12px; }

@media (max-width: 1120px) {
  .nwb-header-inner { grid-template-columns: 210px 1fr 44px; gap: 16px; }
  .nwb-brand img { width: 195px; }
  .nwb-menu,
  .nwb-primary-nav .menu { gap: 18px; }
  .nwb-menu a,
  .nwb-primary-nav .menu a { font-size: 12px; }
  .nwb-home-layout { grid-template-columns: minmax(0,1fr) 270px; }
  .nwb-card-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .nwb-three-up { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .admin-bar .nwb-site-header { top: 46px; }
  .nwb-header-inner { min-height: 68px; grid-template-columns: 44px 1fr 44px; }
  .nwb-menu-toggle { display: inline-grid; place-items: center; justify-self: start; }
  .nwb-brand { justify-self: center; }
  .nwb-brand img { width: 185px; max-height: 54px; object-position: center; }
  .nwb-search-toggle { justify-self: end; }
  .nwb-primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 8px 20px 18px;
    background: #0c1215;
    border-top: 1px solid rgba(255,255,255,.08);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nwb-primary-nav.is-open { display: block; }
  .nwb-menu,
  .nwb-primary-nav .menu { display: block; }
  .nwb-menu a,
  .nwb-primary-nav .menu a { padding: 12px 4px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nwb-primary-nav .sub-menu { position: static; display: block; min-width: 0; margin-left: 12px; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .nwb-primary-nav .sub-menu a { padding-left: 12px; color: rgba(255,255,255,.68); }
  .nwb-home-layout { display: block; padding-top: 0; }
  .nwb-home-sidebar { display: none; }
  .nwb-hero { border-radius: 0; margin-inline: -20px; min-height: 500px; align-items: end; }
  .nwb-hero-image { object-position: 65% center; }
  .nwb-hero-overlay { background: linear-gradient(0deg, rgba(6,10,12,.98) 3%, rgba(6,10,12,.78) 44%, rgba(6,10,12,.14) 80%); }
  .nwb-hero-content { width: 100%; padding: 34px 24px; }
  .nwb-hero h1 { max-width: 650px; font-size: clamp(34px, 8vw, 56px); }
  .nwb-hero p { max-width: 580px; }
  .nwb-three-up { grid-template-columns: 1fr; }
  .nwb-newsletter { grid-template-columns: 48px 1fr; }
  .nwb-newsletter-status { grid-column: 1 / -1; }
  .nwb-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .nwb-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nwb-shell,
  .nwb-header-inner,
  .nwb-article-shell { width: min(calc(100% - 28px), var(--nwb-shell)); }
  .nwb-header-inner { min-height: 62px; }
  .nwb-brand img { width: 164px; max-height: 48px; }
  .nwb-search-panel { padding: 12px 0; }
  .nwb-search-form { gap: 7px; }
  .nwb-search-field { font-size: 16px; }
  .nwb-search-submit { padding-inline: 14px; }
  .nwb-hero { margin-inline: -14px; min-height: 330px; background: #080d0f; }
  .nwb-hero-media { left: auto; width: 48%; }
  .nwb-hero-picture { width: 100%; height: 100%; }
  .nwb-hero-image { object-position: 52% center; }
  .nwb-hero-overlay { background: linear-gradient(90deg, #080d0f 0%, #080d0f 49%, rgba(8,13,15,.78) 66%, rgba(8,13,15,.2) 100%); }
  .nwb-hero-content { width: 68%; padding: 26px 18px; }
  .nwb-hero h1 { font-size: clamp(27px, 8.4vw, 38px); line-height: 1.05; }
  .nwb-hero p { display: none; }
  .nwb-section { margin-top: 18px; padding-top: 15px; }
  .nwb-people-strip { grid-auto-columns: 88px; gap: 10px; margin-right: -14px; padding-right: 14px; }
  .nwb-person-image { width: 64px; height: 64px; }
  .nwb-card-grid--4,
  .nwb-card-grid--3,
  .nwb-archive-grid { grid-template-columns: 1fr; gap: 0; }
  .nwb-home .nwb-card-grid .nwb-card { display: grid; grid-template-columns: 118px minmax(0,1fr); border: 0; border-bottom: 1px solid var(--nwb-line); border-radius: 0; padding: 12px 0; }
  .nwb-home .nwb-card-grid .nwb-card-image { aspect-ratio: 1.48 / 1; border-radius: 5px; }
  .nwb-home .nwb-card-grid .nwb-card-body { padding: 1px 0 1px 12px; }
  .nwb-home .nwb-card-grid .nwb-card-title { margin: 4px 0 6px; font-size: 15px; }
  .nwb-home .nwb-card-grid .nwb-card-meta { font-size: 10px; }
  .nwb-three-up { margin-top: 14px; }
  .nwb-mini-panel { padding: 14px; }
  .nwb-newsletter { margin-inline: -14px; border-radius: 0; padding: 20px 18px; }
  .nwb-archive-main { padding-top: 28px; }
  .nwb-archive-header h1,
  .nwb-article-title { font-size: clamp(36px, 11vw, 50px); }
  .nwb-article-deck { font-size: 18px; }
  .nwb-article-content { font-size: 17px; line-height: 1.74; }
  .nwb-article-content h2 { font-size: 28px; }
  .nwb-article-content h3 { font-size: 22px; }
  .nwb-related .nwb-card-grid { gap: 14px; }
  .nwb-footer-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 38px; }
  .nwb-footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* ==========================================================
   v1.1 mobile polish: global people strip, drawer, footer
   ========================================================== */
body.nwb-child-theme {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Global circular discovery strip: no slider library, native horizontal scroll. */
.nwb-global-people {
  background: #fff;
  border-bottom: 1px solid var(--nwb-line);
}
.nwb-global-people .nwb-shell { padding-top: 14px; padding-bottom: 12px; }
.nwb-global-people-title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.nwb-global-people-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92px;
  gap: 13px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 1px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.nwb-global-people-track::-webkit-scrollbar { display: none; }
.nwb-global-person {
  display: block;
  min-width: 0;
  text-align: center;
  scroll-snap-align: start;
}
.nwb-global-person-photo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 7px;
  overflow: hidden;
  border-radius: 50%;
  background: #eef2f3;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--nwb-teal);
}
.nwb-global-person-photo img { width: 100%; height: 100%; object-fit: cover; }
.nwb-global-person-placeholder { font-size: 26px; font-weight: 850; color: var(--nwb-teal-dark); }
.nwb-global-person-name {
  display: block;
  color: var(--nwb-ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.nwb-global-person:hover .nwb-global-person-photo,
.nwb-global-person:focus-visible .nwb-global-person-photo { box-shadow: 0 0 0 2px var(--nwb-gold); }


.nwb-home-main > .nwb-global-people {
  margin-top: 14px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 118px;
}
.nwb-home-main > .nwb-global-people > .nwb-shell { width: 100%; padding-left: 0; padding-right: 0; }

/* Drawer backdrop is mobile-only. */
.nwb-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0,0,0,.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.nwb-mobile-nav-label { display: none; }

/* Simple footer: logo, tagline, direct links, copyright. */
.nwb-footer-simple { padding-top: 42px; padding-bottom: 30px; }
.nwb-brand--footer img { width: 250px; max-height: 74px; object-fit: contain; object-position: left; }
.nwb-footer-tagline { max-width: 560px; margin: 13px 0 22px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.65; }
.nwb-footer-menu--direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.nwb-footer-menu--direct a { color: #fff !important; font-size: 14px; }
.nwb-footer-menu--direct a:hover { color: var(--nwb-gold) !important; }

@media (max-width: 900px) {
  body.nwb-nav-open { overflow: hidden; }
  .nwb-primary-nav {
    position: fixed;
    top: 68px;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: block;
    width: min(70vw, 340px);
    max-height: none;
    padding: 20px 20px 28px;
    overflow-y: auto;
    background: #0c1215;
    border-top: 0;
    border-right: 1px solid rgba(255,255,255,.1);
    box-shadow: 18px 0 34px rgba(0,0,0,.24);
    visibility: hidden;
    transform: translateX(-104%);
    transition: transform .2s ease, visibility .2s ease;
  }
  .nwb-primary-nav.is-open { visibility: visible; transform: translateX(0); }
  .nwb-mobile-nav-label {
    display: block;
    margin: 2px 4px 12px;
    color: rgba(255,255,255,.52);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .nwb-menu,
  .nwb-primary-nav .menu { display: block; }
  .nwb-menu a,
  .nwb-primary-nav .menu a {
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .nwb-primary-nav .sub-menu { position: static; display: block; margin-left: 10px; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .nwb-primary-nav .sub-menu a { padding-left: 12px; color: rgba(255,255,255,.7); }
  .nwb-nav-open .nwb-nav-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }
  .admin-bar .nwb-primary-nav { top: 100px; }
  .admin-bar .nwb-nav-backdrop { top: 32px; height: calc(100% - 32px); }
}

@media (max-width: 782px) {
  .admin-bar .nwb-primary-nav { top: 108px; }
  .admin-bar .nwb-nav-backdrop { top: 46px; height: calc(100% - 46px); }
}

@media (max-width: 680px) {
  .nwb-header-inner {
    min-height: 62px;
    grid-template-columns: 44px minmax(0,1fr) 44px;
    gap: 8px;
  }
  .nwb-menu-toggle,
  .nwb-search-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
  }
  .nwb-menu-toggle { justify-self: start; }
  .nwb-search-toggle { justify-self: end; }
  .nwb-brand { justify-self: center; }
  .nwb-brand img { width: min(190px, 100%); max-height: 48px; object-position: center; }
  .nwb-primary-nav { top: 62px; width: 70vw; }

  .nwb-global-people .nwb-shell { width: 100%; padding: 11px 12px 9px; }
  .nwb-global-people-title { margin-bottom: 9px; font-size: 13px; }
  .nwb-global-people-track { grid-auto-columns: 82px; gap: 10px; padding-bottom: 6px; }
  .nwb-global-person-photo { width: 64px; height: 64px; box-shadow: 0 0 0 1.5px var(--nwb-teal); }
  .nwb-global-person-name { font-size: 11px; }

  /* Latest Stories: exactly one article per row, one image + one text block. */
  .nwb-home .nwb-latest-grid {
    display: block !important;
  }
  .nwb-home .nwb-latest-grid .nwb-card {
    display: grid !important;
    grid-template-columns: 118px minmax(0,1fr) !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    overflow: visible;
    border: 0 !important;
    border-bottom: 1px solid var(--nwb-line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }
  .nwb-home .nwb-latest-grid .nwb-card-image {
    width: 118px !important;
    aspect-ratio: 1.42 / 1 !important;
    border-radius: 6px !important;
  }
  .nwb-home .nwb-latest-grid .nwb-card-body {
    min-width: 0;
    padding: 0 0 0 12px !important;
  }
  .nwb-home .nwb-latest-grid .nwb-card-title {
    margin: 4px 0 6px;
    font-size: 15px;
    line-height: 1.25;
  }
  .nwb-home .nwb-latest-grid .nwb-card-meta { font-size: 10px; }

  .nwb-footer-simple { padding: 32px 22px 25px; }
  .nwb-brand--footer img { width: 210px; max-height: 64px; }
  .nwb-footer-tagline { margin: 12px 0 21px; font-size: 16px; line-height: 1.55; }
  .nwb-footer-menu--direct { gap: 11px 22px; }
  .nwb-footer-menu--direct a { font-size: 15px; }
  .nwb-footer-bottom .nwb-shell { padding: 16px 22px 19px; }
  .nwb-footer-bottom p { line-height: 1.5; }
}

@media (max-width: 360px) {
  .nwb-home .nwb-latest-grid .nwb-card { grid-template-columns: 104px minmax(0,1fr) !important; }
  .nwb-home .nwb-latest-grid .nwb-card-image { width: 104px !important; }
  .nwb-home .nwb-latest-grid .nwb-card-title { font-size: 14px; }
}
