@import url("fonts.css");

:root {
  color-scheme: dark;
  --docs-bg: #0b0b0a;
  --docs-surface: #141412;
  --docs-surface-raised: #1c1b18;
  --docs-surface-blue: #111923;
  --docs-border: #34312b;
  --docs-border-strong: #555047;
  --docs-text: #f6f3ed;
  --docs-text-soft: #d8d2c7;
  --docs-text-muted: #aaa295;
  --docs-accent: #fb923c;
  --docs-accent-strong: #f97316;
  --docs-accent-soft: rgba(251, 146, 60, 0.13);
  --docs-blue: #67b5ff;
  --docs-green: #5bd68a;
  --docs-danger: #fb7185;
  --docs-font-sans: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --docs-font-mono: "JetBrains Mono", "JetBrains Mono Fallback", "SFMono-Regular", Consolas, monospace;
  --docs-topbar-height: 60px;
  --docs-sidebar-width: 274px;
  --docs-toc-width: 218px;
  --docs-content-width: 820px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--docs-bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--docs-topbar-height) + 24px);
}

body.docs-body {
  margin: 0;
  background: var(--docs-bg);
  color: var(--docs-text);
  font-family: var(--docs-font-sans);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.docs-body *,
.docs-body h1,
.docs-body h2,
.docs-body h3,
.docs-body h4,
.docs-body h5,
.docs-body h6 {
  letter-spacing: 0;
}

.docs-body a {
  color: var(--docs-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.docs-body a:hover {
  color: #9dd0ff;
}

.docs-body :focus-visible {
  outline: 2px solid var(--docs-accent);
  outline-offset: 3px;
}

.docs-body ::selection {
  background: rgba(103, 181, 255, 0.28);
  color: var(--docs-text);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 12px;
  padding: 8px 12px;
  background: var(--docs-accent);
  color: #180b02 !important;
  border-radius: 5px;
  font-weight: 700;
  transform: translateY(calc(-100% + 1px));
}

.skip-link:focus {
  transform: translateY(0);
}

.docs-topbar {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: var(--docs-topbar-height);
  display: grid;
  grid-template-columns: max-content max-content minmax(220px, 520px) max-content;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border-bottom: 1px solid var(--docs-border);
  background: rgba(11, 11, 10, 0.96);
  backdrop-filter: blur(12px);
}

.docs-brand,
.docs-product-name {
  color: var(--docs-text) !important;
  text-decoration: none;
}

.docs-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 700;
}

.docs-brand img {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.docs-product-name {
  padding-left: 18px;
  border-left: 1px solid var(--docs-border);
  color: var(--docs-text-soft) !important;
  font-size: 14px;
  font-weight: 600;
}

.docs-search {
  position: relative;
  width: 100%;
  justify-self: center;
}

.docs-search input {
  width: 100%;
  height: 36px;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
  background: var(--docs-surface);
  color: var(--docs-text);
  font: inherit;
  font-size: 13px;
  padding: 0 42px 0 12px;
}

.docs-search input::placeholder {
  color: var(--docs-text-muted);
}

.docs-search input:focus {
  border-color: var(--docs-accent-strong);
  background: var(--docs-surface-raised);
}

.docs-search-shortcut {
  position: absolute;
  top: 50%;
  right: 9px;
  min-width: 22px;
  padding: 2px 5px;
  transform: translateY(-50%);
  border: 1px solid var(--docs-border);
  border-radius: 4px;
  background: var(--docs-bg);
  color: var(--docs-text-muted);
  font: 600 10px/1.3 var(--docs-font-mono);
  text-align: center;
  pointer-events: none;
}

.docs-search:focus-within .docs-search-shortcut {
  border-color: rgba(251, 146, 60, 0.45);
  color: var(--docs-accent);
}

.docs-search-results {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  max-height: min(520px, calc(100vh - 90px));
  overflow: auto;
  padding: 6px;
  border: 1px solid var(--docs-border-strong);
  border-radius: 7px;
  background: var(--docs-surface-raised);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.48);
}

.docs-search-results[hidden] {
  display: none;
}

.docs-search-result,
.docs-search-empty {
  display: block;
  padding: 9px 10px;
  border-radius: 5px;
}

.docs-search-result {
  color: var(--docs-text) !important;
  text-decoration: none;
}

.docs-search-result:hover,
.docs-search-result[data-active="true"] {
  background: var(--docs-accent-soft);
}

.docs-search-result strong,
.docs-search-result span {
  display: block;
}

.docs-search-result strong {
  font-size: 13px;
}

.docs-search-result span,
.docs-search-empty {
  color: var(--docs-text-muted);
  font-size: 12px;
}

.docs-menu-button {
  display: none;
  width: 42px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
  background: var(--docs-surface);
  color: var(--docs-text-soft);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.docs-shell {
  display: grid;
  grid-template-columns: var(--docs-sidebar-width) minmax(0, 1fr) var(--docs-toc-width);
  min-height: 100vh;
  padding-top: var(--docs-topbar-height);
}

.docs-sidebar {
  position: fixed;
  z-index: 80;
  top: var(--docs-topbar-height);
  bottom: 0;
  left: 0;
  width: var(--docs-sidebar-width);
  overflow-y: auto;
  border-right: 1px solid var(--docs-border);
  background: var(--docs-bg);
}

.docs-sidebar-inner {
  padding: 22px 20px 32px;
}

.docs-sidebar-home,
.docs-sidebar-section a,
.docs-sidebar-product a,
.docs-sidebar-repo {
  display: block;
  color: var(--docs-text-muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.docs-sidebar-home {
  margin-bottom: 22px;
  color: var(--docs-text) !important;
  font-size: 14px;
  font-weight: 700;
}

.docs-sidebar-section,
.docs-sidebar-product {
  margin: 0 0 22px;
}

.docs-sidebar-section h2,
.docs-sidebar-product h2 {
  margin: 0 0 7px;
  color: var(--docs-text-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.docs-sidebar-section ul,
.docs-sidebar-product ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-sidebar-section li,
.docs-sidebar-product li {
  margin: 0;
}

.docs-sidebar-section a,
.docs-sidebar-product a {
  margin: 1px -8px;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
}

.docs-sidebar-section a:hover,
.docs-sidebar-product a:hover {
  color: var(--docs-text);
  background: var(--docs-surface);
}

.docs-sidebar-section a[aria-current="page"] {
  color: var(--docs-accent);
  background: var(--docs-accent-soft);
  font-weight: 650;
}

.docs-sidebar-library {
  margin: 4px 0 22px;
  border-top: 1px solid var(--docs-border);
  border-bottom: 1px solid var(--docs-border);
}

.docs-sidebar-library summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  color: var(--docs-text-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.docs-sidebar-library summary span {
  min-width: 24px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--docs-surface);
  color: var(--docs-text-muted);
  text-align: center;
  font-size: 10px;
}

.docs-sidebar-library > div {
  padding: 2px 0 12px;
}

.docs-sidebar-library section + section {
  margin-top: 13px;
}

.docs-sidebar-library h3 {
  margin: 0 0 4px;
  color: var(--docs-text-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.docs-sidebar-library ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-sidebar-library a {
  display: block;
  margin: 1px -8px;
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--docs-text-muted);
  font-size: 11px;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.docs-sidebar-library a:hover {
  color: var(--docs-text);
  background: var(--docs-surface);
}

.docs-sidebar-library a[aria-current="page"] {
  color: var(--docs-accent);
  background: var(--docs-accent-soft);
  font-weight: 650;
}

.docs-sidebar-repo {
  margin-top: 7px;
  font-size: 12px;
}

.docs-main {
  grid-column: 2;
  width: min(100%, calc(var(--docs-content-width) + 96px));
  min-width: 0;
  margin: 0 auto;
  padding: 30px 48px 0;
}

.docs-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 34px;
  color: var(--docs-text-muted);
  font-size: 12px;
}

.docs-breadcrumbs a {
  color: var(--docs-text-muted);
  text-decoration: none;
}

.docs-breadcrumbs a:hover {
  color: var(--docs-text);
}

.docs-article-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--docs-border);
}

.docs-section-label {
  margin: 0 0 9px !important;
  color: var(--docs-accent) !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.docs-article-header h1,
.docs-hub-header h1 {
  margin: 0;
  color: var(--docs-text);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 730;
  overflow-wrap: anywhere;
}

.docs-article-header > p:last-child,
.docs-hub-header > p:last-child {
  max-width: 68ch;
  margin: 14px 0 0;
  color: var(--docs-text-muted);
  font-size: 16px;
}

.docs-article {
  padding: 32px 0 54px;
  color: var(--docs-text-soft);
  overflow-wrap: anywhere;
}

.docs-article h2,
.docs-article h3,
.docs-article h4,
.docs-article h5,
.docs-article h6 {
  position: relative;
  color: var(--docs-text);
  line-height: 1.28;
  font-weight: 680;
  scroll-margin-top: calc(var(--docs-topbar-height) + 24px);
}

.docs-article h2 {
  margin: 52px 0 17px;
  padding-top: 4px;
  font-size: 26px;
}

.docs-article h3 {
  margin: 36px 0 13px;
  font-size: 20px;
}

.docs-article h4 {
  margin: 28px 0 10px;
  font-size: 16px;
}

.docs-article h5,
.docs-article h6 {
  margin: 24px 0 9px;
  font-size: 14px;
}

.docs-article > :first-child {
  margin-top: 0;
}

.docs-article p,
.docs-article ul,
.docs-article ol {
  margin: 0 0 18px;
}

.docs-article ul,
.docs-article ol {
  padding-left: 24px;
}

.docs-article li {
  margin: 4px 0;
}

.docs-article li > ul,
.docs-article li > ol {
  margin: 6px 0;
}

.docs-article strong {
  color: var(--docs-text);
  font-weight: 680;
}

.docs-article code,
.docs-article kbd {
  font-family: var(--docs-font-mono);
  font-size: 0.88em;
}

.docs-article :not(pre) > code {
  padding: 2px 5px;
  border: 1px solid var(--docs-border);
  border-radius: 4px;
  background: var(--docs-surface);
  color: #ffd2ad;
  overflow-wrap: anywhere;
}

.docs-code {
  position: relative;
  margin: 22px 0;
}

.docs-code pre {
  max-width: 100%;
  margin: 0;
  padding: 17px 18px;
  overflow: auto;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
  background: #10100f;
  color: #e8e4dc;
  line-height: 1.58;
  tab-size: 2;
}

.docs-copy {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 7px;
  min-width: 48px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--docs-border);
  border-radius: 4px;
  background: var(--docs-surface-raised);
  color: var(--docs-text-muted);
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.docs-copy:hover,
.docs-copy[data-copied="true"] {
  border-color: var(--docs-border-strong);
  color: var(--docs-text);
}

.docs-copy[data-copied="true"] {
  color: var(--docs-green);
}

.docs-article blockquote {
  margin: 22px 0;
  padding: 13px 17px;
  border-left: 3px solid var(--docs-blue);
  background: var(--docs-surface-blue);
  color: var(--docs-text-soft);
}

.docs-article blockquote > :last-child {
  margin-bottom: 0;
}

.docs-article hr {
  height: 1px;
  margin: 40px 0;
  border: 0;
  background: var(--docs-border);
}

.docs-article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
}

.docs-article details {
  margin: 18px 0;
  padding: 12px 14px;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
  background: var(--docs-surface);
}

.docs-article summary {
  color: var(--docs-text);
  font-weight: 650;
  cursor: pointer;
}

.docs-article .docs-schema-definition {
  margin: 10px 0;
  padding: 0;
}

.docs-schema-definition > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 15px;
}

.docs-schema-definition > summary span,
.docs-schema-definition > summary small {
  display: block;
}

.docs-schema-definition > summary code {
  color: var(--docs-text);
  font-size: 13px;
}

.docs-schema-definition > summary small {
  margin-top: 4px;
  color: var(--docs-text-muted);
  font-size: 12px;
  font-weight: 400;
}

.docs-schema-definition > summary b {
  flex: 0 0 auto;
  color: var(--docs-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.docs-schema-definition[open] > summary {
  border-bottom: 1px solid var(--docs-border);
}

.docs-schema-definition > :not(summary) {
  margin-right: 15px;
  margin-left: 15px;
}

.docs-schema-definition > :last-child {
  margin-bottom: 15px;
}

.docs-table-scroll {
  max-width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--docs-border-strong) transparent;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
}

.docs-table-scroll table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}

.docs-table-scroll th,
.docs-table-scroll td {
  padding: 9px 11px;
  border-right: 1px solid var(--docs-border);
  border-bottom: 1px solid var(--docs-border);
  text-align: left;
  vertical-align: top;
}

.docs-table-scroll th {
  white-space: nowrap;
}

.docs-table-scroll td {
  overflow-wrap: normal;
  word-break: normal;
}

.docs-table-cell-value {
  min-width: 0;
  overflow-wrap: inherit;
  word-break: inherit;
}

.docs-table-scroll th:last-child,
.docs-table-scroll td:last-child {
  border-right: 0;
}

.docs-table-scroll tr:last-child td {
  border-bottom: 0;
}

.docs-table-scroll th {
  background: var(--docs-surface-raised);
  color: var(--docs-text);
  font-weight: 680;
}

/*
 * Capability inventory rows contain long source paths, commands, and typed
 * method names. A conventional seven- or eight-column matrix becomes
 * unreadable inside the documentation article even on desktop, so the
 * generated report opts into labeled records at every viewport width.
 */
.docs-capability-inventory .docs-table-scroll {
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.docs-capability-inventory .docs-table-scroll table,
.docs-capability-inventory .docs-table-scroll tbody,
.docs-capability-inventory .docs-table-scroll tbody tr {
  display: block;
  width: 100%;
  min-width: 0;
}

.docs-capability-inventory .docs-table-scroll thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.docs-capability-inventory .docs-table-scroll tbody tr {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
  background: var(--docs-surface);
}

.docs-capability-inventory .docs-table-scroll tbody tr:last-child {
  margin-bottom: 0;
}

.docs-capability-inventory .docs-table-scroll tbody td {
  display: grid;
  grid-template-columns: minmax(180px, 28%) minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  padding: 10px 11px;
  overflow-wrap: anywhere;
  border-right: 0;
}

.docs-capability-inventory .docs-table-scroll tbody td::before {
  content: attr(data-label);
  color: var(--docs-text-muted);
  font: 650 10px/1.45 var(--docs-font-mono);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.docs-capability-inventory .docs-table-scroll tbody td:last-child {
  border-bottom: 0;
}

.docs-toc {
  grid-column: 3;
  min-width: 0;
  padding: 32px 20px 24px 0;
}

.docs-toc > div {
  position: sticky;
  top: calc(var(--docs-topbar-height) + 26px);
  max-height: calc(100vh - var(--docs-topbar-height) - 52px);
  overflow-y: auto;
  padding-left: 18px;
  border-left: 1px solid var(--docs-border);
}

.docs-toc h2 {
  margin: 0 0 10px;
  color: var(--docs-text-soft);
  font-size: 11px;
  text-transform: uppercase;
}

.docs-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-toc li {
  margin: 0;
}

.docs-toc a {
  display: flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 0;
  color: var(--docs-text-muted);
  font-size: 11px;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.docs-toc a:hover,
.docs-toc a[aria-current="true"] {
  color: var(--docs-text);
}

.docs-toc-level-3 a {
  padding-left: 11px;
}

.docs-toc-empty {
  color: var(--docs-text-muted);
  font-size: 11px;
}

.docs-pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 26px 0;
  border-top: 1px solid var(--docs-border);
}

.docs-pager-link {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--docs-border);
  border-radius: 6px;
  color: var(--docs-text) !important;
  text-decoration: none;
}

.docs-pager-link:hover {
  border-color: var(--docs-border-strong);
  background: var(--docs-surface);
}

.docs-pager-link span,
.docs-pager-link strong {
  display: block;
  overflow-wrap: anywhere;
}

.docs-pager-link span {
  margin-bottom: 4px;
  color: var(--docs-text-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.docs-pager-link strong {
  font-size: 13px;
}

.docs-pager-next {
  text-align: right;
}

.docs-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 23px 0 30px;
  border-top: 1px solid var(--docs-border);
  color: var(--docs-text-muted);
  font-size: 12px;
}

.docs-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.docs-footer a {
  color: var(--docs-text-muted);
  text-decoration: none;
}

.docs-hub-shell {
  grid-template-columns: var(--docs-sidebar-width) minmax(0, 1fr);
}

.docs-hub {
  width: min(100%, 1040px);
  padding-bottom: 0;
}

.docs-hub-header {
  position: relative;
  overflow: hidden;
  padding: 42px 40px;
  border: 1px solid var(--docs-border);
  border-radius: 10px;
  background:
    linear-gradient(rgba(251,146,60,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,146,60,0.045) 1px, transparent 1px),
    radial-gradient(520px 260px at 88% 18%, rgba(249,115,22,0.13), transparent 72%),
    var(--docs-surface);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.docs-product-guides {
  padding: 42px 0;
  border-bottom: 1px solid var(--docs-border);
}

.docs-core-library {
  padding-top: 42px;
}

.docs-core-library > h2 {
  margin: 0;
  color: var(--docs-text);
  font-size: 27px;
  letter-spacing: -0.02em;
}

.docs-core-library > p {
  max-width: 66ch;
  margin: 10px 0 0;
  color: var(--docs-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.docs-product-guides h2,
.docs-directory-section h2 {
  margin: 0 0 16px;
  color: var(--docs-text);
  font-size: 20px;
}

.docs-product-guides-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 24px;
}

.docs-product-guides-head .docs-section-label {
  margin: 0 0 8px;
}

.docs-product-guides-head h2 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.025em;
}

.docs-product-guides-head > p {
  margin: 0;
  color: var(--docs-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.docs-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.docs-guide {
  position: relative;
  min-width: 0;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--docs-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(28,27,24,0.72), rgba(20,20,18,0.82));
  color: var(--docs-text) !important;
  text-decoration: none;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.docs-guide:hover {
  border-color: var(--docs-accent-strong);
  background:
    radial-gradient(320px 150px at 100% 0, rgba(249,115,22,0.13), transparent 72%),
    var(--docs-surface-raised);
  transform: translateY(-2px);
}

.docs-guide small,
.docs-guide strong,
.docs-guide span,
.docs-guide b,
.docs-directory-list strong,
.docs-directory-list span {
  display: block;
}

.docs-guide small {
  margin-bottom: 20px;
  color: var(--docs-accent);
  font: 650 10px/1.3 var(--docs-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.docs-guide strong,
.docs-directory-list strong {
  font-size: 14px;
}

.docs-guide strong {
  font-size: 17px;
}

.docs-guide span,
.docs-directory-list span {
  margin-top: 4px;
  color: var(--docs-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.docs-guide b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--docs-text-soft);
  font-size: 11px;
  font-weight: 650;
}

.docs-guide b i {
  color: var(--docs-accent);
  font-style: normal;
}

.docs-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 14px;
}

.docs-guide-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--docs-text-muted);
  font-size: 12px;
  text-decoration: none;
}

.docs-guide-links a:hover {
  border-color: var(--docs-border);
  background: var(--docs-surface);
  color: var(--docs-text);
}

.docs-guide-links a span {
  margin: 0;
  color: var(--docs-accent);
}

.docs-directory {
  padding: 8px 0 20px;
}

.docs-directory-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--docs-border);
}

.docs-directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.docs-directory-list a {
  min-width: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(52, 49, 43, 0.65);
  color: var(--docs-text) !important;
  text-decoration: none;
}

.docs-directory-list a:hover strong {
  color: var(--docs-accent);
}

.docs-reference-library {
  margin: 18px 0 48px;
  border: 1px solid var(--docs-border);
  border-radius: 8px;
  background: var(--docs-surface);
}

.docs-reference-library > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
}

.docs-reference-library > summary span,
.docs-reference-library > summary small {
  display: block;
}

.docs-reference-library > summary strong {
  color: var(--docs-text);
  font-size: 15px;
}

.docs-reference-library > summary small {
  margin-top: 4px;
  color: var(--docs-text-muted);
  font-size: 12px;
  font-weight: 400;
}

.docs-reference-library > summary b {
  flex: 0 0 auto;
  color: var(--docs-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.docs-reference-library-body {
  padding: 0 20px 22px;
  border-top: 1px solid var(--docs-border);
}

.docs-reference-library-body .docs-directory-section {
  padding: 24px 0;
}

.docs-reference-library-body .docs-directory-section h3 {
  margin: 0 0 12px;
  color: var(--docs-text);
  font-size: 16px;
}

@media (max-width: 1180px) {
  .docs-shell {
    grid-template-columns: var(--docs-sidebar-width) minmax(0, 1fr);
  }

  .docs-toc {
    display: none;
  }
}

@media (max-width: 820px) {
  .docs-topbar {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    gap: 10px;
    padding: 0 12px;
  }

  .docs-product-name {
    display: none;
  }

  .docs-search {
    min-width: 0;
  }

  .docs-menu-button {
    display: block;
  }

  .docs-shell,
  .docs-hub-shell {
    display: block;
  }

  .docs-sidebar {
    width: min(88vw, 320px);
    transform: translateX(-102%);
    transition: transform 160ms ease;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.5);
  }

  .docs-nav-open .docs-sidebar {
    transform: translateX(0);
  }

  .docs-nav-open::after {
    content: "";
    position: fixed;
    z-index: 70;
    inset: var(--docs-topbar-height) 0 0 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .docs-main,
  .docs-hub {
    width: 100%;
    padding: 24px 20px 0;
  }

  .docs-breadcrumbs {
    margin-bottom: 26px;
  }

  .docs-article-header h1,
  .docs-hub-header h1 {
    font-size: 31px;
  }

  .docs-product-guides-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .docs-guide-grid,
  .docs-directory-list {
    grid-template-columns: 1fr;
  }

  .docs-reference-library > summary {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .docs-brand span {
    display: none;
  }

  .docs-topbar {
    grid-template-columns: 30px minmax(0, 1fr) 42px;
  }

  .docs-search input {
    font-size: 12px;
  }

  .docs-main,
  .docs-hub {
    padding-right: 15px;
    padding-left: 15px;
  }

  .docs-hub-header {
    padding: 28px 22px;
  }

  .docs-article-header h1,
  .docs-hub-header h1 {
    font-size: 27px;
  }

  .docs-guide {
    min-height: 0;
  }

  .docs-guide-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .docs-guide-links a {
    min-width: 0;
    justify-content: space-between;
  }

  .docs-article h2 {
    font-size: 23px;
  }

  .docs-table-scroll {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .docs-table-scroll table,
  .docs-table-scroll tbody,
  .docs-table-scroll tbody tr {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .docs-table-scroll thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .docs-table-scroll tbody tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--docs-border);
    border-radius: 6px;
    background: var(--docs-surface);
  }

  .docs-table-scroll tbody tr:last-child {
    margin-bottom: 0;
  }

  .docs-table-scroll tbody td {
    display: grid;
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    padding: 10px 11px;
    overflow-wrap: anywhere;
    border-right: 0;
  }

  .docs-capability-inventory .docs-table-scroll tbody td {
    grid-template-columns: minmax(92px, 34%) minmax(0, 1fr);
    gap: 10px;
  }

  .docs-table-scroll tbody td::before {
    content: attr(data-label);
    color: var(--docs-text-muted);
    font: 650 10px/1.45 var(--docs-font-mono);
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .docs-table-scroll tbody td:last-child {
    border-bottom: 0;
  }

  .docs-pager {
    grid-template-columns: 1fr;
  }

  .docs-pager-next {
    text-align: left;
  }

  .docs-footer {
    display: block;
  }

  .docs-footer nav {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .docs-sidebar,
  .docs-guide {
    transition: none;
  }

  .docs-guide:hover {
    transform: none;
  }
}
