:root {
  --ink: #15283b;
  --ink-muted: #526273;
  --paper: #ffffff;
  --surface: #f4f7f9;
  --line: #dbe3e8;
  --brand: #0b7285;
  --brand-deep: #075565;
  --accent: #d79a2b;
  --accent-soft: #fff3db;
  --shadow: 0 16px 44px rgba(21, 40, 59, 0.10);
  --radius: 18px;
  --content-width: 760px;
  --site-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: var(--brand-deep); }
a:hover { color: var(--brand); }
img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 1000;
  padding: .65rem .85rem;
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: 8px;
}

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.nav-wrap {
  width: min(var(--site-width), calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  border-radius: 11px;
  font-size: .93rem;
  font-weight: 850;
  letter-spacing: .05em;
}
.brand-copy { line-height: 1.1; }
.brand-copy small { display: block; margin-top: .18rem; color: var(--ink-muted); font-size: .7rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: .15rem; }
.site-nav a { color: var(--ink-muted); text-decoration: none; padding: .48rem .7rem; border-radius: 8px; font-size: .94rem; font-weight: 650; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--brand-deep); background: #e9f5f6; }
.nav-cta { border: 1px solid var(--brand); color: var(--brand-deep) !important; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8f8 0%, #f8fbfc 52%, #fff7e8 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before { width: 380px; height: 380px; right: -120px; top: -210px; background: rgba(11,114,133,.12); }
.hero::after { width: 250px; height: 250px; left: -90px; bottom: -155px; background: rgba(215,154,43,.12); }
.hero-inner { width: min(var(--site-width), calc(100% - 2rem)); margin: 0 auto; padding: 4.75rem 0 4.35rem; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1rem; color: var(--brand-deep); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 1.4rem; height: 2px; background: var(--accent); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.035em; }
h1 { max-width: 890px; margin: 0; font-size: clamp(2.2rem, 5vw, 4.45rem); }
.hero p { max-width: 700px; margin: 1.25rem 0 0; color: #415364; font-size: clamp(1.06rem, 2.2vw, 1.25rem); }
.hero-actions { margin-top: 1.65rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.button { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; padding: .78rem 1rem; border-radius: 10px; font-weight: 750; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 9px 20px rgba(21,40,59,.13); }
.button-primary { background: var(--brand-deep); color: #fff; }
.button-primary:hover { background: var(--brand); color: #fff; }
.button-secondary { color: var(--brand-deep); border: 1px solid #8bc4cb; background: rgba(255,255,255,.55); }

.section { width: min(var(--site-width), calc(100% - 2rem)); margin: 0 auto; padding: 4.5rem 0; }
.section-heading { max-width: 740px; margin-bottom: 2rem; }
.section-heading h2 { margin: 0; font-size: clamp(1.75rem, 3.4vw, 2.55rem); }
.section-heading p { max-width: 650px; color: var(--ink-muted); margin: .8rem 0 0; }
.feature-card { display: grid; grid-template-columns: 1.35fr .9fr; gap: 2.25rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--ink); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.feature-card h2 { margin: .65rem 0 .8rem; font-size: clamp(1.7rem, 3.1vw, 2.65rem); }
.feature-card p { color: #d5e0e7; max-width: 650px; }
.feature-card .button-primary { background: var(--accent); color: var(--ink); }
.feature-card .button-primary:hover { background: #e6ae4b; color: var(--ink); }
.feature-meta { display: flex; flex-wrap: wrap; gap: .55rem; align-items: flex-start; align-content: flex-start; }
.tag { display: inline-flex; padding: .32rem .58rem; border-radius: 99px; font-size: .78rem; font-weight: 750; line-height: 1; }
.tag-light { background: #253e53; color: #e4f1f3; }
.tag-brand { background: #e1f4f5; color: var(--brand-deep); }
.tag-accent { background: var(--accent-soft); color: #875a0a; }
.insight-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.insight-card { min-height: 225px; padding: 1.35rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.insight-card h3 { margin: 1rem 0 .5rem; font-size: 1.15rem; }
.insight-card p { margin: 0; color: var(--ink-muted); font-size: .94rem; }
.series-label { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-deep); }
.author-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.author-layout { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.1rem; }
.author-avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #e1f4f5; color: var(--brand-deep); font-weight: 850; }
.author-layout h2 { margin: 0; font-size: 1.35rem; }
.author-layout p { margin: .4rem 0 0; color: var(--ink-muted); }
.cta-panel { text-align: center; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius); background: linear-gradient(135deg, var(--brand-deep), var(--brand)); color: #fff; }
.cta-panel h2 { margin: 0; font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.cta-panel p { max-width: 680px; margin: .8rem auto 1.45rem; color: #e4f7f8; }
.cta-panel .button { background: #fff; color: var(--brand-deep); }

.article-hero .hero-inner { padding-top: 3.2rem; padding-bottom: 3rem; }
.article-hero h1 { max-width: 900px; font-size: clamp(2.05rem, 4.45vw, 3.65rem); }
.article-dek { max-width: 740px !important; }
.article-meta { display: flex; flex-wrap: wrap; gap: .65rem 1.1rem; margin-top: 1.45rem; color: #556a78; font-size: .93rem; }
.article-meta strong { color: var(--ink); }
.article-shell { width: min(var(--content-width), calc(100% - 2rem)); margin: 0 auto; padding: 3.2rem 0 1.5rem; }
.article-shell p { margin: 0 0 1.35rem; font-size: 1.08rem; }
.article-shell h2 { margin: 2.65rem 0 1rem; font-size: clamp(1.55rem, 3.2vw, 2.15rem); }
.article-shell h3 { margin: 1.85rem 0 .75rem; font-size: 1.35rem; }
.article-shell ul { margin: 0 0 1.45rem; padding-left: 1.3rem; }
.article-shell li { margin-bottom: .52rem; font-size: 1.05rem; }
.pull-quote { margin: 2rem 0; padding: 1.35rem 1.35rem 1.35rem 1.55rem; border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0; background: var(--accent-soft); color: #54411d; font-size: 1.23rem; font-weight: 720; line-height: 1.45; }
.system-flow { margin: 2rem 0; padding: 1.35rem; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.system-flow h3 { margin-top: 0; }
.flow-line { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.flow-item { background: #fff; padding: .52rem .7rem; border: 1px solid var(--line); border-radius: 9px; font-size: .9rem; font-weight: 700; }
.flow-arrow { color: var(--brand); font-weight: 850; }
.article-callout { margin: 2.25rem 0; padding: 1.5rem; border: 1px solid #c5e5e8; border-radius: 14px; background: #f1fbfc; }
.article-callout h3 { margin-top: 0; }
.article-footer { width: min(var(--content-width), calc(100% - 2rem)); margin: 0 auto; padding: 1.8rem 0 4.25rem; }
.article-footer hr { border: 0; border-top: 1px solid var(--line); margin: 0 0 1.8rem; }
.article-author { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.article-author p { margin: .35rem 0 0; color: var(--ink-muted); }
.article-disclaimer { margin-top: 1.45rem; padding: 1rem 1.1rem; border-radius: 10px; color: #5a6977; background: var(--surface); font-size: .86rem; }
.related { width: min(var(--site-width), calc(100% - 2rem)); margin: 0 auto; padding: 0 0 4rem; }
.related h2 { margin-bottom: 1rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { display: flex; flex-direction: column; min-height: 175px; padding: 1.25rem; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; color: var(--ink); }
.related-card span:last-child { margin-top: auto; color: var(--brand-deep); font-weight: 750; }
.related-card:hover { border-color: #84c1c8; box-shadow: 0 9px 22px rgba(21,40,59,.08); }

.site-footer { background: #102434; color: #d6e1e8; }
.footer-wrap { width: min(var(--site-width), calc(100% - 2rem)); margin: 0 auto; padding: 2rem 0; display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; }
.site-footer p { margin: 0; color: #aabac5; font-size: .88rem; }
.site-footer a { color: #e3f5f6; }
.footer-brand { color: #fff; font-weight: 750; }

@media (max-width: 900px) {
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-wrap { min-height: 64px; }
  .brand-copy small { display: none; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero-inner { padding: 3.3rem 0 3.1rem; }
  .section { padding: 3.3rem 0; }
  .insight-grid, .related-grid { grid-template-columns: 1fr; }
  .article-shell { padding-top: 2.3rem; }
  .article-shell p, .article-shell li { font-size: 1.03rem; }
  .footer-wrap { display: block; }
  .footer-wrap p { margin-top: .6rem; }
}


/* ART-CI-001 evidence-led article refinements */
.article-kicker { font-size: 1.26rem !important; line-height: 1.5; color: #344a5b; font-weight: 690; }
sup a { font-size: .76em; text-decoration: none; font-weight: 800; }
.concept-model { margin: 2.4rem 0; border: 1px solid #b9dce0; border-radius: 16px; padding: 1.2rem; background: linear-gradient(135deg, #f4fcfc 0%, #fff 70%); }
.model-header { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; padding-bottom: .9rem; border-bottom: 1px solid #cfe8ea; }
.model-header span { color: var(--brand-deep); font-size: 1.1rem; font-weight: 820; }
.model-header small { color: #647683; font-size: .75rem; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.model-steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: .65rem; padding: 1.15rem 0 .7rem; margin: 0; list-style: none; }
.model-steps li { position: relative; min-height: 116px; margin: 0; padding: .75rem; border: 1px solid #d6e4e7; border-radius: 12px; background: #fff; font-size: .83rem !important; line-height: 1.35; }
.model-steps li::after { content: '→'; position: absolute; right: -.54rem; top: 42%; color: var(--brand); font-size: 1.25rem; font-weight: 850; z-index: 2; }
.model-steps li:last-child::after { display: none; }
.model-steps strong { display: grid; place-items: center; width: 24px; height: 24px; margin-bottom: .55rem; border-radius: 50%; background: #e5f6f7; color: var(--brand-deep); font-size: .74rem; }
.model-steps span { display: block; font-weight: 740; color: #243849; }
.model-loop { padding: .72rem .85rem; border-radius: 10px; background: #fff5e2; color: #6e4d10; font-weight: 750; text-align: center; }
.concept-model figcaption { margin-top: .9rem; color: #5c6e7b; font-size: .84rem; line-height: 1.45; }
.cadence-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.25rem 0 1.6rem; }
.cadence-grid div { padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.cadence-grid strong { display: block; margin-bottom: .28rem; color: var(--brand-deep); }
.cadence-grid span { display: block; color: #536675; font-size: .92rem; line-height: 1.45; }
.sources { margin-top: 3.3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.sources h2 { margin-top: 0; }
.sources li { margin-bottom: .75rem; padding-left: .25rem; color: #526574; font-size: .93rem !important; line-height: 1.55; }
.sources strong { color: #445765; }
@media (max-width: 900px) { .model-steps { grid-template-columns: repeat(2, 1fr); } .model-steps li::after { display: none; } }
@media (max-width: 580px) { .model-header { align-items: flex-start; flex-direction: column; } .model-steps, .cadence-grid { grid-template-columns: 1fr; } .model-steps li { min-height: auto; } }


/* CIWise social infographic */
.article-infographic {
  margin: 2.35rem 0 2.7rem;
  padding: .75rem;
  border: 1px solid #c7dce1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(21, 40, 59, .08);
}
.article-infographic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.article-infographic figcaption {
  padding: .85rem .3rem .15rem;
  color: #5d6e7b;
  font-size: .86rem;
  line-height: 1.5;
}

/* ART-PS-001 additions */
.visual-card { margin: 2rem 0; padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 10px 26px rgba(21,40,59,.06); }
.visual-card img { width: 100%; height: auto; display: block; border-radius: 10px; }
.visual-card figcaption { margin-top: .75rem; color: var(--ink-muted); font-size: .9rem; }
.triage-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 1.75rem; font-size: .96rem; }
.triage-table th, .triage-table td { border: 1px solid var(--line); padding: .9rem; text-align: left; vertical-align: top; }
.triage-table th { background: #edf7f8; color: var(--ink); }
.triage-table td:first-child { font-weight: 750; width: 32%; }
.source-notes { margin-top: 2.2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.source-notes ol { padding-left: 1.35rem; }
.source-notes li { margin-bottom: .8rem; font-size: .95rem; }
@media (max-width: 640px) { .triage-table { font-size: .88rem; } .triage-table th, .triage-table td { padding: .65rem; } }
/* ART-LP-001 table of contents */
.article-layout {
  width: min(var(--site-width), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, var(--content-width));
  justify-content: center;
  align-items: start;
  gap: 3rem;
}
.article-shell.article-content {
  width: auto;
  margin: 0;
}
.article-toc {
  position: sticky;
  top: 96px;
  margin-top: 3.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.article-toc-label {
  margin: 0 0 .7rem;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.article-toc nav {
  display: grid;
  gap: .12rem;
}
.article-toc a {
  display: block;
  padding: .42rem .45rem;
  border-radius: 8px;
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.32;
  text-decoration: none;
}
.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--brand-deep);
  background: #e8f5f6;
  outline: none;
}
.article-content h2 {
  scroll-margin-top: 96px;
}
#dialogue-loop-title,
#sources {
  scroll-margin-top: 96px;
}
@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .article-toc {
    position: static;
    margin: 2.25rem auto 0;
    width: min(var(--content-width), 100%);
  }
  .article-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: .45rem;
  }
  .article-shell.article-content {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
  }
}
@media (max-width: 580px) {
  .article-toc nav { grid-template-columns: 1fr; }
}

/* ART-DQ-001 optional article navigation support. Append only if current site does not already include article-layout-with-toc styles. */
.article-layout-with-toc { width: min(var(--site-width), calc(100% - 2rem)); margin: 0 auto; display: grid; grid-template-columns: 230px minmax(0, var(--content-width)); gap: 2.4rem; align-items: start; }
.article-layout-with-toc .article-shell { width: 100%; margin: 0; }
.article-toc { padding-top: 3.2rem; }
.article-toc-inner { position: sticky; top: 96px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 10px 24px rgba(21,40,59,.06); padding: 1rem; }
.article-toc h2 { margin: 0 0 .7rem; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-deep); }
.article-toc a { display: block; padding: .42rem 0; color: var(--ink-muted); text-decoration: none; font-size: .88rem; line-height: 1.35; border-top: 1px solid #eef3f5; }
.article-toc a:hover { color: var(--brand-deep); }
@media (max-width: 980px) { .article-layout-with-toc { display: block; width: min(var(--content-width), calc(100% - 2rem)); } .article-toc { padding-top: 2rem; } .article-toc-inner { position: static; } }

/* ART-LC-001A START — local review staging */
.local-preview-banner {
  width: min(var(--site-width), calc(100% - 2rem));
  margin: 1.25rem auto 0;
  padding: .85rem 1rem;
  border: 1px solid #d4a72c;
  border-radius: 10px;
  background: #fff8df;
  color: #654a08;
  font-size: .92rem;
}
.lc-article-hero {
  background: linear-gradient(135deg, #0e2131 0%, #15394c 62%, #0b6674 100%);
  border-bottom-color: #244f65;
}
.lc-article-hero::before,
.lc-article-hero::after { display: none; }
.lc-article-hero h1,
.lc-article-hero .eyebrow { color: #fff; }
.lc-article-hero .article-dek,
.lc-article-hero .article-meta { color: #dceaf0; }
.lc-article-hero .article-meta strong { color: #fff; }

.lc-article-layout {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 2.5rem;
  align-items: start;
}
.lc-article-layout .article-shell {
  width: auto;
  margin: 0;
}
.article-toc {
  position: sticky;
  top: 90px;
  padding-top: 3.2rem;
}
.article-toc-inner {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfc;
}
.article-toc strong {
  display: block;
  margin-bottom: .7rem;
  color: var(--ink);
}
.article-toc a {
  display: block;
  padding: .4rem 0;
  color: #526574;
  text-decoration: none;
  font-size: .86rem;
  line-height: 1.35;
}
.article-toc a:hover { color: var(--brand-deep); }

.lc-transparency {
  margin-top: 0;
  background: #eef8fa;
  border-color: #9bcfd6;
}
.lc-transparency h2 {
  margin: 0 0 .6rem;
  font-size: 1.15rem;
}
.lc-transparency p {
  margin-bottom: 0;
  font-size: .96rem;
}

.lc-visual {
  margin: 2.4rem 0 2.8rem;
  padding: .75rem;
  border: 1px solid #9eb8c7;
  border-radius: 16px;
  background: #0e2131;
  box-shadow: 0 14px 32px rgba(14, 33, 49, .16);
}
.lc-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.lc-visual figcaption {
  padding: .9rem .35rem .2rem;
  color: #d8e7ee;
  font-size: .84rem;
  line-height: 1.5;
}
.lc-coming-soon { background: #f8fbfc; }
.lc-feature-card { border-color: #7fbac4; }

@media (max-width: 980px) {
  .lc-article-layout { grid-template-columns: 1fr; }
  .article-toc {
    position: static;
    padding-top: 2rem;
  }
  .article-toc-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .1rem 1rem;
  }
  .article-toc strong { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .article-toc-inner { grid-template-columns: 1fr; }
}
/* ART-LC-001A END */

/* ART-VS-001 — value-stream reliability article */
.vs-article-hero {
  background: linear-gradient(135deg, #102c47 0%, #17365d 58%, #0a6b78 100%);
  border-bottom-color: #2b536b;
}
.vs-article-hero::before,
.vs-article-hero::after { display: none; }
.vs-article-hero h1,
.vs-article-hero .eyebrow { color: #fff; }
.vs-article-hero .article-dek,
.vs-article-hero .article-meta { color: #dceaf0; }
.vs-article-hero .article-meta strong { color: #fff; }
.vs-article-layout {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 2.5rem;
  align-items: start;
}
.vs-article-layout .article-shell { width: auto; margin: 0; min-width: 0; }
.vs-boundary-note {
  margin-top: 0;
  border-color: #9bcfd6;
  background: #eff8f7;
}
.vs-boundary-note h2 { margin: 0 0 .55rem; font-size: 1.15rem; }
.vs-boundary-note p { margin-bottom: 0; font-size: .97rem; }
.ram-lens-table {
  width: 100%;
  margin: 1.6rem 0 2rem;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #d9d2c7;
  border-radius: 14px;
  background: #fffdf8;
  font-size: .94rem;
}
.ram-lens-table caption {
  padding: .75rem 1rem;
  background: #f3efe6;
  color: #5e6e78;
  text-align: left;
  font-size: .82rem;
  font-weight: 720;
}
.ram-lens-table th,
.ram-lens-table td {
  padding: .9rem;
  border-right: 1px solid #e4ddd3;
  border-top: 1px solid #e4ddd3;
  text-align: left;
  vertical-align: top;
}
.ram-lens-table th:last-child,
.ram-lens-table td:last-child { border-right: 0; }
.ram-lens-table thead th {
  border-top: 0;
  background: #eff8f7;
  color: #17365d;
  font-weight: 800;
}
.ram-lens-table tbody td:first-child { width: 16%; color: #17365d; font-weight: 800; }
.vs-visual {
  margin: 2.3rem 0 2.75rem;
  padding: .8rem;
  border: 1px solid #d9d2c7;
  border-radius: 18px;
  background: #f3efe6;
  box-shadow: 0 14px 30px rgba(23,54,93,.10);
}
.vs-visual picture,
.vs-visual img { display: block; width: 100%; height: auto; }
.vs-visual img { border-radius: 12px; }
.vs-visual figcaption { padding: .9rem .35rem .15rem; color: #5e6e78; }
.evidence-step-heading {
  padding-top: .3rem;
  color: #17365d;
}
.source-notes {
  margin-top: 3.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.source-notes li { margin-bottom: .95rem; color: #526574; font-size: .94rem !important; line-height: 1.58; }
.source-notes a { font-weight: 720; }
@media (max-width: 980px) {
  .vs-article-layout { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .ram-lens-table { display: block; overflow-x: auto; white-space: normal; }
  .ram-lens-table th, .ram-lens-table td { min-width: 150px; padding: .72rem; }
  .vs-visual { margin-left: -.25rem; margin-right: -.25rem; padding: .45rem; }
}
/* ART-VS-001 END */
