:root {
    --docs-page-bg: #ffffff;
    --docs-sidebar-bg: #f8f9fb;
    --docs-border: #e5e7eb;
    --docs-border-strong: #d1d5db;
    --docs-text: #1f2937;
    --docs-muted: #6b7280;
    --docs-accent: #2563eb;
    --docs-accent-soft: #eff6ff;
    --docs-code-bg: #111827;
    --docs-code-inline: #f3f4f6;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--docs-page-bg);
    color: var(--docs-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.docs-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
}

.docs-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid var(--docs-border);
    background: var(--docs-sidebar-bg);
}

.docs-sidebar__inner {
    padding: 28px 20px 36px;
}

.docs-brand {
    display: grid;
    gap: 10px;
}

.docs-brand__logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111827;
}

.docs-brand__body {
    display: grid;
    gap: 6px;
}

.docs-brand__title,
.docs-brand__subtitle {
    margin: 0;
}

.docs-brand__title {
    font-size: 1rem;
    font-weight: 700;
}

.docs-brand__subtitle {
    color: var(--docs-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.docs-search-wrap {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.docs-search-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--docs-muted);
    text-transform: uppercase;
}

.docs-search {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--docs-border);
    border-radius: 6px;
    background: #fff;
    color: var(--docs-text);
    outline: none;
}

.docs-search:focus,
.docs-action:focus,
.docs-toggle:focus {
    border-color: var(--docs-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.docs-nav {
    margin-top: 24px;
}

.docs-nav-group + .docs-nav-group {
    margin-top: 24px;
}

.docs-nav-group__header {
    margin-bottom: 10px;
    color: var(--docs-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.docs-nav-item + .docs-nav-item {
    margin-top: 2px;
}

.docs-nav-link {
    display: block;
    padding: 8px 10px;
    border-left: 2px solid transparent;
    color: #374151;
    font-size: 0.94rem;
    line-height: 1.5;
}

.docs-nav-link:hover {
    background: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.docs-nav-link.is-active {
    border-left-color: var(--docs-accent);
    background: var(--docs-accent-soft);
    color: #1d4ed8;
    font-weight: 600;
}

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

.docs-main__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 40px 56px;
}

.docs-mobilebar {
    display: none;
}

.docs-pagehead {
    max-width: 860px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--docs-border);
}

.docs-pagehead__eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--docs-muted);
    font-size: 0.88rem;
}

.docs-pagehead__marker {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: var(--docs-accent-soft);
    color: #1d4ed8;
    font-size: 0.8rem;
}

.docs-pagehead h1 {
    margin: 14px 0 0;
    font-size: 2.15rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #111827;
}

.docs-pagehead__summary {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--docs-muted);
    line-height: 1.8;
}

.docs-pagehead__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
    color: var(--docs-muted);
    font-size: 0.88rem;
}

.docs-pagehead__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.docs-pagehead__meta strong {
    color: #111827;
    font-size: 0.8rem;
}

.docs-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 42px;
    align-items: start;
    margin-top: 28px;
}

.docs-article {
    min-width: 0;
    max-width: 860px;
}

.docs-article__body {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--docs-text);
}

.docs-article__body > :first-child,
.docs-example-board > :first-child {
    margin-top: 0;
}

.docs-article__body h1,
.docs-article__body h2,
.docs-article__body h3,
.docs-article__body h4 {
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    color: #111827;
    line-height: 1.28;
    font-weight: 700;
}

.docs-article__body h2 {
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--docs-border);
    font-size: 1.45rem;
}

.docs-article__body h3 {
    font-size: 1.16rem;
}

.docs-article__body p,
.docs-article__body li,
.docs-section-header p,
.doc-callout,
.doc-note-card__list,
.example-language-summary__meta,
.example-operation-card__meta {
    color: #374151;
}

.docs-article__body ul,
.docs-article__body ol {
    padding-left: 1.4rem;
}

.docs-article__body blockquote,
.doc-callout {
    margin: 1.4rem 0;
    padding: 12px 16px;
    border-left: 3px solid #93c5fd;
    background: #f8fbff;
}

.docs-article__body table {
    width: 100%;
    margin: 1.3rem 0;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.94rem;
}

.docs-article__body th,
.docs-article__body td {
    padding: 11px 12px;
    border: 1px solid var(--docs-border);
    vertical-align: top;
    text-align: left;
    word-break: break-word;
}

.docs-article__body th {
    background: #f9fafb;
    font-weight: 700;
}

.docs-article__body code,
.example-code code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.docs-article__body p code,
.docs-article__body li code,
.docs-article__body td code {
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--docs-code-inline);
    color: #111827;
    font-size: 0.92em;
}

.docs-article__body pre,
.example-code {
    margin: 1rem 0;
    padding: 16px 18px;
    border-radius: 8px;
    background: var(--docs-code-bg);
    color: #e5edf7;
    overflow: auto;
    line-height: 1.7;
    font-size: 0.92rem;
}

.docs-article__body pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.docs-article__body pre code.hljs,
.example-code code.hljs {
    display: block;
    padding: 0;
    background: transparent;
}

.docs-example-board {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--docs-border);
}

.docs-section-header h2 {
    margin: 0;
    font-size: 1.45rem;
    color: #111827;
}

.docs-section-header p {
    margin: 10px 0 0;
    line-height: 1.75;
}

.doc-callout h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #111827;
}

.doc-note-list {
    margin: 0;
    padding-left: 18px;
}

.doc-note-card {
    border: 1px solid var(--docs-border);
    border-radius: 6px;
    background: #fff;
}

.doc-note-card__title {
    display: block;
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    font-weight: 600;
    color: #111827;
    position: relative;
    padding-right: 42px;
}

.doc-note-card__title::-webkit-details-marker {
    display: none;
}

.doc-note-card__title::after {
    content: "+";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--docs-border);
    border-radius: 999px;
    background: #f9fafb;
    color: var(--docs-accent);
    font-weight: 700;
}

.doc-note-card[open] .doc-note-card__title::after {
    content: "-";
}

.doc-note-card__list {
    margin: 0;
    padding: 0 16px 14px 30px;
    line-height: 1.7;
}

.doc-note-card__content {
    margin: 0;
    padding: 0 16px 16px;
    color: #374151;
    white-space: pre-wrap;
    word-break: break-word;
    font: 13px/1.75 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    background: #fff;
}

.example-language-section {
    margin-top: 18px;
    border: 1px solid var(--docs-border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.example-language-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.example-language-summary::-webkit-details-marker {
    display: none;
}

.example-language-summary__main {
    min-width: 0;
}

.example-language-summary__title {
    margin: 0;
    font-size: 1.05rem;
    color: #111827;
}

.example-language-summary__meta {
    margin: 6px 0 0;
    font-size: 0.9rem;
}

.example-language-summary__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 8px 12px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

.example-language-section[open] .example-language-summary__toggle::before {
    content: "收起内容";
}

.example-language-section:not([open]) .example-language-summary__toggle::before {
    content: "展开查看";
}

.example-language-body {
    padding: 0 18px 18px;
    border-top: 1px solid var(--docs-border);
    background: #fff;
}

.example-language-notes {
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: #f8fbff;
}

.example-language-notes__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.example-language-notes__header h4 {
    margin: 0;
    font-size: 0.98rem;
    color: #111827;
}

.example-language-notes__header span {
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 600;
}

.example-language-note-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.example-operation-card + .example-operation-card {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--docs-border);
}

.example-operation-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.example-operation-card__title {
    margin: 0;
    font-size: 1rem;
    color: #111827;
}

.example-operation-card__meta {
    margin: 4px 0 0;
    font-size: 0.84rem;
}

.example-operation-card__body {
    margin-top: 10px;
}

.example-operation-note {
    margin-bottom: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
}

.example-operation-note strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 0.9rem;
}

.example-toolbar__lang {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.84rem;
    font-weight: 700;
}

.example-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.docs-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border: 1px solid var(--docs-border-strong);
    border-radius: 6px;
    background: #fff;
    color: #374151;
    font-size: 0.84rem;
    line-height: 1;
    text-decoration: none;
}

.docs-action:hover {
    background: #f9fafb;
    color: #111827;
    text-decoration: none;
}

.docs-action--ghost {
    cursor: pointer;
    background: transparent;
}

.example-editor {
    border: 1px solid #0f172a;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.example-editor__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, #151d2d 0%, #111827 100%);
}

.example-editor__window {
    display: flex;
    gap: 6px;
}

.example-editor__window span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.example-editor__window span:nth-child(1) {
    background: #fb7185;
}

.example-editor__window span:nth-child(2) {
    background: #fbbf24;
}

.example-editor__window span:nth-child(3) {
    background: #34d399;
}

.example-editor__file {
    min-width: 0;
}

.example-editor__file-name {
    color: #e5e7eb;
    font-size: 0.88rem;
    font-weight: 600;
    word-break: break-all;
}

.example-code {
    margin: 0;
    padding: 16px 18px 18px;
    background: #1e1e1e;
}

.example-code code.hljs {
    padding: 0;
    background: transparent;
    color: #dcdcdc;
    font-size: 0.92rem;
    line-height: 1.78;
}

.example-language-note-list .doc-note-card {
    border-color: #cfe1ff;
    background: #ffffff;
}

.example-language-note-list .doc-note-card__title {
    font-size: 0.9rem;
    background: #fcfdff;
}

.example-language-note-list .doc-note-card__content {
    background: #fff;
}

.docs-outline {
    position: sticky;
    top: 28px;
}

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

.docs-outline__inner {
    border-left: 1px solid var(--docs-border);
    padding-left: 18px;
}

.docs-outline__title {
    margin: 0 0 12px;
    color: var(--docs-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.docs-outline__nav {
    display: grid;
    gap: 8px;
}

.docs-outline__nav a {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
}

.docs-outline__nav a.is-sub {
    padding-left: 12px;
    font-size: 0.85rem;
}

.docs-outline__nav a.is-deep {
    padding-left: 24px;
    font-size: 0.82rem;
}

.docs-outline__nav a.is-active {
    color: var(--docs-accent);
    font-weight: 700;
}

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

.docs-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(17, 24, 39, 0.85);
    z-index: 50;
}

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

.docs-lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 86vh;
    border-radius: 8px;
    background: #fff;
}

.docs-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: rgba(17, 24, 39, 0.68);
    color: #fff;
    cursor: pointer;
}

.price-index {
    margin-top: 24px;
    padding: 18px 0 22px;
    border-top: 1px solid var(--docs-border);
    border-bottom: 1px solid var(--docs-border);
    display: grid;
    gap: 14px;
}

.price-index__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.price-index__head h2 {
    margin: 0;
    font-size: 1.38rem;
}

.price-index__lead {
    margin: 8px 0 0;
    color: var(--docs-muted);
    line-height: 1.75;
}

.price-index__toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px 18px;
    flex-wrap: wrap;
}

.price-index__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.price-index__chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid var(--docs-border);
    border-radius: 999px;
    color: #4b5563;
    background: #fff;
    font-size: 0.86rem;
}

.price-index__chip:hover {
    text-decoration: none;
    border-color: #bfdbfe;
    color: #1d4ed8;
    background: #f8fbff;
}

.price-search {
    display: grid;
    gap: 8px;
}

.price-search span {
    color: var(--docs-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-search input {
    width: 100%;
    max-width: 360px;
    padding: 10px 12px;
    border: 1px solid var(--docs-border);
    border-radius: 6px;
    background: #fff;
    color: var(--docs-text);
    outline: none;
}

.price-index__count {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid var(--docs-border);
    color: var(--docs-muted);
    font-size: 0.88rem;
    white-space: nowrap;
}

.price-board {
    margin-top: 24px;
    display: grid;
    gap: 26px;
}

.price-section {
    display: grid;
    gap: 12px;
}

.price-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--docs-border);
}

.price-section__title {
    margin: 0;
    font-size: 1.18rem;
    color: #111827;
}

.price-section__count {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f9fafb;
    color: var(--docs-muted);
    font-size: 0.82rem;
    border: 1px solid var(--docs-border);
}

.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    min-width: 680px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--docs-border);
    border-radius: 8px;
    background: #fff;
}

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

.price-table thead th {
    background: #fbfcfd;
    color: var(--docs-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-table tbody tr:last-child td {
    border-bottom: 0;
}

.price-row:hover td {
    background: #fcfdff;
}

.price-col--id,
.price-col--points {
    width: 92px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.price-col--id {
    color: #111827;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.93rem;
}

.price-col--points {
    color: #111827;
    font-weight: 600;
}

.price-type__title {
    display: inline-block;
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.5;
}

.price-preview {
    display: grid;
    gap: 10px;
}

.price-preview__text {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
}

.price-preview__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-preview__count {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid var(--docs-border);
    color: var(--docs-muted);
    font-size: 0.8rem;
}

.price-preview__strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.price-preview__figure {
    margin: 0;
    flex: 0 0 auto;
}

.price-preview__image {
    display: block;
    width: 104px;
    max-width: none;
    height: 68px;
    padding: 6px;
    border: 1px solid var(--docs-border);
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
    cursor: zoom-in;
}

.price-preview__empty {
    color: var(--docs-muted);
}

.price-row.is-hidden,
.price-section.is-hidden {
    display: none;
}

.price-index__chip.is-hidden,
.price-empty[hidden] {
    display: none;
}

.price-empty {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px dashed var(--docs-border-strong);
    border-radius: 8px;
    color: var(--docs-muted);
    background: #fbfcfe;
}

body[data-doc-slug="project-price"] .docs-article__body table {
    display: block;
    overflow-x: auto;
    table-layout: auto;
}

body[data-doc-slug="project-price"] .docs-article__body td:nth-child(1),
body[data-doc-slug="project-price"] .docs-article__body td:nth-child(4) {
    white-space: nowrap;
}

body[data-doc-slug="project-price"] .docs-article__body td:nth-child(3) {
    min-width: 360px;
}

body[data-doc-slug="project-price"] .docs-article__body td:nth-child(3) img {
    display: inline-block;
    width: 108px;
    max-width: none;
    height: 72px;
    margin: 0 8px 8px 0;
    padding: 4px;
    border: 1px solid var(--docs-border);
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
    vertical-align: top;
    cursor: zoom-in;
}

.token-comment,
.token-prolog,
.token-doctype,
.token-cdata {
    color: #6b7280;
}

.token-punctuation {
    color: #94a3b8;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #f472b6;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #86efac;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #93c5fd;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #c084fc;
}

.token.function,
.token.class-name {
    color: #facc15;
}

.token.regex,
.token.important,
.token.variable {
    color: #fdba74;
}

@media (max-width: 1100px) {
    .docs-shell {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 30;
        width: min(86vw, 320px);
        transform: translateX(-100%);
        transition: transform 0.22s ease;
        box-shadow: 24px 0 48px rgba(15, 23, 42, 0.12);
    }

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

    .docs-mobilebar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 18px;
        border-bottom: 1px solid var(--docs-border);
        background: #fff;
    }

    .docs-mobilebar__links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.9rem;
    }

    .docs-toggle {
        padding: 8px 12px;
        border: 1px solid var(--docs-border);
        border-radius: 6px;
        background: #fff;
        color: #111827;
        cursor: pointer;
        outline: none;
    }

    .docs-main__inner {
        padding: 24px 18px 40px;
    }

    .docs-content-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .docs-outline {
        display: none;
    }
}

@media (max-width: 768px) {
    .docs-pagehead h1 {
        font-size: 1.72rem;
    }

    .docs-pagehead__meta,
    .price-index__head,
    .price-index__toolbar,
    .price-section__header,
    .example-operation-card__header,
    .example-language-notes__header,
    .example-editor__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-search input {
        max-width: none;
    }

    .price-table {
        min-width: 620px;
    }

    .price-preview__image {
        width: 92px;
        height: 64px;
    }

    .example-editor__top {
        display: flex;
    }
}
