:root {
  --paper: #f6f5f0;
  --white: #fffefa;
  --ink: #21362e;
  --muted: #66756d;
  --line: #dce1d8;
  --accent: #b2d4a4;
  --dark: #173c32;
  --red: #9c3326;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  line-height: 1.5;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}
button,
.button {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 550;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.18s,
    transform 0.18s;
  min-height: 44px;
}
button:hover,
.button:hover {
  background: #e9eee5;
}
button:active,
.button:active {
  transform: translateY(1px);
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
.primary {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.primary:hover {
  background: #285045;
}
.quiet {
  background: transparent;
  border-color: transparent;
}
.danger {
  color: var(--red);
}
:focus-visible {
  outline: 3px solid #83a578;
  outline-offset: 3px;
}
.skip {
  position: absolute;
  top: -80px;
  left: 20px;
  background: var(--white);
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 650;
  font-size: 23px;
  letter-spacing: -1px;
}
.mark {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  transform: rotate(-35deg);
}
.public-nav {
  max-width: 1240px;
  margin: auto;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links > a:not(.button) {
  text-decoration: none;
  font-size: 14px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.hero {
  max-width: 1240px;
  margin: auto;
  padding: 95px 40px 90px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 400;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.99;
  letter-spacing: -2px;
  margin-bottom: 26px;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
}
.hero .button {
  margin-top: 16px;
}
.fine {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.research-figure {
  position: relative;
  background: #e9eee3;
  border: 1px solid #d4ddce;
  padding: 36px 30px 30px;
  min-height: 350px;
  border-radius: 2px;
  transform: rotate(1deg);
}
.research-figure::before {
  content: "";
  position: absolute;
  inset: 8px -9px -9px 8px;
  border: 1px solid #d4ddce;
  z-index: -1;
}
.figure-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccd8c6;
  padding-bottom: 18px;
  font-size: 12px;
}
.figure-heading .dot {
  width: 7px;
  height: 7px;
  background: #648954;
  border-radius: 50%;
}
.question {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 36px;
  line-height: 1.1;
  margin: 35px 0;
}
.research-steps {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  flex-wrap: wrap;
}
.research-steps span {
  padding: 7px 9px;
  border: 1px solid #c9d7c2;
  background: #f3f6ee;
  border-radius: 5px;
}
.figure-note {
  margin-top: 28px;
  font-size: 12px;
  color: #5b7054;
}
.principles {
  max-width: 1160px;
  margin: 0 auto 70px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 35px 0;
}
.principles h2 {
  font-size: 17px;
  font-weight: 550;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
}
.index-num {
  font-size: 12px;
  color: #869580;
  display: block;
  margin-bottom: 18px;
}
.public-footer {
  border-top: 1px solid var(--line);
  padding: 24px 40px;
  max-width: 1240px;
  margin: auto;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.shell {
  display: grid;
  grid-template-columns: 242px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: #edf0e8;
  border-right: 1px solid var(--line);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 0;
  height: 100vh;
}
.sidebar .brand {
  padding: 0 10px;
}
.workspace-picker {
  display: grid;
  gap: 9px;
}
.workspace-picker label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding-left: 10px;
}
.workspace-picker select {
  background: var(--white);
  width: 100%;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar nav button {
  justify-content: flex-start;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 14px;
  padding: 11px 13px;
}
.sidebar nav button[aria-current="page"] {
  background: #dce6d5;
  color: #173c32;
}
.nav-symbol {
  width: 22px;
  text-align: center;
  color: #75886c;
}
.sidebar-bottom {
  margin-top: auto;
  display: grid;
  gap: 10px;
  font-size: 12px;
}
.sidebar-bottom a {
  padding: 7px 12px;
  color: var(--muted);
}
.account-label {
  overflow-wrap: anywhere;
  padding: 0 12px;
  color: var(--muted);
}
.workspace-main {
  min-width: 0;
}
.topbar {
  height: 82px;
  padding: 0 44px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
}
.top-actions {
  display: flex;
  gap: 10px;
}
.workspace-content {
  max-width: 1260px;
  margin: auto;
  padding: 45px 44px;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}
.page-heading h1 {
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-heading p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  max-width: 640px;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 22px;
}
.panel h2 {
  font-size: 17px;
  font-weight: 550;
  margin-bottom: 8px;
}
.panel p {
  font-size: 14px;
  color: var(--muted);
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.panel-header h2 {
  margin: 0;
}
.empty {
  padding: 42px 25px;
  text-align: center;
}
.empty .open-ring {
  border: 1px solid #bbcbb2;
  border-right-color: transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  transform: rotate(-30deg);
}
.empty h2 {
  font-size: 20px;
  font-weight: 500;
}
.empty p {
  max-width: 450px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: 14px;
}
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 25px;
}
.stat {
  padding: 23px;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border: 0;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
}
.stat-value {
  font-size: 30px;
  letter-spacing: -1px;
  margin: 8px 0 5px;
}
.stat-note {
  font-size: 11px;
  color: var(--muted);
}
.notice {
  padding: 15px 18px;
  background: #eaf0e3;
  border: 1px solid #d6e1ce;
  border-radius: 8px;
  font-size: 13px;
  color: #496441;
  margin-bottom: 22px;
}
.error {
  background: #fcf0e9;
  border-color: #e9cabc;
  color: var(--red);
  overflow-wrap: anywhere;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.badge.green {
  background: #edf3e8;
  color: #46623c;
  border-color: #d5e4cb;
}
.rows {
  display: grid;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.row:last-child {
  border: 0;
}
.row-name {
  font-size: 14px;
  font-weight: 550;
  overflow-wrap: anywhere;
}
.row-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.row-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}
.row-actions button {
  font-size: 12px;
  min-height: 38px;
  padding: 7px 10px;
}
.project-button {
  text-align: left;
  justify-content: space-between;
  width: 100%;
  padding: 19px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 10px;
  gap: 15px;
}
.project-button .row-meta {
  font-weight: 400;
}
.form {
  display: grid;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label,
fieldset legend {
  font-size: 13px;
  font-weight: 550;
}
input,
textarea,
select {
  padding: 11px 12px;
  background: var(--white);
  border: 1px solid #cbd5c7;
  border-radius: 7px;
  color: var(--ink);
  max-width: 100%;
  width: 100%;
  min-height: 44px;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
input[type="checkbox"] {
  width: 17px;
  min-height: 17px;
  accent-color: var(--dark);
}
.field small {
  font-size: 12px;
  color: var(--muted);
}
fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 5px 0;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 5px;
}
.auth-layout {
  max-width: 1050px;
  margin: 70px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 0 35px;
}
.auth-intro h1 {
  font-size: 64px;
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 12px;
}
.auth-card h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
}
.auth-card p {
  font-size: 14px;
  color: var(--muted);
}
.auth-card .primary {
  width: 100%;
}
.status-screen {
  max-width: 610px;
  margin: 90px auto;
  padding: 40px;
}
.status-screen h1 {
  font-size: 56px;
}
.status-screen .form {
  margin-top: 25px;
}
.loading {
  padding: 50px;
  color: var(--muted);
  font-size: 14px;
}
.loading::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--muted);
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 12px;
}
.comment {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.comment p {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 14px;
  margin: 8px 0 0;
}
.comment-author {
  font-size: 12px;
  color: var(--muted);
}
dialog {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  width: min(530px, calc(100vw - 30px));
  max-height: 90vh;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 100px #18372b25;
}
dialog[open] {
  animation: enter 0.25s var(--ease);
}
dialog::backdrop {
  background: #142c2266;
  backdrop-filter: blur(3px);
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px;
  border-bottom: 1px solid var(--line);
}
.dialog-head h2 {
  font-size: 19px;
  font-weight: 550;
  margin: 0;
}
.dialog-head button {
  min-width: 40px;
  padding: 5px;
}
.dialog-body {
  padding: 25px;
}
.dialog-body > p {
  font-size: 14px;
  color: var(--muted);
}
.secret {
  font-family: monospace;
  word-break: break-all;
  background: #edf1e8;
  padding: 16px;
  border-radius: 7px;
  font-size: 13px;
  user-select: all;
}
.toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--dark);
  color: white;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 6px 30px #173c3230;
  max-width: min(430px, calc(100vw - 30px));
  font-size: 13px;
  z-index: 100;
  animation: enter 0.25s var(--ease);
}
.view {
  animation: enter 0.23s var(--ease);
}
.docs-layout {
  max-width: 1100px;
  margin: 55px auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 70px;
  padding: 0 35px;
}
.docs-nav {
  position: sticky;
  top: 30px;
  align-self: start;
  display: grid;
  gap: 12px;
  font-size: 13px;
}
.docs-nav a {
  text-decoration: none;
  color: var(--muted);
}
.docs-content {
  min-width: 0;
}
.docs-content h1 {
  font-size: 65px;
}
.docs-content h2 {
  font-size: 24px;
  font-weight: 550;
  margin-top: 45px;
  letter-spacing: -0.5px;
}
.docs-content p,
.docs-content li {
  font-size: 15px;
  color: var(--muted);
}
pre {
  background: #1d362b;
  color: #e5edde;
  padding: 23px;
  border-radius: 8px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.8;
}
code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.9em;
}
.table-wrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
th,
td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}
th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 950px) {
  .hero {
    gap: 35px;
    padding-top: 60px;
  }
  .principles {
    margin: 0 40px 55px;
    gap: 25px;
  }
  .shell {
    grid-template-columns: 205px 1fr;
  }
  .workspace-content {
    padding: 30px 25px;
  }
  .topbar {
    padding: 0 25px;
  }
  .grid-two {
    grid-template-columns: 1fr;
  }
  .auth-layout {
    gap: 40px;
  }
}
@media (max-width: 680px) {
  .public-nav {
    padding: 20px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links .hide-mobile {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 55px 25px;
    gap: 45px;
  }
  h1 {
    font-size: 65px;
  }
  .research-figure {
    transform: none;
    min-height: 300px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0 25px 40px;
  }
  .principles .index-num {
    margin-bottom: 8px;
  }
  .public-footer {
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  }
  .shell {
    display: block;
  }
  .sidebar {
    position: relative;
    height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 17px;
  }
  .sidebar .brand {
    font-size: 21px;
  }
  .workspace-picker {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .workspace-picker label {
    display: none;
  }
  .sidebar nav {
    flex-direction: row;
    overflow: auto;
    gap: 4px;
  }
  .sidebar nav button {
    white-space: nowrap;
    padding: 9px 11px;
    font-size: 12px;
  }
  .nav-symbol {
    display: none;
  }
  .sidebar-bottom {
    display: none;
  }
  .topbar {
    height: 62px;
    padding: 0 20px;
  }
  .top-actions button {
    padding: 8px 10px;
    font-size: 12px;
  }
  .workspace-content {
    padding: 28px 20px;
  }
  .page-heading {
    gap: 12px;
    margin-bottom: 25px;
  }
  .page-heading h1 {
    font-size: 27px;
  }
  .page-heading button {
    font-size: 12px;
    padding: 8px 10px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 17px 20px;
  }
  .stat-value {
    margin: 3px 0;
    font-size: 27px;
  }
  .panel {
    padding: 20px;
  }
  .row {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  .row-actions {
    flex-wrap: wrap;
  }
  .auth-layout {
    grid-template-columns: 1fr;
    margin: 40px auto;
    gap: 20px;
    padding: 0 20px;
  }
  .auth-intro h1 {
    font-size: 48px;
  }
  .auth-intro .lead {
    font-size: 15px;
  }
  .auth-card {
    padding: 25px;
  }
  .status-screen {
    margin: 45px auto;
    padding: 25px;
  }
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    margin-top: 30px;
  }
  .docs-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .docs-content h1 {
    font-size: 52px;
  }
  .top-actions .desktop-only {
    display: none;
  }
}
#workspace-executor-panel code,
#workspace-campaign-panel code {
  overflow-wrap: anywhere;
  white-space: normal;
}
#workspace-executor-panel [role="status"]:not(:empty) {
  padding-block: 0.75rem;
  animation: executor-status-in 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes executor-status-in {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.interruption-title {
  margin-top: 35px;
}
.spaced-action {
  margin-top: 15px;
}
.block {
  display: block;
}
.discussion-form {
  margin-top: 22px;
}
.account-introduction {
  margin: 12px 0 0;
  white-space: pre-wrap;
}

.field-caption {
  font-size: 13px;
  font-weight: 550;
}

.pagination-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
}
.pagination-summary {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.budget-values,
.budget-ledger-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 16px;
  margin: 20px 0;
}
.budget-values dt,
.budget-ledger-values dt {
  color: var(--muted);
  font-size: 12px;
}
.budget-values dd,
.budget-ledger-values dd {
  margin: 4px 0 0;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.budget-values dd {
  font-size: 21px;
}
.budget-ledger-values {
  margin: 12px 0 0;
  gap: 10px;
  font-size: 13px;
}
.budget-ledger-entry > div {
  width: 100%;
  min-width: 0;
}
.budget-policy-editor summary {
  cursor: pointer;
  padding: 12px 0;
}
.budget-policy-editor .form {
  margin-top: 12px;
}
.pagination-controls .notice {
  flex-basis: 100%;
  margin-bottom: 0;
}
.workspace-picker .pagination-controls {
  grid-column: 1 / -1;
  margin-top: 0;
  gap: 5px;
}
.workspace-picker .pagination-controls button {
  font-size: 12px;
  padding: 8px 10px;
  min-height: 40px;
}
.workspace-picker .pagination-summary {
  font-size: 11px;
  padding-left: 10px;
}
@media (max-width: 680px) {
  .workspace-picker #new-workspace {
    grid-column: 2;
    grid-row: 1;
  }
}
/* Reporting filters stay compact while evidence unfolds below the current selection. */
[data-reporting] .form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
[data-report-summary], [data-report-evidence-body] { overflow-wrap: anywhere; }
[data-report-evidence-body]:not(:empty) { margin-top: 1.5rem; animation: enter 180ms cubic-bezier(0.16,1,0.3,1); }
[data-reporting] .row-actions { flex-wrap: wrap; }
@media (max-width: 520px) { [data-reporting] .form-row { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { [data-report-evidence-body] { animation: none; } }

/* Keep the public API guide readable at narrow widths without changing app UI. */
.api-docs .public-nav { flex-wrap: wrap; }
.api-docs .nav-links { flex-wrap: wrap; }
.api-docs .docs-content p code,
.api-docs .docs-content li code { overflow-wrap: anywhere; }
/* Result evidence remains readable at narrow widths without changing adjacent panels. */
[data-campaign-results] code,
[data-campaign-results] .fine,
[data-campaign-results] a { overflow-wrap: anywhere; white-space: normal; }
[data-campaign-results] .row > div { min-width: 0; }

/* Public API guide readability; these rules do not change the application UI. */
.api-docs { --muted: #50634f; font-size: 1.125rem; overflow-wrap: break-word; }
.api-docs .docs-content p, .api-docs .docs-content li,
.api-docs .lead, .api-docs .notice { font-size: 1.125rem; line-height: 1.7; }
.api-docs .eyebrow, .api-docs .nav-links, .api-docs .docs-nav,
.api-docs .public-footer, .api-docs th, .api-docs td,
.api-docs pre, .api-docs code { font-size: 1rem; line-height: 1.6; }
.api-docs pre { white-space: pre-wrap; overflow-wrap: anywhere; max-width: 100%; }
.api-docs .docs-content, .api-docs .docs-layout { min-width: 0; }
.api-docs td code { overflow-wrap: anywhere; }
.api-docs .public-nav { height: auto; min-height: 4.75rem; gap: 1rem; }
.api-docs .nav-links a, .api-docs .docs-nav a { display: inline-flex; align-items: center; min-height: 2.75rem; }
.api-docs :focus-visible { outline: 3px solid #326d37; outline-offset: 4px; }
@media (max-width: 760px) {
  .api-docs .docs-nav { position: static; }
  .api-docs .docs-content h1 { font-size: 2.5rem; }
  .api-docs .public-footer { flex-wrap: wrap; gap: 1rem; }
}
.api-docs .nav-links a { font-size: 1rem; }
