:root {
    --document-scroll-offset: 96px;

    --document-primary: #f97316;
    --document-primary-soft: #fff7ed;
    --document-primary-strong: #c2410c;

    --document-border: #e5e7eb;
    --document-text: #111827;
    --document-body-text: #1f2937;
    --document-muted: #6b7280;

    --document-card-border: rgba(15, 23, 42, 0.06);
    --document-table-head-bg: #f9fafb;
}

/* Hero */

.document-hero {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.document-hero-content {
    max-width: 840px;
}

/* Layout */

.document-page {
    min-height: 60vh;
}

.document-card {
    border: 1px solid var(--document-card-border) !important;
}

.document-policy-badge {
    background-color: var(--document-primary-soft);
    color: var(--document-primary-strong);
    border: 1px solid #fed7aa;
}

/* Table of contents */

@media (min-width: 992px) {
    .document-toc {
        position: sticky;
        top: var(--document-scroll-offset);
    }
}

.document-toc-content {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    font-size: 0.925rem;
}

.document-toc-content ul,
.document-toc-content ol {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.document-toc-content li {
    margin: 0;
    padding: 0;
}

.document-toc-content p {
    margin-bottom: 0.5rem;
}

.document-toc-content p:last-child {
    margin-bottom: 0;
}

.document-toc-content a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.45;
    word-break: keep-all;
    text-decoration: none;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

.document-toc-content a:hover {
    background-color: #f9fafb;
    color: var(--document-text);
}

.document-toc-content a.active {
    background-color: var(--document-primary-soft);
    color: var(--document-primary-strong);
    font-weight: 700;
}

/* Body */

.document-body {
    color: var(--document-body-text);
    font-size: 16px;
    line-height: 1.9;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.document-body > *:first-child {
    margin-top: 0;
}

.document-body > *:last-child {
    margin-bottom: 0;
}

.document-body h1,
.document-body h2,
.document-body h3,
.document-body h4 {
    scroll-margin-top: var(--document-scroll-offset);
    color: var(--document-text);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.document-body h1 {
    margin: 0 0 28px;
    font-size: 30px;
}

.document-body h2 {
    margin: 48px 0 18px;
    padding-top: 6px;
    font-size: 27px;
}

.document-body h3 {
    margin: 36px 0 14px;
    font-size: 22px;
}

.document-body h4 {
    margin: 28px 0 12px;
    font-size: 18px;
}

.document-body p {
    margin-bottom: 18px;
}

.document-body ul,
.document-body ol {
    margin: 12px 0 24px;
    padding-left: 22px;
}

.document-body li {
    margin: 6px 0;
    padding-left: 2px;
}

.document-body a {
    color: #2563eb;
    font-weight: 650;
    text-underline-offset: 3px;
}

.document-body strong,
.document-body b {
    color: var(--document-text);
    font-weight: 800;
}

.document-body hr {
    height: 1px;
    margin: 36px 0;
    border: 0;
    background-color: var(--document-border);
}

.document-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.document-body table {
    width: 100%;
    margin: 22px 0 30px;
    border: 1px solid var(--document-border);
    border-collapse: collapse;
    font-size: 15px;
}

.document-body th,
.document-body td {
    border: 1px solid var(--document-border);
    padding: 12px 14px;
    vertical-align: top;
}

.document-body th {
    background-color: var(--document-table-head-bg);
    color: var(--document-text);
    font-weight: 800;
}

.document-body blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--document-primary);
    border-radius: 0 12px 12px 0;
    background-color: var(--document-primary-soft);
    color: #374151;
}

/* Footer meta */

.document-meta-item {
    min-height: 38px;
}

/* Tablet */

@media (max-width: 991.98px) {
    :root {
        --document-scroll-offset: 82px;
    }

    .document-toc-content {
        max-height: 260px;
    }

    .document-body {
        font-size: 15.5px;
        line-height: 1.86;
    }

    .document-body h2 {
        margin-top: 40px;
        font-size: 24px;
    }

    .document-body h3 {
        font-size: 20px;
    }
}

/* Mobile */

@media (max-width: 575.98px) {
    .document-body {
        font-size: 15px;
        line-height: 1.82;
    }

    .document-body h2 {
        margin-top: 36px;
        font-size: 22px;
    }

    .document-body h3 {
        font-size: 19px;
    }

    .document-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .document-meta-list {
        flex-direction: column;
    }

    .document-meta-item {
        justify-content: space-between;
        width: 100%;
    }
}