:root {
    --ink: #17221d;
    --ink-soft: #2e3b34;
    --muted: #637068;
    --paper: #f5f1e7;
    --paper-deep: #ebe5d7;
    --surface: rgba(255, 253, 247, 0.88);
    --surface-solid: #fffdf7;
    --line: rgba(23, 34, 29, 0.15);
    --line-strong: rgba(23, 34, 29, 0.28);
    --moss: #2f6651;
    --moss-dark: #183f32;
    --moss-light: #dbe9df;
    --signal: #c4462e;
    --signal-soft: #f7ddd4;
    --sun: #f2c66d;
    --blue: #2f5f8f;
    --blue-soft: #e1ebf4;
    --shadow: 0 20px 55px rgba(23, 34, 29, 0.11);
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --sans: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 3% 3%, rgba(242, 198, 109, 0.42), transparent 25rem),
        radial-gradient(circle at 96% 15%, rgba(79, 133, 108, 0.22), transparent 30rem),
        linear-gradient(145deg, #f8f4eb 0%, var(--paper) 55%, #e9eee6 100%);
    font-family: var(--sans);
    line-height: 1.62;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(23, 34, 29, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 34, 29, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 74%);
}

button,
input {
    font: inherit;
}

a {
    color: var(--moss);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--moss-dark);
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    padding: 9px 13px;
    color: white;
    background: var(--moss-dark);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

:focus-visible {
    outline: 3px solid var(--signal);
    outline-offset: 3px;
}

.docs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 68px;
    background: rgba(248, 244, 235, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px) saturate(1.15);
}

.docs-header-inner {
    display: flex;
    width: min(1480px, calc(100% - 36px));
    height: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 18px;
}

.docs-brand {
    display: inline-flex;
    min-width: 235px;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-weight: 730;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.docs-brand img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    box-shadow: 0 5px 16px rgba(24, 63, 50, 0.2);
}

.docs-brand-divider {
    width: 1px;
    height: 24px;
    margin-left: 2px;
    background: var(--line-strong);
}

.docs-brand-label {
    color: var(--moss);
    font-weight: 650;
}

.header-spacer {
    flex: 1;
}

.header-link,
.header-download,
.search-trigger,
.nav-toggle {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 680;
    text-decoration: none;
}

.header-link {
    color: var(--ink-soft);
}

.header-download {
    padding: 0 16px;
    color: #fffdf7;
    background: var(--moss-dark);
    box-shadow: 0 7px 18px rgba(24, 63, 50, 0.17);
}

.header-download:hover {
    color: white;
    background: #0f3328;
}

.search-trigger {
    min-width: 220px;
    padding: 0 12px 0 15px;
    color: var(--muted);
    background: rgba(255, 253, 247, 0.8);
    border: 1px solid var(--line-strong);
    cursor: pointer;
}

.search-trigger svg {
    width: 16px;
    height: 16px;
}

.search-trigger span {
    margin-right: auto;
}

.search-trigger kbd {
    padding: 1px 7px;
    color: var(--muted);
    background: var(--paper-deep);
    border: 1px solid var(--line);
    border-radius: 5px;
    font-family: var(--mono);
    font-size: 0.68rem;
}

.nav-toggle {
    display: none;
    width: 40px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line-strong);
    cursor: pointer;
}

.nav-toggle svg {
    width: 20px;
}

.docs-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 790px) 190px;
    width: min(1420px, calc(100% - 40px));
    margin: 0 auto;
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}

.docs-sidebar {
    position: sticky;
    top: 68px;
    height: calc(100vh - 68px);
    padding: 30px 12px 42px 0;
    overflow-y: auto;
    scrollbar-width: thin;
}

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

.nav-section-title {
    margin: 0 0 7px 12px;
    color: #68756d;
    font-size: 0.67rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-list {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 7px 11px;
    color: var(--ink-soft);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 560;
    line-height: 1.35;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--moss-dark);
    background: rgba(255, 253, 247, 0.62);
}

.nav-link[aria-current="page"] {
    color: var(--moss-dark);
    background: var(--surface-solid);
    border-color: var(--line);
    box-shadow: 0 5px 14px rgba(23, 34, 29, 0.06);
    font-weight: 720;
}

.nav-link[aria-current="page"]::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 8px 1px 0;
    content: "";
    background: var(--signal);
    border-radius: 50%;
}

.docs-content {
    min-width: 0;
    padding: 66px 0 100px;
}

.doc-hero {
    position: relative;
    margin-bottom: 56px;
    padding-bottom: 42px;
    border-bottom: 1px solid var(--line-strong);
}

.doc-hero::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70px;
    height: 3px;
    content: "";
    background: var(--signal);
}

.doc-kicker {
    display: flex;
    margin: 0 0 17px;
    align-items: center;
    gap: 9px;
    color: var(--moss-dark);
    font-size: 0.71rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.doc-kicker::before {
    width: 24px;
    height: 2px;
    content: "";
    background: var(--signal);
}

.docs-content h1,
.docs-content h2,
.docs-content h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 600;
}

.docs-content h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.75rem);
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.doc-lede {
    max-width: 700px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    line-height: 1.68;
}

.doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.doc-meta span {
    padding: 5px 10px;
    color: var(--moss-dark);
    background: rgba(219, 233, 223, 0.72);
    border: 1px solid rgba(47, 102, 81, 0.2);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 680;
}

.docs-content section {
    margin-top: 58px;
}

.docs-content h2 {
    position: relative;
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.docs-content h3 {
    margin: 34px 0 10px;
    font-size: 1.42rem;
    letter-spacing: -0.018em;
    line-height: 1.25;
}

.heading-anchor {
    position: absolute;
    width: 30px;
    margin-left: -34px;
    color: var(--signal);
    font-family: var(--sans);
    font-size: 0.8em;
    opacity: 0;
    text-decoration: none;
}

h2:hover .heading-anchor,
h3:hover .heading-anchor,
.heading-anchor:focus {
    opacity: 1;
}

.docs-content p {
    margin: 0 0 16px;
}

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

.docs-content li {
    margin: 7px 0;
    padding-left: 3px;
}

.docs-content li::marker {
    color: var(--signal);
    font-weight: 750;
}

.docs-content strong {
    color: var(--ink);
}

.docs-content code,
.path {
    padding: 0.16em 0.38em;
    color: var(--moss-dark);
    background: rgba(219, 233, 223, 0.7);
    border: 1px solid rgba(47, 102, 81, 0.14);
    border-radius: 5px;
    font-family: var(--mono);
    font-size: 0.86em;
    overflow-wrap: anywhere;
}

pre {
    margin: 18px 0 24px;
    padding: 19px 21px;
    overflow-x: auto;
    color: #e7efe9;
    background: var(--ink);
    border-radius: 13px;
    box-shadow: 0 12px 25px rgba(23, 34, 29, 0.13);
    font-family: var(--mono);
    font-size: 0.8rem;
    line-height: 1.65;
}

pre code {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: inherit;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doc-card {
    display: flex;
    min-height: 178px;
    padding: 21px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(23, 34, 29, 0.055);
    flex-direction: column;
    text-decoration: none;
}

a.doc-card {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

a.doc-card:hover {
    color: var(--ink);
    border-color: rgba(47, 102, 81, 0.4);
    box-shadow: 0 14px 32px rgba(23, 34, 29, 0.1);
    transform: translateY(-2px);
}

.doc-card-number,
.doc-card-label {
    color: var(--signal);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.doc-card h3 {
    margin: auto 0 6px;
    font-size: 1.28rem;
}

.doc-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.doc-card-arrow {
    margin-top: 16px;
    color: var(--moss);
    font-weight: 750;
}

.steps {
    display: grid;
    margin: 22px 0 26px;
    padding: 0;
    counter-reset: steps;
    list-style: none;
}

.steps > li {
    position: relative;
    min-height: 70px;
    margin: 0;
    padding: 5px 0 28px 58px;
    counter-increment: steps;
}

.steps > li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 36px;
    height: 36px;
    color: white;
    content: counter(steps);
    background: var(--moss-dark);
    border-radius: 50%;
    place-items: center;
    font-family: var(--mono);
    font-size: 0.77rem;
    font-weight: 750;
}

.steps > li:not(:last-child)::after {
    position: absolute;
    top: 39px;
    bottom: 2px;
    left: 17px;
    width: 1px;
    content: "";
    background: var(--line-strong);
}

.steps > li > strong:first-child {
    display: block;
    margin-bottom: 3px;
}

.callout {
    position: relative;
    margin: 24px 0;
    padding: 18px 20px 18px 52px;
    overflow: hidden;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 13px;
}

.callout::before {
    position: absolute;
    top: 19px;
    left: 19px;
    display: grid;
    width: 22px;
    height: 22px;
    color: white;
    content: "i";
    background: var(--moss);
    border-radius: 50%;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
}

.callout.warning {
    background: #fff5e1;
    border-color: rgba(156, 104, 16, 0.28);
}

.callout.warning::before {
    content: "!";
    background: #a66c11;
    font-family: var(--sans);
}

.callout.privacy {
    background: var(--blue-soft);
    border-color: rgba(47, 95, 143, 0.22);
}

.callout.privacy::before {
    content: "";
    background: var(--blue);
    box-shadow: inset 0 0 0 7px var(--blue), inset 0 0 0 8px white;
}

.callout p:last-child,
.callout ul:last-child {
    margin-bottom: 0;
}

.callout-title {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-weight: 750;
}

.table-wrap {
    margin: 20px 0 28px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 13px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 253, 247, 0.66);
    font-size: 0.82rem;
    line-height: 1.5;
}

th,
td {
    padding: 13px 15px;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    color: var(--moss-dark);
    background: rgba(219, 233, 223, 0.65);
    font-size: 0.7rem;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

tr:last-child td {
    border-bottom: 0;
}

.badge {
    display: inline-flex;
    padding: 3px 8px;
    align-items: center;
    color: var(--moss-dark);
    background: var(--moss-light);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 720;
    white-space: nowrap;
}

.badge.cloud {
    color: #764125;
    background: #f5dfcf;
}

kbd {
    display: inline-block;
    min-width: 2em;
    padding: 0.18em 0.48em;
    color: var(--ink);
    background: var(--surface-solid);
    border: 1px solid var(--line-strong);
    border-bottom-width: 2px;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(23, 34, 29, 0.12);
    font-family: var(--mono);
    font-size: 0.78em;
    text-align: center;
}

.doc-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 68px;
    padding-top: 26px;
    border-top: 1px solid var(--line-strong);
}

.doc-next a {
    display: block;
    padding: 17px;
    color: var(--ink);
    background: rgba(255, 253, 247, 0.62);
    border: 1px solid var(--line);
    border-radius: 11px;
    text-decoration: none;
}

.doc-next a:last-child {
    text-align: right;
}

.doc-next span {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 740;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.doc-toc {
    position: sticky;
    top: 68px;
    max-height: calc(100vh - 68px);
    padding: 72px 0 40px;
    overflow-y: auto;
}

.toc-title {
    margin: 0 0 10px;
    color: #68756d;
    font-size: 0.67rem;
    font-weight: 780;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.toc-list {
    margin: 0;
    padding: 0 0 0 12px;
    border-left: 1px solid var(--line-strong);
    list-style: none;
}

.toc-list li {
    margin: 0;
}

.toc-link {
    display: block;
    padding: 5px 0;
    color: var(--muted);
    font-size: 0.73rem;
    line-height: 1.35;
    text-decoration: none;
}

.toc-link:hover,
.toc-link[aria-current="location"] {
    color: var(--moss-dark);
}

.toc-link[aria-current="location"] {
    font-weight: 720;
}

.docs-footer {
    padding: 26px 0 34px;
    border-top: 1px solid var(--line);
}

.docs-footer-inner {
    display: flex;
    width: min(1420px, calc(100% - 40px));
    margin: 0 auto;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 0.73rem;
}

.docs-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

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

.nav-scrim {
    display: none;
}

.search-dialog {
    width: min(680px, calc(100% - 28px));
    max-height: min(720px, calc(100vh - 40px));
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--surface-solid);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(23, 34, 29, 0.3);
}

.search-dialog[open] {
    display: flex;
    flex-direction: column;
}

.search-dialog::backdrop {
    background: rgba(23, 34, 29, 0.44);
    backdrop-filter: blur(5px);
}

.search-box {
    display: flex;
    padding: 15px 17px;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid var(--line);
}

.search-box svg {
    width: 20px;
    color: var(--moss);
}

.search-input {
    min-width: 0;
    flex: 1;
    padding: 6px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1rem;
}

.search-close {
    width: 31px;
    height: 31px;
    color: var(--muted);
    background: var(--paper-deep);
    border: 0;
    border-radius: 7px;
    cursor: pointer;
}

.search-results {
    min-height: 0;
    max-height: calc(100vh - 160px);
    max-height: min(540px, calc(100dvh - 160px));
    margin: 0;
    padding: 10px;
    flex: 1 1 auto;
    overflow-y: auto;
    list-style: none;
}

.search-result {
    display: block;
    padding: 13px 14px;
    color: var(--ink);
    border-radius: 10px;
    text-decoration: none;
}

.search-result:hover,
.search-result:focus {
    color: var(--ink);
    background: var(--moss-light);
}

.search-result-title {
    display: flex;
    margin-bottom: 3px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 730;
}

.search-result-group {
    color: var(--moss);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-result p,
.search-empty {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.search-empty {
    padding: 34px 18px;
    text-align: center;
}

.search-help {
    padding: 9px 17px;
    color: var(--muted);
    background: var(--paper);
    border-top: 1px solid var(--line);
    font-size: 0.68rem;
}

.home-hero {
    padding: 38px 0 12px;
}

.home-hero .doc-hero {
    padding: 40px;
    overflow: hidden;
    color: #f8f4e9;
    background: var(--ink);
    border: 0;
    border-radius: 26px 26px 26px 6px;
    box-shadow: var(--shadow);
}

.home-hero .doc-hero::before {
    position: absolute;
    right: -80px;
    bottom: -140px;
    width: 330px;
    height: 330px;
    content: "";
    background: var(--signal);
    border-radius: 50%;
    opacity: 0.9;
}

.home-hero .doc-hero::after {
    display: none;
}

.home-hero .doc-kicker,
.home-hero h1,
.home-hero .doc-lede {
    position: relative;
    z-index: 1;
    color: inherit;
}

.home-hero .doc-kicker {
    color: #b7d4c3;
}

.home-hero .doc-lede {
    max-width: 610px;
    color: #cfdbd3;
}

.quick-path {
    display: flex;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.quick-path a {
    padding: 9px 14px;
    color: var(--ink);
    background: var(--sun);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
}

.quick-path a.secondary {
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

@media (max-width: 1180px) {
    .docs-layout {
        grid-template-columns: 225px minmax(0, 790px);
        justify-content: center;
    }

    .doc-toc {
        display: none;
    }

    .card-grid.three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    html {
        scroll-padding-top: 78px;
    }

    .docs-header {
        height: 62px;
    }

    .docs-header-inner {
        width: min(100% - 24px, 1480px);
        gap: 10px;
    }

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

    .docs-brand-divider,
    .docs-brand-label,
    .header-link,
    .search-trigger span,
    .search-trigger kbd {
        display: none;
    }

    .search-trigger {
        min-width: 40px;
        width: 40px;
        padding: 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .docs-layout {
        display: block;
        width: min(100% - 32px, 790px);
    }

    .docs-sidebar {
        position: fixed;
        top: 62px;
        bottom: 0;
        left: 0;
        z-index: 45;
        width: min(310px, calc(100vw - 54px));
        height: auto;
        padding: 24px 18px 36px;
        background: var(--surface-solid);
        box-shadow: 20px 0 50px rgba(23, 34, 29, 0.18);
        transform: translateX(-105%);
        transition: transform 190ms ease;
    }

    body.nav-open {
        overflow: hidden;
    }

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

    .nav-scrim {
        position: fixed;
        inset: 62px 0 0;
        z-index: 40;
        display: block;
        visibility: hidden;
        background: rgba(23, 34, 29, 0.36);
        opacity: 0;
        border: 0;
        transition: opacity 190ms ease, visibility 190ms;
    }

    body.nav-open .nav-scrim {
        visibility: visible;
        opacity: 1;
    }

    .docs-content {
        padding-top: 48px;
    }

    .home-hero {
        padding-top: 22px;
    }

    .docs-footer-inner {
        width: min(100% - 32px, 790px);
    }
}

@media (max-width: 600px) {
    .docs-brand span:first-of-type {
        display: none;
    }

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

    .header-download {
        padding: 0 12px;
        font-size: 0.74rem;
    }

    .docs-content {
        padding-bottom: 72px;
    }

    .docs-content h1 {
        font-size: clamp(2.85rem, 14vw, 4.5rem);
    }

    .doc-hero {
        margin-bottom: 42px;
        padding-bottom: 34px;
    }

    .home-hero .doc-hero {
        padding: 30px 24px;
        border-radius: 21px 21px 21px 5px;
    }

    .card-grid,
    .card-grid.three {
        grid-template-columns: 1fr;
    }

    .doc-card {
        min-height: 155px;
    }

    .doc-next {
        grid-template-columns: 1fr;
    }

    .doc-next a:last-child {
        text-align: left;
    }

    .docs-footer-inner {
        flex-direction: column;
    }

    .docs-footer-links {
        gap: 12px;
    }
}

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

    .docs-sidebar,
    .nav-scrim,
    a.doc-card {
        transition: none;
    }
}

@media print {
    body {
        background: white;
    }

    body::before,
    .docs-header,
    .docs-sidebar,
    .doc-toc,
    .docs-footer,
    .doc-next,
    .heading-anchor {
        display: none !important;
    }

    .docs-layout {
        display: block;
        width: 100%;
    }

    .docs-content {
        padding: 0;
    }

    .doc-hero {
        margin-bottom: 30px;
    }

    a {
        color: inherit;
    }

    .doc-card,
    .callout,
    .table-wrap {
        box-shadow: none;
        break-inside: avoid;
    }
}
