:root {
    --docs-bg: #0c0c0e;
    --docs-panel: #0c0c0e;
    --docs-surface: #0c0c0e;
    --docs-surface-2: #0c0c0e;
    --docs-border: #1f1f21;
    --docs-border-soft: #1f1f21;
    --docs-text: #e6ebf4;
    --docs-muted: #a0a9b8;
    --docs-dim: #7f8897;
    --docs-accent: #9bc8ff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--docs-bg);
    color: var(--docs-text);
    font-family: "Poppins", sans-serif;
}

html {
    scrollbar-gutter: stable;
}

body {
    overflow-y: scroll;
}

a {
    color: var(--docs-accent);
}

.docs-shell {
    min-height: 100vh;
    background: var(--docs-bg);
}

.docs-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--docs-border);
    background: var(--docs-bg);
    backdrop-filter: blur(8px);
}

.docs-topbar-inner {
    max-width: 1460px;
    margin: 0 auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.docs-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--docs-text);
    font: 500 20px "Manrope", "Poppins", sans-serif;
    line-height: 1;
    white-space: nowrap;
}

.docs-brand img {
    width: 32px;
    height: 32px;
    border-radius: 9px;
}

.docs-brand span {
    display: none;
}

.docs-topbar-search {
    width: min(420px, calc(100vw - 520px));
    min-height: 36px;
    border: 1px solid var(--docs-border);
    border-radius: 14px;
    background: var(--docs-bg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.docs-topbar-search-icon {
    color: #767a82;
    font-size: 16px;
    line-height: 1;
}

.docs-topbar-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--docs-text);
    font: 400 13px "Manrope", "Poppins", sans-serif;
    cursor: pointer;
}

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

.docs-topbar-key {
    border: 1px solid var(--docs-border);
    border-radius: 7px;
    color: #adbad0;
    font: 500 11px "Manrope", "Poppins", sans-serif;
    line-height: 1;
    padding: 4px 7px;
}

body.docs-search-open {
    overflow: hidden;
}

.docs-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: grid;
    place-items: start center;
    padding: 62px 16px 16px;
    background: rgba(5, 8, 12, 0.7);
    backdrop-filter: blur(7px);
}

.docs-search-modal {
    width: min(640px, calc(100vw - 32px));
    max-height: min(74vh, 760px);
    border: 1px solid #1a1d22;
    border-radius: 14px;
    background: #090b10;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.58);
    overflow: hidden;
    padding: 7px;
}

.docs-search-head {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid #20242a;
    border-radius: 12px;
    background: #090b10;
}

.docs-search-head-icon {
    color: #5c6169;
    font-size: 19px;
    line-height: 1;
}

.docs-search-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #f2f4f8;
    font: 500 13px "Manrope", "Poppins", sans-serif;
}

.docs-search-input::placeholder {
    color: #8e939c;
}

.docs-search-results {
    max-height: min(66vh, 700px);
    overflow-y: auto;
    padding: 8px 0 0;
    border-top: 1px solid #14171d;
    margin-top: 6px;
}

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

.docs-search-result {
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 1px solid #12151b;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    padding: 9px 14px;
    cursor: pointer;
}

.docs-search-result:last-child {
    border-bottom: 0;
}

.docs-search-result:hover,
.docs-search-result.is-active {
    background: #12161d;
}

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

.docs-search-result-crumb {
    margin: 0 0 3px;
    color: #8f949d;
    font: 400 12px "Manrope", "Poppins", sans-serif;
    line-height: 1.3;
}

.docs-search-result-row {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.docs-search-result-hash {
    color: #b8bcc5;
    font: 600 18px/1 "Manrope", "Poppins", sans-serif;
    flex-shrink: 0;
}

.docs-search-result-title {
    margin: 0;
    color: #f6f8fc;
    font: 600 15px "Manrope", "Poppins", sans-serif;
    line-height: 1.28;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.docs-search-result-excerpt {
    margin: 2px 0 0 24px;
    color: #787c84;
    font: 400 11px "Manrope", "Poppins", sans-serif;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.docs-search-empty {
    margin: 6px 2px;
    color: #c2d0e4;
    font: 400 13px "Manrope", "Poppins", sans-serif;
}

.docs-topbar-links {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.docs-topbar-links a {
    text-decoration: none;
    border: 1px solid var(--docs-border);
    border-radius: 999px;
    background: var(--docs-bg);
    color: #c6cfdd;
    font: 500 11px "Manrope", "Poppins", sans-serif;
    padding: 7px 11px;
}

.docs-topbar-links a:hover {
    background: var(--docs-bg);
    border-color: var(--docs-border);
    color: #ecf2ff;
}

.docs-topbar-links a[href="/"] {
    border-color: var(--docs-border);
    background: var(--docs-bg);
    color: #f7fbff;
}

.docs-topbar-links a[href="/"]::after {
    content: "›";
    margin-left: 6px;
    font-weight: 700;
}

.docs-layout {
    max-width: 1460px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
}

.docs-sidebar {
    position: sticky;
    top: 65px;
    height: calc(100vh - 65px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    align-self: start;
    border-right: 0;
    background: var(--docs-bg);
    padding: 18px 12px 18px;
}

.docs-sidebar-search-wrap {
    margin-bottom: 12px;
}

.docs-sidebar-search {
    width: 100%;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: var(--docs-bg);
    color: var(--docs-text);
    font: 400 12px "Manrope", "Poppins", sans-serif;
    outline: none;
    padding: 8px 10px;
}

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

.docs-sidebar-search:focus {
    border-color: var(--docs-border);
}

.docs-sidebar-group {
    margin-bottom: 24px;
}

.docs-sidebar-label {
    margin: 0 10px 10px;
    color: #e7edf7;
    font: 500 15px "Manrope", "Poppins", sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

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

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

.docs-sidebar-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #737474;
    font: 400 13px "Manrope", "Poppins", sans-serif;
    line-height: 1.35;
    padding: 8px 10px;
}

.docs-sidebar-icon-wrap {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #737474;
    flex-shrink: 0;
}

.docs-sidebar-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.docs-sidebar-link-text {
    min-width: 0;
}

.docs-sidebar-links a:hover {
    border-color: #24262f;
    background: #111217;
    color: #ecf2ff;
}

.docs-sidebar-links a:hover .docs-sidebar-icon-wrap {
    color: #b9d8f7;
}

.docs-sidebar-links a.active {
    border-color: #2a2f39;
    background: linear-gradient(90deg, rgba(68, 78, 95, 0.42), rgba(22, 24, 30, 0.36));
    color: #f7fbff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.docs-sidebar-links a.active .docs-sidebar-icon-wrap {
    color: #c8e9ff;
}

.docs-sidebar-subgroup {
    margin-bottom: 12px;
}

.docs-sidebar-sub-label {
    margin: 0 10px 6px;
    color: #9ea9ba;
    font: 500 11px "Manrope", "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.docs-sidebar-links--sub li {
    margin: 2px 0;
}

.docs-sidebar-links--sub a {
    font-size: 12px;
    color: #737474;
    border-radius: 10px;
    padding: 5px 9px;
}

.docs-sidebar-links--sub .docs-sidebar-icon-wrap,
.docs-sidebar-links--sub .docs-sidebar-icon {
    width: 14px;
    height: 14px;
}

.docs-main {
    padding: 30px 14px 24px;
    overflow-x: hidden;
}

.docs-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) 255px;
    gap: 26px;
    align-items: start;
    justify-content: center;
}

.docs-main article {
    padding: 12px 8px 14px;
    border: 0;
    background: transparent;
}

.docs-main h1 {
    margin: 0 0 10px;
    color: #f4f8ff;
    font: 600 clamp(28px, 3.8vw, 38px) "Manrope", "Poppins", sans-serif;
    line-height: 1.05;
}

.docs-main h2 {
    margin: 18px 0 8px;
    color: #f0f6ff;
    font: 500 24px "Manrope", "Poppins", sans-serif;
    line-height: 1.1;
}

.docs-main h3 {
    margin: 14px 0 6px;
    color: #ebf2ff;
    font: 500 19px "Manrope", "Poppins", sans-serif;
}

.docs-main strong {
    font-weight: 500;
}

.docs-main p {
    margin: 0 0 10px;
    color: #ffffff;
    font: 400 14px "Manrope", "Poppins", sans-serif;
    line-height: 1.64;
}

.docs-main ul,
.docs-main ol {
    margin: 0 0 12px;
    padding-left: 20px;
}

.docs-main li {
    margin: 6px 0;
    color: #ffffff;
    font: 400 14px "Manrope", "Poppins", sans-serif;
    line-height: 1.58;
}

.docs-guide-flow > h2 {
    margin-top: 28px;
    margin-bottom: 10px;
}

.docs-guide-flow > p {
    margin-bottom: 14px;
}

.docs-guide-flow > ul,
.docs-guide-flow > ol {
    margin-bottom: 18px;
}

.docs-guide-flow .docs-callout {
    margin: 16px 0 20px;
}

.docs-guide-flow .docs-media-card {
    margin: 18px 0 24px;
}

.docs-guide-flow .docs-step-heading {
    margin-top: 42px;
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--docs-border);
}

.docs-guide-flow .docs-step-heading:first-of-type {
    margin-top: 28px;
    padding-top: 0;
    border-top: 0;
}

.docs-main code {
    border: 1px solid var(--docs-border);
    border-radius: 8px;
    background: var(--docs-bg);
    color: #d4dceb;
    padding: 1px 6px;
    font: 500 0.9em "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.docs-command-showcase {
    margin: 10px 0 14px;
    border: 1px solid #242933;
    border-radius: 14px;
    background: #252527;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.docs-command-head {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    background: #252527;
    border-bottom: 1px solid var(--docs-border);
}

.docs-command-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.docs-command-tab {
    border: 0;
    background: transparent;
    color: #97a2b4;
    font: 500 11px "Manrope", "Poppins", sans-serif;
    line-height: 1;
    border-radius: 8px;
    padding: 5px 7px;
    cursor: pointer;
}

.docs-command-tab:hover {
    color: #d5deed;
    background: rgba(255, 255, 255, 0.03);
}

.docs-command-tab.is-active {
    color: #bfe6ff;
    box-shadow: inset 0 -2px 0 #95d3f6;
}

.docs-command-copy {
    margin-left: auto;
    border: 1px solid #252b35;
    border-radius: 8px;
    background: #0c0f14;
    color: #aeb8ca;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.docs-command-copy:hover {
    border-color: var(--docs-border);
    background: var(--docs-bg);
    color: #e5ecf8;
}

.docs-command-copy svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.docs-command-body {
    padding: 6px;
}

.docs-command-pane {
    margin: 0;
    border: 1px solid #202631;
    border-radius: 11px;
    background: #080b10;
    color: #d7e5f6;
    font: 500 12px/1.45 "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: 0;
    padding: 11px 12px;
    white-space: pre-wrap;
    word-break: break-word;
    display: none;
}

.docs-command-pane.is-active {
    display: block;
}

.docs-token-command {
    color: #a4d6ff;
}

.docs-token-arg {
    color: #dad7b6;
}

.docs-token-var {
    color: #d7dce7;
}

.docs-callout {
    margin: 12px 0;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: #252527;
    color: #ffffff;
    font: 500 13px "Manrope", "Poppins", sans-serif;
    line-height: 1.55;
    position: relative;
    padding: 10px 12px 10px 36px;
}

.docs-callout::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 17px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239da7b5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 10.5v6'/%3E%3Ccircle cx='12' cy='7.3' r='1' fill='%239da7b5' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.docs-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
}

.docs-card {
    display: block;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: var(--docs-bg);
    color: var(--docs-text);
    text-decoration: none;
    padding: 12px;
}

.docs-card strong {
    display: block;
    margin-bottom: 6px;
    color: #f1f6ff;
    font: 500 16px "Manrope", "Poppins", sans-serif;
}

.docs-card span {
    color: #ffffff;
    font: 400 13px "Manrope", "Poppins", sans-serif;
    line-height: 1.5;
}

.docs-card:hover {
    border-color: var(--docs-border);
    background: var(--docs-bg);
}

.docs-footer {
    margin-top: 14px;
    color: #ffffff;
    font: 400 12px "Manrope", "Poppins", sans-serif;
}

.docs-toc {
    position: sticky;
    top: 126px;
    border-left: 1px solid #262934;
    padding-left: 14px;
    margin-left: 28px;
}

.docs-toc-title {
    margin: 0 0 8px;
    color: #f2f7ff;
    font: 500 13px "Manrope", "Poppins", sans-serif;
}

.docs-toc-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.docs-toc-links a {
    text-decoration: none;
    color: #ffffff;
    font: 400 13px "Manrope", "Poppins", sans-serif;
    line-height: 1.35;
    position: relative;
    display: inline-block;
}

.docs-toc-links a:hover {
    color: #dce8fb;
}

.docs-toc-links a.is-active {
    color: #e6eefc;
}

.docs-toc-links a.is-active::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #9bc8ff;
}

.docs-toc-links li.is-sub a {
    margin-left: 14px;
    font-size: 12px;
    color: #7f90ab;
}

.docs-ref-meta {
    margin: 0 0 12px;
    color: #ffffff;
    font: 400 12px "Manrope", "Poppins", sans-serif;
}

.docs-ref-section {
    margin-top: 14px;
}

.docs-ref-section h2 {
    margin: 0 0 8px;
    font-size: 21px;
}

.docs-ref-table-wrap {
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.docs-ref-table {
    width: 100%;
    border-collapse: collapse;
}

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

.docs-ref-table th {
    color: var(--docs-muted);
    font: 500 11px "Manrope", "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.docs-ref-table td {
    color: #ffffff;
    font: 400 13px "Manrope", "Poppins", sans-serif;
    line-height: 1.5;
}

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

.docs-ref-command {
    color: #e7effd;
    font: 500 13px "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    white-space: nowrap;
}

.docs-ref-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--docs-border);
    border-radius: 999px;
    color: #c6cfdd;
    font: 500 11px "Manrope", "Poppins", sans-serif;
    line-height: 1;
    padding: 4px 7px;
}

.docs-ref-empty {
    margin: 0;
    color: var(--docs-muted);
    font: 400 13px "Manrope", "Poppins", sans-serif;
}

.docs-help-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.docs-help-card {
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: var(--docs-bg);
    padding: 12px;
}

.docs-help-card h3 {
    margin: 0 0 8px;
    color: #edf4ff;
    font: 500 17px "Manrope", "Poppins", sans-serif;
    line-height: 1.2;
}

.docs-help-label {
    margin: 9px 0 4px;
    color: #97a5ba;
    font: 400 11px "Manrope", "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.docs-help-text {
    margin: 0;
    color: #ffffff;
    font: 400 13px "Manrope", "Poppins", sans-serif;
    line-height: 1.55;
}

.docs-help-syntax {
    display: block;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: var(--docs-bg);
    color: #dbe7f6;
    font: 500 12px/1.4 "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    padding: 8px 10px;
    white-space: pre-wrap;
    word-break: break-word;
}

.docs-help-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.docs-help-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.docs-help-options li {
    margin: 0;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: var(--docs-bg);
    padding: 8px 9px;
}

.docs-help-option-title {
    margin: 0 0 3px;
    color: #d9e5f7;
    font: 500 12px "Manrope", "Poppins", sans-serif;
}

.docs-help-option-title span {
    color: #96a7bf;
    font-weight: 400;
}

.docs-help-option-desc {
    margin: 0;
    color: #ffffff;
    font: 400 12px "Manrope", "Poppins", sans-serif;
    line-height: 1.45;
}

.docs-media-card {
    margin: 12px 0 16px;
    border: 1px solid var(--docs-border);
    border-radius: 12px;
    background: var(--docs-bg);
    padding: 10px;
}

.docs-media-label {
    margin: 0 0 8px;
    color: #97a5ba;
    font: 600 11px "Manrope", "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.docs-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    overflow: hidden;
    background: #09090b;
}

.docs-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.docs-guide-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: #09090b;
}

.docs-mobile-nav {
    display: none;
}

.docs-sidebar-backdrop {
    display: none;
}

@media (max-width: 1200px) {
    .docs-main-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .docs-toc {
        display: none;
    }
}

@media (max-width: 960px) {
    body.docs-mobile-nav-open {
        overflow: hidden;
    }

    .docs-topbar-inner {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px;
    }

    .docs-topbar-search {
        order: 3;
        width: 100%;
        max-width: none;
        margin-left: 0;
        position: static;
        left: auto;
        transform: none;
        min-height: 40px;
    }

    .docs-topbar-links {
        display: none;
    }

    .docs-topbar-key {
        display: none;
    }

    .docs-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .docs-sidebar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        width: min(90vw, 330px);
        height: 100vh;
        padding-top: 74px;
        transform: translateX(-105%);
        transition: transform .22s ease;
        pointer-events: none;
        box-shadow: 12px 0 36px rgba(0, 0, 0, 0.4);
    }

    .docs-sidebar.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .docs-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 49;
        background: rgba(4, 6, 10, 0.52);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    body.docs-mobile-nav-open .docs-sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .docs-mobile-nav {
        display: inline-flex;
        order: 2;
        margin-left: auto;
        border: 1px solid var(--docs-border);
        border-radius: 10px;
        background: var(--docs-bg);
        color: #d1dceb;
        font: 600 13px "Manrope", "Poppins", sans-serif;
        padding: 10px 12px;
        min-height: 40px;
        cursor: pointer;
    }

    .docs-main {
        padding: 10px 10px 18px;
    }

    .docs-main article {
        padding: 10px 2px 12px;
    }

    .docs-main h1 {
        font-size: clamp(26px, 7vw, 34px);
    }

    .docs-main h2 {
        font-size: clamp(22px, 5.5vw, 26px);
    }

    .docs-ref-table {
        min-width: 620px;
    }
}

@media (max-width: 640px) {
    .docs-search-overlay {
        padding: 8px;
        place-items: start center;
    }

    .docs-search-modal {
        width: 100%;
        max-height: calc(100dvh - 16px);
        border-radius: 12px;
        padding: 6px;
    }

    .docs-search-head {
        min-height: 42px;
        padding: 0 10px;
    }

    .docs-search-head-icon {
        font-size: 17px;
    }

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

    .docs-search-results {
        max-height: calc(100dvh - 88px);
    }

    .docs-search-result {
        padding: 10px 12px;
    }

    .docs-search-result-crumb {
        font-size: 11px;
    }

    .docs-search-result-title {
        font-size: 14px;
    }

    .docs-search-result-excerpt {
        font-size: 11px;
    }

    .docs-main {
        padding: 8px 8px 18px;
    }

    .docs-main article {
        padding: 8px 0 12px;
    }

    .docs-main p,
    .docs-main li {
        font-size: 15px;
        line-height: 1.65;
    }

    .docs-card {
        padding: 12px 11px;
    }
}
