:root {
  color-scheme: light;
  --bg: #fff;
  --surface: #f7f8f9;
  --raised: #fff;
  --text: #202629;
  --muted: #687277;
  --line: #e3e7e9;
  --accent: #16725c;
  --accent-bg: #eaf5ef;
  --blue: #287997;
  --code: #f4f6f7;
  --shadow: 0 20px 80px #10202526;
  --header: rgba(255, 255, 255, 0.96);
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #121416;
  --surface: #191c1f;
  --raised: #1c2023;
  --text: #edf0f1;
  --muted: #a2abb1;
  --line: #30363a;
  --accent: #76c9aa;
  --accent-bg: #20382d;
  --blue: #82bfd5;
  --code: #1a1e21;
  --shadow: 0 20px 80px #0008;
  --header: rgba(18, 20, 22, 0.97);
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-padding-top: 104px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    15px/1.65 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
svg {
  flex-shrink: 0;
  vertical-align: middle;
}
button svg,
a svg {
  pointer-events: none;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
p {
  margin: 16px 0;
}
h1 {
  font-size: 42px;
  line-height: 1.17;
  font-weight: 650;
}
h2 {
  font-size: 23px;
  line-height: 1.4;
  font-weight: 620;
}
h4 {
  font-size: 14px;
  margin: 22px 0 10px;
}
small {
  font-size: 12px;
  color: var(--muted);
}
code,
kbd,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
code {
  font-size: 0.88em;
  overflow-wrap: anywhere;
}
button {
  border: 0;
  background: none;
}
input,
select {
  color: var(--text);
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  background: var(--raised);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 76px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--header);
  z-index: 20;
}
.header-inner {
  max-width: 1520px;
  height: 100%;
  padding: 0 36px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  white-space: nowrap;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  border-radius: 8px;
}
.brand strong {
  font-size: 18px;
  font-weight: 650;
}
.brand > span {
  margin-left: 5px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: var(--muted);
}
.icon-button:hover {
  background: var(--surface);
  color: var(--text);
}
.search-trigger {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  padding: 0 10px;
  font-size: 12px;
  min-width: 250px;
}
.search-trigger kbd {
  margin-left: auto;
  font-size: 10px;
  border: 1px solid var(--line);
  padding: 0 4px;
  border-radius: 3px;
}
.locale {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.header-actions [data-menu-toggle] {
  display: none;
}
.workspace {
  max-width: 1520px;
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr) 176px;
  gap: 48px;
  padding: 0 36px;
  margin: auto;
}
.sidebar {
  position: sticky;
  top: 76px;
  height: calc(100dvh - 76px);
  padding: 39px 0 26px;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  min-width: 0;
}
.sidebar-heading {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  margin-left: -12px;
}
.sidebar nav a:hover {
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
}
.sidebar nav a[aria-current] {
  color: var(--accent);
  background: var(--accent-bg);
  font-weight: 600;
}
.nav-number {
  margin-left: auto;
  font-family: monospace;
  font-size: 10px;
  opacity: 0.7;
}
.sidebar-downloads {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.sidebar-downloads > a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 12px;
}
.sidebar-downloads > a svg:last-child {
  margin-left: auto;
}
.sidebar-note {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding-top: 32px;
  color: var(--muted);
  font-size: 12px;
}
.sidebar-note > svg {
  color: var(--accent);
  margin-top: 3px;
}
.sidebar-note small {
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
.public-link {
  color: var(--muted);
  font-size: 11px;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 20px;
}
main {
  min-width: 0;
  padding-top: 35px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
}
.breadcrumb span {
  opacity: 0.4;
}
.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.subtitle {
  font-size: 19px;
  line-height: 1.5;
  margin-top: 16px;
  color: var(--text);
  max-width: 720px;
}
.intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 740px;
  margin: 16px 0 20px;
}
.page-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}
.page-meta > span,
.text-button {
  display: flex;
  align-items: center;
  gap: 7px;
}
.text-button {
  font-size: 11px;
  padding: 5px 0;
  color: var(--muted);
}
.text-button:hover {
  color: var(--text);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 50px;
}
.fact {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 16px;
  min-height: 149px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}
.fact > svg {
  color: var(--blue);
  margin-bottom: 14px;
}
.fact > span {
  font-size: 11px;
  color: var(--muted);
}
.fact strong {
  font-size: 14px;
  margin: 3px 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.fact small {
  font-size: 11px;
}
.doc-section {
  padding-top: 4px;
  margin: 0 0 52px;
  scroll-margin-top: 10px;
}
.doc-section > h2 {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 22px;
}
.doc-section > h2 > span {
  font-size: 11px;
  font-family: monospace;
  color: var(--muted);
  font-weight: 400;
}
.anchor {
  font-size: 16px;
  opacity: 0;
  color: var(--muted);
  margin-left: auto;
}
.doc-section > h2:hover .anchor,
.anchor:focus {
  opacity: 1;
}
.doc-section > p,
.prose-list {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.prose-list {
  padding-left: 19px;
  margin: 20px 0;
}
.prose-list li {
  padding-left: 5px;
  margin: 10px 0;
}
.prose-list li::marker {
  color: var(--accent);
}
.table-scroll {
  max-width: 100%;
  overflow: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 22px 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 12px;
  line-height: 1.7;
}
th {
  background: var(--surface);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
th,
td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}
tr:last-child td {
  border-bottom: 0;
}
td:first-child {
  font-weight: 550;
  min-width: 90px;
  color: var(--text);
}
td {
  color: var(--muted);
}
td small {
  display: block;
}
td code {
  font-size: 11px;
  color: var(--text);
}
.callout {
  display: flex;
  gap: 12px;
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  background: var(--surface);
  margin: 24px 0;
  font-size: 13px;
  line-height: 1.75;
}
.callout > svg {
  color: var(--accent);
  margin-top: 2px;
}
.callout p {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: 13px;
}
.callout.warning {
  border-color: #bf923d;
}
.callout.warning > svg {
  color: #bf923d;
}
.diagram {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 22px 0;
  background: var(--raised);
}
.diagram figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  gap: 10px;
  background: var(--surface);
}
.diagram figcaption > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.diagram figcaption > div svg {
  color: var(--blue);
}
.diagram-preview {
  display: block;
  width: 100%;
  padding: 20px;
  cursor: zoom-in;
  background: #fff;
}
.diagram-image {
  width: 100%;
  display: block;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}
html[data-theme="dark"] .diagram-preview {
  background: #17191b;
}
.diagram-caption {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  padding: 0 18px;
  margin: 12px 0 16px;
}
.diagram-downloads {
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
}
.diagram-downloads > span {
  color: var(--muted);
  margin-right: auto;
}
.diagram-downloads a {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.code-block {
  background: var(--code);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 20px 0;
  overflow: hidden;
}
.code-block figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 11px;
  color: var(--muted);
}
pre {
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
  padding: 18px;
  overflow: auto;
}
pre code {
  font-size: inherit;
  overflow-wrap: normal;
}
.toc {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-top: 36px;
  font-size: 11px;
}
.toc > span {
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}
.toc nav {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.toc nav a {
  padding: 7px 0 7px 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-left: -1px;
  border-left: 2px solid transparent;
}
.toc nav a.active {
  color: var(--accent);
  border-color: var(--accent);
  font-weight: 550;
}
.toc-foot {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 17px;
  color: var(--muted);
}
.toc-foot small {
  flex-basis: 100%;
  font-size: 10px;
}
.mobile-toc {
  display: none;
}
.evidence {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  font-size: 12px;
  color: var(--muted);
}
.evidence summary {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-weight: 550;
  list-style: none;
}
.evidence summary svg:last-child {
  margin-left: auto;
}
.evidence ul {
  padding-left: 16px;
  line-height: 2;
}
.evidence a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.evidence code {
  font-size: 10px;
}
.next-document {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 34px 0;
  padding: 10px 0;
  color: var(--text);
}
.next-document small {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
}
.next-document strong {
  font-size: 18px;
  font-weight: 550;
}
.next-document:hover {
  text-decoration: none;
  color: var(--accent);
}
footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 35px;
  font-size: 10px;
  color: var(--muted);
  display: flex;
  gap: 8px;
}
.api-tools {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--raised);
  padding: 8px 11px;
  min-width: 0;
}
.search-field svg {
  color: var(--muted);
}
.search-field input {
  border: 0;
  background: transparent;
  min-width: 0;
  width: 100%;
  outline: 0;
  font-size: 13px;
}
.api-tools .search-field {
  flex: 1;
  min-width: 200px;
}
.api-tools select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 9px;
  max-width: 180px;
  font-size: 11px;
}
.api-count {
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
}
.endpoint-list {
  border-top: 1px solid var(--line);
}
.endpoint {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.endpoint > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  padding: 14px 0;
  font-size: 11px;
  min-height: 52px;
}
.endpoint > summary::-webkit-details-marker,
summary::-webkit-details-marker {
  display: none;
}
.endpoint > summary > code {
  font-size: 11px;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.endpoint > summary > svg {
  margin-left: auto;
  color: var(--muted);
}
.endpoint[open] > summary > svg {
  transform: rotate(180deg);
}
.method {
  font-size: 9px;
  font-weight: 650;
  width: 48px;
  text-align: center;
  flex-shrink: 0;
  border-radius: 4px;
  padding: 2px 0;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}
.method.post {
  color: var(--accent);
  background: var(--accent-bg);
}
.method.patch,
.method.put {
  color: #a9762a;
  background: #bb902715;
}
.method.delete {
  color: #c75c63;
  background: #c75c6315;
}
.endpoint-access {
  font-size: 9px;
  color: var(--muted);
  margin-left: auto;
  max-width: 100px;
  text-align: right;
  line-height: 1.4;
}
.legacy {
  font-size: 9px;
  color: var(--muted);
}
.endpoint-body {
  border-top: 1px dashed var(--line);
  padding: 4px 0 20px;
}
.endpoint-body > p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.policy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  background: var(--surface);
  padding: 12px;
  margin: 16px 0;
}
.policy-grid > div {
  flex: 1;
  min-width: 120px;
}
dt {
  color: var(--muted);
  font-size: 10px;
}
dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}
.schema-table td:first-child {
  width: 28%;
}
.source-line {
  overflow-wrap: anywhere;
  font-family: monospace;
  font-size: 10px !important;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--text);
  background: var(--raised);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - 64px);
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #0e161b77;
  backdrop-filter: blur(4px);
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.dialog-header h2 {
  font-size: 15px;
}
.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 12px 18px;
  font-size: 12px;
  color: var(--muted);
}
#search-dialog {
  width: 640px;
  max-width: calc(100vw - 32px);
  margin: 12vh auto auto;
}
#search-dialog > .search-field {
  margin: 16px;
}
#search-results {
  max-height: 55vh;
  overflow: auto;
  padding: 0 8px 10px;
}
#search-results a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
}
#search-results a:hover {
  background: var(--surface);
  text-decoration: none;
}
#search-results a small {
  color: var(--accent);
  font-size: 11px;
}
#search-results > p {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--muted);
}
#diagram-dialog {
  width: 1200px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 32px);
}
.zoom-controls {
  display: flex;
  flex-shrink: 0;
  gap: 4px;
}
.diagram-stage {
  overflow: auto;
  height: calc(85dvh - 110px);
  padding: 24px;
  background: #fff;
}
.diagram-stage img {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 1px;
  height: auto;
  margin: 0 auto;
}
html[data-theme="dark"] .diagram-stage {
  background: #17191b;
}
.not-found {
  padding: 80px;
  max-width: 800px;
  margin: auto;
}
@media (min-width: 1700px) {
  .workspace {
    gap: 56px;
    grid-template-columns: 226px minmax(0, 1fr) 186px;
  }
}
@media (max-width: 1200px) {
  .workspace {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 36px;
  }
  .toc {
    display: none;
  }
  .mobile-toc {
    display: block;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 12px;
  }
  .mobile-toc > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .mobile-toc nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 16px 0 4px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 64px;
  }
  .header-inner {
    padding: 0 20px;
  }
  .brand strong {
    font-size: 16px;
  }
  .brand > span {
    font-size: 12px;
    padding-left: 10px;
    margin-left: 0;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .header-actions {
    gap: 5px;
  }
  .search-trigger {
    min-width: 34px;
    width: 34px;
    padding: 0;
    justify-content: center;
    background: none;
    border: 0;
  }
  .search-trigger span,
  .search-trigger kbd {
    display: none;
  }
  .locale {
    padding: 6px;
  }
  .locale svg {
    display: none;
  }
  .header-actions [data-menu-toggle] {
    display: inline-flex;
  }
  .workspace {
    display: block;
    padding: 0 24px;
  }
  .sidebar {
    display: none;
  }
  .sidebar.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    bottom: 0;
    z-index: 15;
    background: var(--bg);
    width: 280px;
    max-width: 90vw;
    padding: 28px;
    height: calc(100dvh - 64px);
    border-right: 1px solid var(--line);
    box-shadow: 20px 0 50px #0002;
  }
  .breadcrumb {
    margin-bottom: 28px;
    font-size: 11px;
  }
  main {
    padding-top: 24px;
  }
  h1 {
    font-size: 34px;
  }
  .subtitle {
    font-size: 18px;
  }
  .intro {
    font-size: 14px;
  }
  .facts {
    gap: 8px;
    margin: 26px 0 30px;
  }
  .fact {
    padding: 13px 10px;
    min-height: 145px;
  }
  .fact strong {
    font-size: 12px;
  }
  .fact > span,
  .fact small {
    font-size: 10px;
  }
  .fact > svg {
    width: 18px;
  }
  .doc-section {
    margin-bottom: 38px;
  }
  .doc-section > h2 {
    font-size: 21px;
    gap: 9px;
  }
  .diagram-preview {
    padding: 12px;
  }
  .diagram-caption {
    padding: 0 13px;
    font-size: 11px;
  }
  .diagram-downloads {
    gap: 12px;
    padding: 10px 12px;
  }
  .diagram figcaption {
    padding: 8px 12px;
  }
  .diagram figcaption > div {
    font-size: 11px;
  }
  th,
  td {
    padding: 10px;
    font-size: 11px;
  }
  .callout {
    padding: 14px 12px;
    gap: 9px;
  }
  .callout p {
    font-size: 12px;
  }
  .endpoint-access {
    display: none;
  }
  .page-meta {
    font-size: 10px;
  }
  .text-button {
    font-size: 10px;
  }
  .api-tools .search-field {
    flex-basis: 100%;
  }
  .api-tools select {
    flex: 1;
    max-width: none;
    min-width: 0;
  }
  .dialog-header {
    padding: 10px 12px;
  }
  .dialog-header h2 {
    font-size: 13px;
  }
  .diagram-stage {
    padding: 12px;
  }
  .diagram-downloads > span {
    font-size: 9px;
  }
  .source-line {
    font-size: 9px !important;
  }
}
@media (max-width: 400px) {
  .workspace {
    padding: 0 18px;
  }
  .brand {
    gap: 7px;
  }
  .brand > span {
    display: none;
  }
  .fact strong {
    font-size: 11px;
  }
  .facts {
    gap: 6px;
  }
  .fact {
    padding: 12px 9px;
  }
  .page-meta {
    flex-wrap: wrap;
    gap: 2px;
  }
  .diagram-downloads {
    gap: 9px;
  }
  .diagram-downloads > span {
    display: none;
  }
  .doc-section > h2 {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media print {
  html {
    color-scheme: light !important;
    --bg: #fff !important;
    --text: #222 !important;
    --muted: #555 !important;
    --line: #ddd !important;
    --surface: #f7f7f7 !important;
    --raised: #fff !important;
    --accent: #165741 !important;
    --blue: #276480 !important;
    --code: #f8f8f8 !important;
  }
  body {
    font-size: 11px;
  }
  .site-header,
  .sidebar,
  .toc,
  .mobile-toc,
  .breadcrumb,
  .icon-button,
  .text-button,
  .api-tools,
  .next-document,
  .diagram-downloads,
  .anchor,
  dialog {
    display: none !important;
  }
  .workspace {
    display: block;
    max-width: none;
    padding: 0;
  }
  main {
    padding: 0;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
  .facts {
    margin: 20px 0;
  }
  .doc-section {
    break-inside: auto;
    margin-bottom: 25px;
  }
  .diagram,
  .callout,
  .code-block,
  tr {
    break-inside: avoid;
  }
  .diagram-image {
    max-height: 450px;
  }
  .diagram-preview {
    background: #fff !important;
  }
  .page-meta {
    font-size: 10px;
  }
  a {
    color: inherit;
  }
  .endpoint > summary {
    break-inside: avoid;
  }
  .table-scroll,
  pre {
    overflow: visible;
  }
  pre {
    white-space: pre-wrap;
  }
  footer {
    font-size: 9px;
  }
  .diagram figcaption {
    font-size: 10px;
  }
}
