:root {
  --cream: #f7f3e9;
  --ink: #0d1b2a;
  --sky: #a8d7ef;
  --sky-soft: #dff1f8;
  --gold: #b7955b;
  --sage: #8fa99b;
  --paper: #fffdf7;
  --muted: #5f6f7d;
  --line: rgba(13, 27, 42, 0.14);
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.12);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(140deg, rgba(168, 215, 239, 0.22), transparent 36%),
    linear-gradient(180deg, var(--cream), #fffaf0 54%, var(--cream));
  color: var(--ink);
  line-height: 1.6;
}

body.admin-body {
  background: #f3efe4;
}

a { color: inherit; text-decoration: none; }

button, input, textarea, select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fffdf7;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 820;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--sky);
}

main:focus {
  outline: none;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #0a5b82;
  transition: width 120ms ease;
}

.site-shell {
  min-height: 100vh;
}

.global-strip {
  background: #06243a;
  color: #dff1f8;
  font-size: 0.78rem;
}

.global-strip-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.global-strip-inner span {
  font-weight: 760;
}

.global-strip-inner a {
  color: #fffdf7;
  font-weight: 720;
  margin-left: 12px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(13, 27, 42, 0.22);
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #263849;
  font-size: 0.9rem;
  font-weight: 680;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(168, 215, 239, 0.34);
  color: var(--ink);
}

.topic-nav {
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(247, 243, 233, 0.72);
}

.topic-nav-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  white-space: nowrap;
}

.topic-nav-inner a {
  color: #31495d;
  font-size: 0.84rem;
  font-weight: 760;
}

.topic-nav-inner a:hover,
.topic-nav-inner a[aria-current="page"] {
  color: #005f86;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 84px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: #526577;
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  font-weight: 540;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 540;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 720px;
  color: #334657;
  font-size: 1.16rem;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  border: 1px solid rgba(13, 27, 42, 0.18);
  background: var(--ink);
  color: #fffdf7;
  padding: 12px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.18);
}

.button.secondary {
  background: rgba(255, 253, 247, 0.76);
  color: var(--ink);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button.compact {
  min-height: 36px;
  padding: 9px 14px;
  font-size: 0.86rem;
}

.utility-strip {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #dff1f8;
  background: var(--ink);
  padding: 7px 12px;
  font-size: 0.78rem;
}

.utility-strip span {
  font-weight: 780;
}

.utility-strip a {
  color: #fffdf7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wb-hero-shell {
  padding: 0 0 46px;
}

.wb-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background: var(--ink);
  color: #fffdf7;
}

.wb-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 44%;
  opacity: 1;
}

.wb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.95), rgba(13, 27, 42, 0.64) 58%, rgba(13, 27, 42, 0.12)),
    linear-gradient(0deg, rgba(13, 27, 42, 0.92), transparent 44%);
}

.wb-hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 150px 48px 0;
}

.wb-hero-overlay h1 {
  color: #fffdf7;
  font-size: clamp(2.3rem, 3.4vw, 4rem);
  line-height: 1.02;
}

.wb-hero-overlay p {
  max-width: 620px;
  font-size: 1rem;
  margin-bottom: 18px;
}

.evidence-band {
  padding: 56px 0;
  background: linear-gradient(135deg, #eaf5f8, rgba(255, 253, 247, 0.9));
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: end;
}

.evidence-grid h2,
.resource-feature h2,
.engagement-grid h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.evidence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(13, 27, 42, 0.14);
  border: 1px solid rgba(13, 27, 42, 0.14);
}

.evidence-cards article {
  min-height: 250px;
  background: var(--paper);
  padding: 24px;
  display: grid;
  align-content: space-between;
}

.evidence-cards span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.evidence-cards strong {
  display: block;
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 0.95;
}

.reduced-section {
  padding: 64px 0;
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(13, 27, 42, 0.14);
  border: 1px solid rgba(13, 27, 42, 0.14);
}

.dossier-card {
  min-height: 330px;
  background: rgba(255, 253, 247, 0.86);
  padding: 26px;
  display: grid;
  align-content: end;
  gap: 10px;
}

.dossier-card:first-child {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.08), rgba(13, 27, 42, 0.9)),
    url("/assets/context-workshop-table.jpg") center / cover;
  color: #fffdf7;
}

.dossier-card:first-child .eyebrow,
.dossier-card:first-child p {
  color: #dff1f8;
}

.section-action {
  margin-top: 18px;
}

.insights-band {
  padding: 68px 0;
  background: #fffdf7;
}

.insight-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insight-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.insight-row:last-child {
  border-bottom: 0;
}

.insight-row > span {
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.insight-row h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.insight-row p {
  max-width: 780px;
  margin-bottom: 0;
}

.resource-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.resource-list {
  display: grid;
  gap: 1px;
  background: rgba(13, 27, 42, 0.14);
  border: 1px solid rgba(13, 27, 42, 0.14);
}

.resource-list span {
  background: rgba(255, 253, 247, 0.86);
  padding: 18px 20px;
  font-weight: 740;
}

.engagement-band {
  color: #fffdf7;
  background: #002c45;
  padding: 58px 0;
}

.engagement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.engagement-grid h2 {
  color: #fffdf7;
  max-width: 780px;
}

.engagement-grid p {
  max-width: 720px;
  color: #cfe9f4;
}

.engagement-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.hero-topic-row {
  position: absolute;
  z-index: 3;
  left: 48px;
  right: 48px;
  bottom: 34px;
  border-top: 1px solid rgba(255, 253, 247, 0.26);
  padding-top: 18px;
}

.hero-topic-row .eyebrow,
.wb-hero-overlay .eyebrow,
.knowledge-strip .eyebrow {
  color: #dff1f8;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.topic-card {
  min-height: 104px;
  display: grid;
  align-content: end;
  gap: 5px;
  border-left: 3px solid var(--sky);
  background: rgba(0, 44, 69, 0.68);
  padding: 16px;
}

.topic-card span,
.story-list span {
  color: var(--sky-soft);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-band {
  padding: 50px 0 24px;
}

.compact-head {
  margin-bottom: 18px;
}

.compact-head h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  text-transform: uppercase;
}

.priority-rail {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.18);
}

.priority-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px 20px;
  color: #fffdf7;
  border-right: 1px solid rgba(255, 253, 247, 0.22);
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.1), rgba(13, 27, 42, 0.88)),
    linear-gradient(135deg, #1e5b70, #0d1b2a);
}

.priority-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background: linear-gradient(120deg, transparent, rgba(168, 215, 239, 0.78));
}

.priority-panel span {
  font-weight: 800;
  font-size: 1.08rem;
}

.priority-panel p {
  margin: 0;
  font-size: 0.9rem;
}

.priority-panel b {
  font-size: 0.78rem;
}

.priority-1 {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.08), rgba(13, 27, 42, 0.9)),
    url("/assets/context-workshop-table.jpg") center / cover;
}

.priority-2 { background-color: #0d3c56; }
.priority-3 { background-color: #145a70; }
.priority-4 { background-color: #326f7b; }
.priority-5 { background-color: #3b7b83; }
.priority-6 { background-color: #0b3348; }

.data-zone {
  padding: 62px 0;
  background: linear-gradient(135deg, #eaf5f8, rgba(255, 253, 247, 0.9));
}

.data-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: stretch;
}

.data-intro h2 {
  max-width: 420px;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  text-transform: uppercase;
}

.data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.data-card {
  min-height: 310px;
  background: var(--paper);
  border: 1px solid rgba(13, 27, 42, 0.12);
  padding: 26px;
  display: grid;
  align-content: space-between;
}

.data-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.data-card strong {
  display: block;
  font-size: 2.9rem;
  line-height: 0.95;
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
}

.data-card a,
.publication-card a {
  color: #0a5b82;
  font-weight: 800;
  font-size: 0.84rem;
}

.newsletter-band {
  padding: 54px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 28px;
  background: #e4edf2;
  padding: 34px 40px;
  border: 1px solid rgba(13, 27, 42, 0.08);
}

.newsletter-inner h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  text-transform: uppercase;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.publication-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: start;
}

.pub-cover {
  min-height: 175px;
  color: #fffdf7;
  background:
    linear-gradient(160deg, rgba(13, 27, 42, 0.82), rgba(10, 91, 130, 0.52)),
    linear-gradient(135deg, #0d1b2a, #a8d7ef);
  padding: 14px;
  display: grid;
  align-content: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.pub-2 .pub-cover {
  background:
    linear-gradient(160deg, rgba(84, 19, 36, 0.8), rgba(183, 149, 91, 0.44)),
    linear-gradient(135deg, #7d1632, #b7955b);
}

.pub-3 .pub-cover {
  background:
    linear-gradient(160deg, rgba(13, 27, 42, 0.78), rgba(143, 169, 155, 0.55)),
    linear-gradient(135deg, #0d1b2a, #8fa99b);
}

.purpose-section {
  padding: 48px 0 70px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 58px;
  align-items: center;
}

.purpose-grid img,
.project-grid img,
.partner-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.purpose-grid img {
  aspect-ratio: 4 / 3;
}

.identity-panel > img {
  width: 112px;
  height: 112px;
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  object-position: 50% 28%;
  border: 4px solid var(--paper);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.16);
  margin-bottom: 18px;
}

.metric-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.metric-list div {
  border-left: 5px solid var(--sky);
  padding-left: 16px;
}

.metric-list strong {
  display: block;
  font-size: 2.2rem;
  color: #0a5b82;
}

.knowledge-strip {
  color: #fffdf7;
  background: #002c45;
  padding: 44px 0;
  overflow: hidden;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  align-items: end;
}

.knowledge-grid h2 {
  color: #fffdf7;
  max-width: 680px;
}

.knowledge-grid p,
.knowledge-grid span {
  color: #cfe9f4;
}

.knowledge-grid a {
  border-left: 1px solid rgba(255, 253, 247, 0.28);
  padding-left: 18px;
}

.knowledge-grid b {
  display: block;
  margin-bottom: 8px;
}

.project-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.project-grid h2 {
  text-transform: uppercase;
}

.project-grid img {
  aspect-ratio: 16 / 9;
}

.story-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-list a {
  display: grid;
  gap: 4px;
  background: var(--paper);
  padding: 18px;
  border-left: 5px solid var(--sky);
}

.story-list span {
  color: #4a7082;
}

.partner-home h2 {
  text-transform: uppercase;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.partner-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
  color: #fffdf7;
}

.partner-card img {
  aspect-ratio: 16 / 6;
  opacity: 0.72;
  object-position: 50% 30%;
}

.partner-card span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.interactive-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.interactive-toolbar > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-chip {
  border: 1px solid rgba(13, 27, 42, 0.16);
  background: rgba(255, 253, 247, 0.82);
  color: #25394b;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 740;
  font-size: 0.86rem;
}

.filter-chip:hover,
.filter-chip.active {
  background: rgba(168, 215, 239, 0.42);
  border-color: rgba(10, 91, 130, 0.3);
}

[data-filter-item].is-hidden {
  display: none;
}

.is-hidden {
  display: none !important;
}

.inline-detail {
  margin-top: 14px;
  border-left: 4px solid var(--sky);
  background: rgba(168, 215, 239, 0.18);
  padding: 12px 14px;
}

.inline-detail p {
  margin: 0 0 8px;
}

.inline-detail p:last-child {
  margin-bottom: 0;
}

.article-tools {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 18px;
}

.article-index {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-index-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.article-index-row:last-child {
  border-bottom: 0;
}

.article-index-row > span {
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.article-index-row h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  max-width: 860px;
}

.article-index-row p {
  max-width: 820px;
}

.dossier-index {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dossier-index-row {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 0;
  background: rgba(255, 253, 247, 0.86);
}

.dossier-index-row > div:last-child {
  padding: 28px;
  align-self: center;
}

.dossier-index-row h3 {
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
}

.dossier-index-media {
  min-height: 260px;
  display: grid;
  align-content: end;
  color: #fffdf7;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.12), rgba(13, 27, 42, 0.9)),
    url("/assets/context-workshop-table.jpg") center / cover;
}

.dossier-index-media span {
  color: #dff1f8;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.media-2 {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.12), rgba(13, 27, 42, 0.9)),
    url("/assets/context-field-documentation.jpg") center / cover;
}

.media-3 {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.12), rgba(13, 27, 42, 0.9)),
    url("/assets/context-research-publications.jpg") center / cover;
}

.resource-index {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.resource-index-feature {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.72), rgba(13, 27, 42, 0.92)),
    url("/assets/context-research-publications.jpg") center / cover;
  color: #fffdf7;
  padding: 30px;
  display: grid;
  align-content: end;
  min-height: 420px;
}

.resource-index-feature .eyebrow,
.resource-index-feature p {
  color: #dff1f8;
}

.resource-index-feature h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.04;
}

.resource-index-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.resource-index-list a,
.resource-index-list button {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: rgba(255, 253, 247, 0.88);
  padding: 20px;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.resource-index-list small {
  grid-column: 2;
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
}

.resource-index-list a:hover,
.resource-index-list button:hover,
.resource-index-list button.active {
  background: rgba(223, 241, 248, 0.7);
}

.resource-index-list span {
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.resource-preview {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 253, 247, 0.22);
  padding-top: 16px;
  color: #dff1f8;
}

.resource-preview p {
  margin: 8px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.contact-brief {
  background: #002c45;
  color: #fffdf7;
  padding: 24px;
}

.contact-brief .eyebrow {
  color: #a8d7ef;
}

.contact-brief a {
  display: block;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
  padding: 14px 0;
  color: #dff1f8;
  font-weight: 780;
}

.form-meter {
  color: var(--muted);
  font-size: 0.86rem;
}

.authority-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.authority-profile > article,
.authority-profile > aside {
  background: rgba(255, 253, 247, 0.9);
  padding: 30px;
}

.authority-profile > article {
  border-top: 4px solid #0a5b82;
}

.authority-profile h3,
.cv-download-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1.04;
}

.authority-profile.slim {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.authority-profile.slim > aside {
  display: grid;
  place-items: center;
  background: #002c45;
}

.evidence-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 22px;
}

.evidence-table div {
  background: rgba(255, 253, 247, 0.88);
  padding: 22px;
}

.evidence-table span,
.expertise-strip span,
.kit-grid span {
  color: #5d7080;
  display: block;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-table p {
  margin-bottom: 0;
  font-weight: 720;
}

.evidence-table.compact {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.kit-grid,
.expertise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.kit-grid a,
.expertise-strip div {
  background: rgba(255, 253, 247, 0.9);
  padding: 20px;
  min-height: 112px;
  display: grid;
  align-content: space-between;
}

.bio-layout,
.cv-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.bio-note,
.cv-download-panel {
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  padding: 30px;
}

.bio-note.long {
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.98), rgba(223, 241, 248, 0.64));
}

.bio-note p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.72;
}

.bio-note .button {
  margin-top: 16px;
}

.cv-download-panel {
  color: #fffdf7;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.94)),
    url("/assets/context-field-documentation.jpg") center / cover;
  min-height: 430px;
  display: grid;
  align-content: end;
}

.cv-download-panel .eyebrow,
.cv-download-panel p {
  color: #dff1f8;
}

.speaking-index,
.press-index {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.speaking-index a,
.press-index article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  background: rgba(255, 253, 247, 0.9);
  padding: 24px;
}

.speaking-index span,
.press-index article > span {
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.speaking-index h3,
.press-index h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.9rem);
}

.article-body {
  padding: clamp(24px, 4vw, 48px);
}

.article-body h1 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  max-width: 980px;
}

.article-body p {
  max-width: 820px;
  font-size: 1.06rem;
}

.article-body .lead {
  font-size: 1.2rem;
}

.article-body h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.article-body ul {
  max-width: 820px;
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.article-faq details {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.74);
  padding: 14px 16px;
}

.article-faq summary {
  cursor: pointer;
  font-weight: 820;
  color: var(--ink);
}

.article-faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.directory-list a {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-weight: 760;
}

.directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: stretch;
  background: #09273d;
  color: #fffdf7;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(13, 27, 42, 0.12);
  box-shadow: var(--shadow);
}

.directory-hero h2 {
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.directory-hero p {
  max-width: 780px;
  color: #dff1f8;
}

.directory-hero .eyebrow {
  color: var(--sky);
}

.directory-hero-panel {
  display: grid;
  align-content: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 253, 247, 0.24);
  padding-left: 28px;
}

.directory-hero-panel span,
.directory-stats span,
.directory-score span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 820;
}

.directory-hero-panel span {
  color: var(--sky);
}

.directory-hero-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.95;
}

.directory-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(255, 253, 247, 0.86);
  margin-bottom: 22px;
}

.directory-stats article {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.directory-stats article:last-child {
  border-right: 0;
}

.directory-stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.18rem;
  margin-top: 4px;
}

.directory-stats p {
  margin-bottom: 0;
  color: var(--muted);
}

.directory-search {
  grid-template-columns: minmax(250px, 1fr) 220px minmax(0, auto);
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--line);
  padding: 14px;
  margin-bottom: 16px;
}

.directory-search select {
  min-height: 46px;
}

.directory-marketplace {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.directory-filter-rail,
.directory-results,
.directory-submit-panel,
.directory-profile-main,
.directory-profile-aside {
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(13, 27, 42, 0.07);
}

.directory-filter-rail {
  position: sticky;
  top: 98px;
  padding: 22px;
  display: grid;
  gap: 18px;
}

.directory-filter-rail h3 {
  margin: 0;
  font-size: 1.1rem;
}

.directory-filter-block {
  display: grid;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.directory-filter-block span,
.directory-filter-block button {
  color: var(--muted);
  font-size: 0.92rem;
}

.directory-filter-block button {
  width: 100%;
  border: 0;
  border-left: 2px solid rgba(168, 215, 239, 0.72);
  background: transparent;
  padding: 6px 0 6px 10px;
  text-align: left;
  cursor: pointer;
}

.directory-filter-block button:hover {
  color: var(--ink);
  border-left-color: #0a5b82;
}

.directory-results {
  display: grid;
  gap: 1px;
  background: var(--line);
  overflow: hidden;
}

.directory-results-head,
.directory-result-card,
.directory-empty {
  background: rgba(255, 253, 247, 0.96);
}

.directory-results-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
}

.directory-results-head b {
  display: block;
}

.directory-results-head span {
  color: var(--muted);
}

.directory-result-card {
  display: grid;
  grid-template-columns: 54px 72px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: start;
  padding: 22px;
  transition: background 160ms ease, transform 160ms ease;
}

.directory-result-card:hover {
  background: #fffdf7;
  transform: translateY(-1px);
}

.directory-rank {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #0a5b82;
}

.directory-rank span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1;
}

.directory-rank small {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.68rem;
}

.directory-logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0d1b2a, #0a5b82);
  color: #fffdf7;
  border-radius: 6px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.directory-result-main {
  min-width: 0;
}

.directory-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: start;
}

.directory-result-head h3 {
  font-size: 1.35rem;
}

.directory-score {
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(10, 91, 130, 0.24);
  background: rgba(168, 215, 239, 0.18);
  padding: 12px 10px;
  border-radius: 6px;
}

.directory-score strong {
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.directory-score.large {
  padding: 22px;
  margin-bottom: 18px;
}

.directory-score.large strong {
  font-size: 3.6rem;
}

.directory-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.directory-proof-grid span {
  border-left: 2px solid var(--sky);
  padding-left: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.directory-proof-grid b {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.directory-actions {
  display: grid;
  gap: 10px;
}

.directory-empty {
  padding: 28px;
}

.directory-submit-panel {
  padding: 22px;
}

.directory-quality-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(10, 91, 130, 0.22);
  background: linear-gradient(135deg, rgba(168, 215, 239, 0.18), rgba(255, 253, 247, 0.96));
  padding: 18px;
}

.directory-quality-panel > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.directory-quality-panel span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 820;
}

.directory-quality-panel strong {
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.directory-quality-panel meter {
  width: 100%;
  height: 12px;
}

.directory-quality-panel p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.directory-quality-panel ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.directory-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.directory-profile-main {
  display: grid;
}

.directory-profile-hero,
.directory-profile-section {
  padding: clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.directory-profile-hero {
  background: linear-gradient(135deg, rgba(168, 215, 239, 0.2), rgba(255, 253, 247, 0.92));
}

.directory-profile-hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.directory-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.directory-profile-main > .tag-list {
  padding: 0 clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px);
}

.directory-profile-aside {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.directory-profile-facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.directory-profile-facts p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 13px;
  background: rgba(255, 253, 247, 0.96);
}

.directory-profile-facts span {
  text-align: right;
  color: var(--muted);
}

.portrait-panel {
  background: linear-gradient(160deg, var(--paper), rgba(223, 241, 248, 0.7));
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow);
}

.portrait-frame {
  min-height: 380px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(160deg, rgba(13, 27, 42, 0.86), rgba(13, 27, 42, 0.62)),
    radial-gradient(circle at 30% 18%, rgba(168, 215, 239, 0.58), transparent 28%),
    linear-gradient(135deg, #dff1f8, #b7955b);
  color: #fffdf7;
  padding: 26px;
}

.portrait-frame strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1.05;
  font-weight: 520;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  margin-top: 42px;
}

.signal {
  background: rgba(255, 253, 247, 0.72);
  padding: 20px;
}

.signal b {
  display: block;
  font-size: 1.5rem;
}

.section {
  padding: 70px 0;
}

.page-masthead {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96), rgba(13, 27, 42, 0.82)),
    url("/assets/context-research-publications.jpg") center / cover;
  color: #fffdf7;
  padding: 72px 0 42px;
}

.page-masthead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
}

.page-masthead h1 {
  color: #fffdf7;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  max-width: 900px;
}

.page-masthead p {
  max-width: 760px;
  color: #dff1f8;
  font-size: 1.08rem;
}

.page-masthead .eyebrow {
  color: #a8d7ef;
}

.page-subnav {
  display: grid;
  gap: 1px;
  background: rgba(255, 253, 247, 0.18);
  border: 1px solid rgba(255, 253, 247, 0.2);
}

.page-subnav a {
  background: rgba(0, 44, 69, 0.62);
  color: #fffdf7;
  padding: 13px 14px;
  font-weight: 780;
  border-left: 4px solid transparent;
}

.page-subnav a:hover,
.page-subnav a[aria-current="page"] {
  border-left-color: var(--sky);
  background: rgba(0, 71, 102, 0.78);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 580px;
  color: var(--muted);
  margin: 0;
}

.grid-3,
.grid-2,
.resource-grid {
  display: grid;
  gap: 18px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.resource-grid { grid-template-columns: 0.9fr 1.1fr; }

.card {
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px;
  box-shadow: 0 12px 36px rgba(13, 27, 42, 0.06);
}

.card.featured {
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.98), rgba(223, 241, 248, 0.62));
  border-top: 4px solid #0a5b82;
}

.content-note {
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  padding: 24px;
}

.content-note p:last-child {
  margin-bottom: 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.method-grid article {
  background: rgba(255, 253, 247, 0.9);
  padding: 22px;
  min-height: 190px;
}

.method-grid h3 {
  font-size: 1.05rem;
  line-height: 1.22;
}

.method-grid p {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  background: rgba(168, 215, 239, 0.35);
  border: 1px solid rgba(13, 27, 42, 0.1);
  padding: 5px 9px;
  border-radius: 999px;
  color: #25394b;
  font-size: 0.82rem;
  font-weight: 680;
}

.muted { color: var(--muted); }

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  border-left: 2px solid var(--sky);
  padding-left: 18px;
}

.tool-panel {
  display: grid;
  gap: 12px;
}

textarea,
input,
select {
  width: 100%;
  border: 1px solid rgba(13, 27, 42, 0.18);
  background: rgba(255, 253, 247, 0.86);
  color: var(--ink);
  border-radius: 4px;
  padding: 12px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.score {
  font-size: 2.2rem;
  font-family: Georgia, "Times New Roman", serif;
}

.notice {
  border: 1px solid rgba(183, 149, 91, 0.42);
  background: rgba(183, 149, 91, 0.11);
  padding: 14px;
  border-radius: 4px;
}

.directory-list,
.glossary-list {
  display: grid;
  gap: 10px;
}

.list-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.footer {
  border-top: 1px solid rgba(255, 253, 247, 0.12);
  background: #002c45;
  color: #cfe9f4;
  padding: 34px 0 24px;
}

.footer a {
  color: #fffdf7;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 253, 247, 0.14);
}

.footer-brand {
  color: #fffdf7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 24px;
}

.footer-grid h3 {
  color: #fffdf7;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: #cfe9f4;
  padding: 5px 0;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 253, 247, 0.14);
  padding-top: 18px;
  font-size: 0.88rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 253, 247, 0.76);
  border: 1px solid var(--line);
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  background: #f3efe4;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  min-height: 100vh;
  align-self: start;
  background: #061f33;
  color: #dff1f8;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 22px;
}

.admin-brand {
  color: #fffdf7;
}

.admin-nav {
  display: grid;
  gap: 6px;
}

.admin-nav a {
  color: #dff1f8;
  padding: 11px 12px;
  border-left: 4px solid transparent;
  font-weight: 760;
}

.admin-nav a:hover,
.admin-nav a[aria-current="page"] {
  background: rgba(255, 253, 247, 0.08);
  border-left-color: var(--sky);
}

.admin-side-note {
  align-self: end;
  border-top: 1px solid rgba(255, 253, 247, 0.16);
  padding-top: 18px;
}

.admin-side-note .eyebrow,
.admin-side-note p {
  color: #cfe9f4;
}

.admin-main {
  padding: 30px;
  display: grid;
  gap: 22px;
  align-content: start;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid var(--line);
  padding: 22px;
}

.admin-topbar h1 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-metrics article {
  background: rgba(255, 253, 247, 0.9);
  padding: 22px;
}

.admin-metrics span,
.admin-settings-grid span {
  color: #5d7080;
  display: block;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-metrics strong {
  color: #0a5b82;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.admin-metrics p {
  color: var(--muted);
  margin-bottom: 0;
}

.admin-panel-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.admin-panel,
.admin-login {
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: 0 12px 36px rgba(13, 27, 42, 0.06);
}

.admin-login-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.admin-login h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  max-width: 12ch;
}

.admin-login-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.admin-login-form label,
.admin-login-help {
  display: grid;
  gap: 8px;
}

.admin-login-form label span,
.admin-login-help span {
  color: #5d7080;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-login-form input {
  font-family: inherit;
}

.admin-login-form button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.admin-login-alert {
  background: rgba(10, 91, 130, 0.08);
  border: 1px solid rgba(10, 91, 130, 0.2);
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 14px;
}

.admin-login-alert.danger {
  background: rgba(160, 46, 46, 0.08);
  border-color: rgba(160, 46, 46, 0.22);
}

.admin-login-alert b,
.admin-login-alert span {
  display: block;
}

.admin-login-alert span {
  color: var(--muted);
}

.admin-login-help {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
}

.admin-login-card {
  background: #0d1b2a;
  color: #fffdf7;
  padding: 24px;
  display: grid;
  align-content: space-between;
  min-height: 420px;
}

.admin-login-card h3 {
  color: #fffdf7;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.admin-login-card .eyebrow {
  color: #cfe9f4;
}

.admin-login-checks {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 24px;
}

.admin-login-checks span {
  background: rgba(255, 255, 255, 0.06);
  color: #dbeaf0;
  padding: 14px;
}

.admin-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-panel-head h2 {
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.admin-panel-head p {
  color: var(--muted);
  margin: 6px 0 0;
}

.admin-panel-head a,
.admin-actions-grid a {
  color: #0a5b82;
  font-weight: 820;
}

.admin-checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-checklist-grid article {
  background: rgba(255, 253, 247, 0.9);
  padding: 20px;
}

.admin-checklist-grid h3 {
  font-size: 1.06rem;
  margin: 12px 0 8px;
}

.admin-checklist-grid p {
  color: var(--muted);
  margin: 0;
}

.admin-task-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-task-list div {
  background: rgba(255, 253, 247, 0.9);
  padding: 16px;
}

.admin-task-list b,
.admin-task-list span {
  display: block;
}

.admin-task-list span {
  color: var(--muted);
  margin-top: 4px;
}

.admin-actions-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-actions-grid a {
  background: rgba(255, 253, 247, 0.9);
  padding: 16px;
}

.admin-actions-wide {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-command-center {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-command-center > div {
  background: rgba(255, 253, 247, 0.92);
  padding: 24px;
}

.admin-command-center h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  max-width: 620px;
}

.admin-command-center p {
  color: var(--muted);
  max-width: 620px;
}

.admin-priority-list {
  display: grid;
  gap: 1px;
  padding: 0 !important;
  background: var(--line) !important;
}

.admin-priority-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  background: rgba(255, 253, 247, 0.92);
  padding: 18px 20px;
}

.admin-priority-row span {
  color: #263849;
  font-weight: 840;
}

.admin-priority-row strong {
  color: #0a5b82;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.admin-priority-row em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}

.admin-health-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-health-grid div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: center;
  background: rgba(255, 253, 247, 0.9);
  padding: 16px;
}

.admin-health-grid span {
  color: #5d7080;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-health-grid b {
  color: #0d1b2a;
}

.admin-health-grid em {
  grid-column: 1 / -1;
  color: #0a5b82;
  font-style: normal;
  font-weight: 820;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 27, 42, 0.14);
  font-size: 0.78rem;
  font-weight: 840;
  min-height: 30px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.admin-status-good {
  background: rgba(143, 169, 155, 0.28);
  color: #1d4c36;
}

.admin-status-warn {
  background: rgba(183, 149, 91, 0.18);
  color: #71521f;
}

.admin-status-bad {
  background: rgba(160, 46, 46, 0.1);
  color: #8b2d2d;
}

.admin-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.admin-filter-row a {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.82);
  color: #0a5b82;
  font-weight: 820;
  padding: 8px 12px;
}

.admin-filter-row a[aria-current="page"] {
  background: #0d1b2a;
  color: #fffdf7;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-inline-editor {
  margin-top: 12px;
}

.admin-inline-editor summary {
  color: #0a5b82;
  cursor: pointer;
  font-weight: 820;
}

.admin-inline-editor .admin-editor-form {
  grid-template-columns: 1fr;
  margin: 12px 0 0;
}

.status-new {
  background: rgba(168, 215, 239, 0.5);
}

.status-read {
  background: rgba(143, 169, 155, 0.28);
}

.status-archived {
  background: rgba(13, 27, 42, 0.08);
}

.admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.admin-settings-grid div {
  background: rgba(255, 253, 247, 0.9);
  padding: 18px;
}

.admin-settings-grid b {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.split-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.admin-editor-form {
  margin-bottom: 24px;
}

.admin-editor-form input,
.admin-editor-form textarea,
.admin-editor-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(13, 27, 42, 0.16);
  background: rgba(255, 253, 247, 0.96);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.admin-editor-form textarea {
  min-height: 118px;
  resize: vertical;
}

.admin-editor-form .hero-title-input {
  min-height: 92px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.admin-editor-form .article-editor-body {
  min-height: 280px;
}

.admin-editor-stack {
  display: grid;
  gap: 12px;
}

.admin-editor-detail {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.76);
}

.admin-editor-detail summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.admin-editor-detail summary span {
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-editor-detail .admin-editor-form {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 16px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.full { grid-column: 1 / -1; }

@media (max-width: 880px) {
  .hero-grid,
  .resource-grid,
  .grid-2,
  .grid-3,
  .method-grid,
  .directory-hero,
  .directory-stats,
  .directory-marketplace,
  .directory-result-card,
  .directory-result-head,
  .directory-proof-grid,
  .directory-profile-layout,
  .admin-shell,
  .admin-metrics,
  .admin-panel-grid,
  .admin-login-wrap,
  .admin-checklist-grid,
  .admin-command-center,
  .admin-settings-grid,
  .interactive-toolbar,
  .article-index-row,
  .dossier-index-row,
  .resource-index,
  .resource-index-list a,
  .contact-layout,
  .authority-profile,
  .authority-profile.slim,
  .evidence-table,
  .kit-grid,
  .expertise-strip,
  .bio-layout,
  .cv-layout,
  .speaking-index a,
  .press-index article,
  .evidence-grid,
  .evidence-cards,
  .dossier-grid,
  .resource-feature,
  .engagement-grid,
  .data-grid,
  .newsletter-inner,
  .purpose-grid,
  .knowledge-grid,
  .project-grid,
  .partner-grid,
  .page-masthead-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    min-height: auto;
  }

  .admin-main {
    padding: 18px;
  }

  .admin-actions-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-table {
    display: block;
    overflow-x: auto;
  }

  .interactive-toolbar > div {
    justify-content: flex-start;
  }

  .directory-hero-panel,
  .directory-filter-rail,
  .directory-profile-aside {
    position: static;
  }

  .directory-hero-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 247, 0.24);
    padding-left: 0;
    padding-top: 20px;
  }

  .directory-result-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .directory-rank {
    grid-row: span 2;
  }

  .directory-logo,
  .directory-actions {
    grid-column: 2;
  }

  .directory-result-main {
    grid-column: 2;
  }

  .directory-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dossier-index-media,
  .resource-index-feature {
    min-height: 280px;
  }

  .wb-hero {
    min-height: 620px;
  }

  .wb-hero img {
    width: 100%;
  }

  .wb-hero-overlay {
    padding: 150px 28px 0;
  }

  .hero-topic-row {
    left: 28px;
    right: 28px;
  }

  .topic-grid,
  .data-cards,
  .publication-grid,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .engagement-actions {
    min-width: 0;
  }

  .priority-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .publication-card {
    grid-template-columns: 112px 1fr;
  }

  .signal-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    display: grid;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .global-strip-inner,
  .footer-brand-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 54px;
  }

  .signal-row,
  .split-form {
    grid-template-columns: 1fr;
  }

  .admin-actions-wide {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    gap: 6px;
  }

  .nav-links a {
    text-align: center;
    padding: 9px 8px;
    font-size: 0.84rem;
  }

  .utility-strip {
    display: grid;
    gap: 6px;
  }

  .global-strip-inner {
    display: grid;
    gap: 6px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .global-strip-inner a {
    margin-left: 0;
    margin-right: 12px;
  }

  .wb-hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .wb-hero img {
    width: 100%;
    opacity: 1;
    object-position: 65% 45%;
  }

  .wb-hero-overlay {
    padding: 108px 18px 0;
  }

  .insight-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-topic-row {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 22px 18px 0;
  }

  .priority-rail {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    padding: 22px;
  }

  .publication-card {
    grid-template-columns: 1fr;
  }

  .pub-cover {
    min-height: 130px;
  }

  .list-row {
    grid-template-columns: 1fr;
  }

  .page-masthead {
    padding: 48px 0 28px;
  }
}
