
:root {
  color-scheme: light;
  --ink: #1c2421;
  --muted: #65716c;
  --line: #dfe4e1;
  --line-strong: #aeb9b3;
  --paper: #ffffff;
  --ground: #ffffff;
  --green: #126451;
  --green-soft: #e2efe9;
  --red: #883846;
  --gold: #a77719;
  --shadow: 0 18px 44px rgba(21, 32, 27, 0.16);
  --layout-width: 1320px;
  --navigation-width: 190px;
  --reading-width: 700px;
  --citation-width: 250px;
  --layout-gap: 48px;
  --site-header-height: 58px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--site-header-height) + 34px); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ground);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
}
a { color: var(--green); text-underline-offset: 3px; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid rgba(18, 100, 81, 0.28); outline-offset: 2px; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: var(--site-header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  color: var(--ink);
}
.site-header__inner {
  width: min(var(--layout-width), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}
.brand span { color: var(--green); font-weight: 600; }
.site-header__meta { color: var(--muted); font-size: 12px; white-space: nowrap; }

.site-header--report .site-header__inner {
  display: grid;
  grid-template-columns: var(--navigation-width) minmax(0, var(--reading-width)) minmax(210px, var(--citation-width));
  column-gap: var(--layout-gap);
  justify-content: center;
}
.site-header--report .brand { grid-column: 1; }
.report-toolbar {
  grid-column: 2 / 4;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.report-toolbar__identity {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.report-toolbar__label {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  white-space: nowrap;
}
.report-toolbar__title {
  min-width: 0;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.report-toolbar__meta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: var(--reading-width);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}
.deep-dive-status {
  display: inline-block;
  border-left: 2px solid var(--line-strong);
  padding-left: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}
.deep-dive-status--expansion { border-color: var(--gold); color: #725515; }
.deep-dive-status--not-expanding { border-color: var(--green); color: var(--muted); }

.page-shell {
  width: min(var(--layout-width), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--navigation-width) minmax(0, var(--reading-width)) minmax(210px, var(--citation-width));
  column-gap: var(--layout-gap);
  justify-content: center;
  align-items: start;
}
.section-nav {
  position: sticky;
  top: var(--site-header-height);
  max-height: calc(100vh - var(--site-header-height) - 48px);
  padding: 30px 0 42px;
  overflow-y: auto;
  scrollbar-width: none;
}
.section-nav::-webkit-scrollbar { display: none; }
.section-nav__label {
  margin: 0 0 14px 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.section-nav a {
  position: relative;
  display: block;
  padding: 6px 0 6px 16px;
  color: #4e5a55;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.35;
}
.section-nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
}
.section-nav a:hover, .section-nav a[aria-current="true"] {
  color: var(--ink);
}
.section-nav a[aria-current="true"]::before {
  opacity: 1;
}
.deep-dive-main { grid-column: 2 / 4; min-width: 0; background: var(--paper); }
.report-section { padding: 42px 0 50px; }
.report-section--lead { padding-top: 30px; }
.report-section + .report-section { border-top: 1px solid var(--line); }
.report-section--lead .claim-list > .content-row:first-child .claim { font-size: 18px; line-height: 1.62; }
.section-heading {
  width: min(100%, var(--reading-width));
  margin-bottom: 24px;
}
.section-number { display: none; }
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}
.claim-list { display: grid; gap: 24px; }
.content-row {
  display: grid;
  grid-template-columns: minmax(0, var(--reading-width)) minmax(210px, var(--citation-width));
  column-gap: var(--layout-gap);
  align-items: start;
}
.content-row__body { min-width: 0; }
.claim { margin: 0; color: #28322e; font-size: 16px; line-height: 1.68; }
.commentary {
  margin-top: 2px;
  border-left: 3px solid var(--gold);
  padding: 3px 0 3px 18px;
}
.commentary h3 { margin: 0 0 5px; font-size: 13px; font-weight: 750; color: #604b20; }
.commentary p { margin: 0; color: #3d413f; }
.source-refs {
  display: inline;
  margin-left: 3px;
  white-space: normal;
}
.source-ref {
  min-width: 0;
  height: auto;
  border: 0;
  padding: 0 2px;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
  vertical-align: super;
}
.source-ref:hover { color: var(--ink); }

.source-margin-notes { padding-top: 2px; }
.source-margin-notes__toggle { display: none; }
.source-margin-notes__list { display: grid; gap: 16px; }
.source-margin-note {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 8px;
  width: 100%;
  padding: 0;
  color: #46504c;
  font-size: 11px;
  line-height: 1.42;
  text-align: left;
}
.source-margin-note__codes { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 2px 4px; }
.source-margin-note__code {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.source-margin-note__citation { display: grid; gap: 2px; min-width: 0; }
.source-margin-note__title {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  line-height: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 2px;
}
.source-margin-note__code:hover, .source-margin-note__title:hover { color: var(--green); }
.source-margin-note__citation span { color: var(--muted); font-size: 10px; }
.source-margin-note--additional { color: var(--muted); }
.source-margin-note__count { color: var(--green); font-size: 9px; font-weight: 750; line-height: 1.6; }
.source-margin-note__additional { display: grid; gap: 3px; }
.source-margin-note__additional > span:first-child { font-size: 10px; font-weight: 650; }

.data-block { margin-top: 28px; }
.data-block__title {
  margin: 0 0 10px;
  color: #3b4641;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}
.data-block__title--spaced { margin-top: 16px; }
.table-wrap { width: 100%; overflow-x: auto; border-top: 1px solid var(--line-strong); }
table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 12px; line-height: 1.45; }
th {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line-strong);
  background: #f0f3f1;
  color: #46514c;
  font-size: 10px;
  font-weight: 750;
  text-align: left;
  text-transform: uppercase;
  vertical-align: bottom;
}
td { padding: 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr:last-child td { border-bottom-color: var(--line-strong); }
tbody tr:hover td { background: #fafcfb; }
.numeric { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.muted { color: var(--muted); }
.table-primary { font-weight: 700; color: #26312c; }
.table-note { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }

.ownership-diagram {
  width: 100%;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: #fbfcfb;
}
.ownership-diagram svg { display: block; min-width: 720px; width: 100%; height: auto; }
.ownership-node { fill: #fff; stroke: #8fa198; stroke-width: 1; rx: 4; }
.ownership-node--root { fill: #e7f1ec; stroke: #4f8270; }
.ownership-node-label { fill: #1e2924; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 12px; font-weight: 700; }
.ownership-node-sub { fill: #68746e; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 10px; }
.ownership-edge { fill: none; stroke: #77867f; stroke-width: 1.4; marker-end: url(#arrow); }
.ownership-edge--unquantified { stroke-dasharray: 5 4; }
.ownership-edge-label { fill: #5d6963; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 9px; }
.entity-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.entity-list span { border: 1px solid var(--line); border-radius: 3px; padding: 5px 8px; background: #fff; font-size: 11px; color: #4d5953; }

.source-register { background: #f8faf8; }
.source-register table { min-width: 760px; }
.source-code-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.action-links { display: flex; gap: 8px; flex-wrap: wrap; }
.action-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 4px 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 650;
}
.action-link:hover { border-color: var(--green); color: var(--green); }

.source-overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(17, 24, 21, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}
.source-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(460px, 92vw);
  height: 100dvh;
  transform: translateX(102%);
  border-left: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
}
body.source-drawer-open .source-overlay { opacity: 1; pointer-events: auto; }
body.source-drawer-open .source-drawer { transform: translateX(0); }
body.source-drawer-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.source-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
}
.source-drawer__header strong { font-size: 13px; }
.icon-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 21px;
  line-height: 30px;
}
.icon-button:hover { border-color: var(--green); color: var(--green); }
.source-drawer__body { overflow-y: auto; padding: 22px 20px 36px; }
.source-detail__code { margin: 0 0 8px; color: var(--green); font-size: 12px; font-weight: 750; }
.source-detail h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; line-height: 1.25; }
.source-detail__meta { margin: 10px 0 20px; color: var(--muted); font-size: 12px; }
.source-detail__label { margin: 20px 0 5px; color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.source-detail p { margin: 0; }
.source-excerpt { border-left: 3px solid var(--green); padding-left: 14px; color: #38433e; }
.source-detail .action-links { margin-top: 22px; }
.source-detail-template { display: none; }

.index-main { width: min(var(--layout-width), calc(100% - 48px)); margin: 0 auto; padding: 38px 0 70px; }
.index-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.index-heading h1 { font-size: 44px; }
.index-result-count { margin: 0 0 3px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.index-toolbar { display: flex; justify-content: flex-end; gap: 12px; margin-bottom: 14px; }
.index-search { display: grid; grid-template-columns: auto minmax(220px, 320px); align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.index-search input, .index-mobile-sort select {
  width: 100%;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  padding: 6px 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.index-search input:focus, .index-mobile-sort select:focus { border-color: var(--green); outline: 3px solid rgba(18, 100, 81, .14); }
.index-mobile-sort { display: none; }
.deep-dive-table-wrap { border-top: 1px solid var(--line-strong); overflow: visible; }
.deep-dive-table { width: 100%; min-width: 0; border-collapse: collapse; table-layout: fixed; font-size: 13px; }
.deep-dive-table th { border-bottom: 1px solid var(--line-strong); padding: 0; color: var(--muted); font-size: 10px; font-weight: 750; text-align: left; text-transform: uppercase; }
.deep-dive-table thead th { position: sticky; z-index: 10; top: 58px; background: #f0f3f1; }
.deep-dive-table th:nth-child(1) { width: 36%; }
.deep-dive-table th:nth-child(2) { width: 24%; }
.deep-dive-table th:nth-child(3) { width: 24%; }
.deep-dive-table th:nth-child(4), .deep-dive-table th:nth-child(5) { width: 8%; }
.deep-dive-table th button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 0;
  padding: 6px 10px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
  text-transform: inherit;
}
.deep-dive-table th:first-child button { padding-left: 6px; }
.deep-dive-table th.deep-dive-number button { justify-content: flex-end; width: 100%; }
.deep-dive-table th button:hover { color: var(--green); }
.sort-indicator { width: 0; height: 0; border-right: 3px solid transparent; border-left: 3px solid transparent; }
.deep-dive-table th[aria-sort="ascending"] .sort-indicator { border-bottom: 5px solid currentColor; }
.deep-dive-table th[aria-sort="descending"] .sort-indicator { border-top: 5px solid currentColor; }
.deep-dive-table td { height: 45px; border-bottom: 1px solid var(--line); padding: 8px 10px; vertical-align: middle; }
.deep-dive-table td:first-child { padding-left: 6px; }
.deep-dive-table tbody tr:hover { background: #f7f9f8; }
.deep-dive-table tbody tr[hidden] { display: none; }
.deep-dive-company a { color: var(--ink); font-weight: 650; text-decoration: none; }
.deep-dive-company a:hover { color: var(--green); text-decoration: underline; }
.deep-dive-status-cell { color: var(--muted); }
.deep-dive-number { text-align: right; font-variant-numeric: tabular-nums; }
.deep-dive-updated-date { color: var(--muted); font-variant-numeric: tabular-nums; }
.index-empty-state { margin: 0; border-bottom: 1px solid var(--line); padding: 28px 6px; color: var(--muted); font-size: 13px; }

@media (max-width: 1279px) {
  html { scroll-padding-top: calc(var(--site-header-height) + 50px); }
  .site-header__inner, .page-shell { width: min(calc(100% - 32px), 960px); }
  .site-header--report .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 20px;
    justify-content: stretch;
  }
  .report-toolbar { grid-column: 2; }
  h1 { font-size: 46px; }
  .page-shell { display: block; }
  .section-nav {
    position: sticky;
    z-index: 15;
    top: var(--site-header-height);
    max-height: none;
    margin-inline: -16px;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
  }
  .section-nav__label { display: none; }
  .section-nav a { flex: 0 0 auto; padding: 11px 10px 12px; }
  .section-nav a::before { top: auto; right: 10px; bottom: 4px; left: 10px; width: auto; height: 2px; transform: none; border-radius: 0; }
  .deep-dive-main { min-width: 0; }
  .report-section { padding: 38px 0 44px; }
  .report-section--lead { padding-top: 28px; }
  .content-row { display: block; }
  .content-row__body, .section-heading, .source-margin-notes { width: min(100%, var(--reading-width)); margin-inline: auto; }
  .source-margin-notes {
    margin-top: 14px;
    padding-top: 0;
  }
  .source-margin-notes__toggle {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    padding: 4px 0;
    background: transparent;
    color: var(--green);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 750;
  }
  .source-margin-notes__toggle::after { content: "+"; margin-left: 6px; font-size: 15px; font-weight: 500; }
  .source-margin-notes[data-expanded="true"] .source-margin-notes__toggle::after { content: "-"; }
  .source-margin-notes__list {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
  .source-margin-notes[data-expanded="true"] .source-margin-notes__list { display: grid; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 124px; }
  .site-header__meta { display: none; }
  .site-header__inner, .page-shell, .index-main { width: calc(100% - 24px); }
  .site-header--report { height: 74px; }
  .site-header--report .site-header__inner { column-gap: 14px; }
  .site-header--report .brand span { display: none; }
  .report-toolbar {
    display: grid;
    align-content: center;
    justify-content: stretch;
    gap: 2px;
  }
  .report-toolbar__identity { display: block; }
  .report-toolbar__label { display: none; }
  .report-toolbar__title {
    overflow: visible;
    font-size: 18px;
    line-height: 1.1;
    text-overflow: clip;
    white-space: normal;
  }
  .report-toolbar__meta { gap: 8px; font-size: 10px; }
  .site-header--report .deep-dive-status { font-size: 10px; }
  .section-nav { top: 74px; }
  h1 { font-size: 38px; }
  .source-margin-notes__list { grid-template-columns: minmax(0, 1fr); }
  .report-section { padding: 32px 0 38px; }
  .report-section--lead { padding-top: 24px; }
  .index-main { width: calc(100% - 24px); padding-top: 30px; }
  .index-heading { align-items: start; margin-bottom: 22px; }
  .index-heading h1 { font-size: 38px; }
  .index-toolbar { justify-content: stretch; }
  .index-search { grid-template-columns: auto minmax(0, 1fr); width: 100%; }
  .deep-dive-table th:nth-child(1) { width: 40%; }
  .deep-dive-table th:nth-child(2) { width: 32%; }
  .deep-dive-table th:nth-child(3) { width: 28%; }
  .deep-dive-table th:nth-child(4), .deep-dive-table th:nth-child(5),
  .deep-dive-table td:nth-child(4), .deep-dive-table td:nth-child(5) { display: none; }
}

@media (max-width: 520px) {
  body { font-size: 14px; }
  .site-header__inner, .page-shell, .index-main { width: calc(100% - 20px); }
  h1 { font-size: 32px; }
  .report-section { padding: 28px 0 34px; }
  .report-section--lead { padding-top: 22px; }
  .section-nav { margin-inline: -10px; padding-inline: 10px; }
  h2 { font-size: 24px; }
  .claim { font-size: 16px; }
  .source-drawer { width: 100vw; }
  .index-heading { align-items: end; }
  .index-heading h1 { font-size: 32px; }
  .index-search { display: block; }
  .index-search span { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .index-toolbar { display: grid; grid-template-columns: minmax(0, 1fr); }
  .index-mobile-sort { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
  .deep-dive-table-wrap { overflow: visible; }
  .deep-dive-table, .deep-dive-table tbody {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .deep-dive-table { table-layout: auto; }
  .deep-dive-table thead { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); }
  .deep-dive-table tr {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 16px;
    border-bottom: 1px solid var(--line);
    padding: 10px 4px;
  }
  .deep-dive-table td { display: block; height: auto; border: 0; padding: 0; }
  .deep-dive-table td:first-child { padding-left: 0; }
  .deep-dive-company { grid-column: 1; grid-row: 1; }
  .deep-dive-status-cell { grid-column: 1; grid-row: 2; }
  .deep-dive-updated-date { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-size: 11px; }
  .deep-dive-updated-date::before { content: "Updated "; }
  .deep-dive-table tbody tr:hover { background: transparent; }
}

@media print {
  .site-header:not(.site-header--report), .section-nav, .source-margin-notes, .source-drawer, .source-overlay { display: none !important; }
  body { background: #fff; }
  .site-header--report { position: static; display: block !important; height: auto; border: 0; }
  .site-header--report .site-header__inner, .page-shell { width: 100%; }
  .site-header--report .site-header__inner, .page-shell, .content-row { display: block; }
  .site-header--report .brand, .report-toolbar__label, .report-toolbar__meta { display: none; }
  .report-toolbar { display: block; margin-bottom: 20px; }
  .report-toolbar__title { overflow: visible; font-size: 32px; text-overflow: clip; white-space: normal; }
  .deep-dive-main { border: 0; }
  .report-section { break-inside: avoid; padding-inline: 0; }
  .source-ref { border: 0; padding: 0; min-width: auto; }
}
