/* Shared styles for documentation-style pages: /privacy, /terms,
   and anything similar added later. Centered text column, generous
   line-height, plain typographic hierarchy. Uses site.css design
   tokens only — no new colors. */

.docs {
    max-width: 760px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    color: var(--fg);
}

.docs-head {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--panel-border);
}
.docs-head h1 {
    margin: 0 0 0.5rem;
    font-size: 1.7rem;
    font-weight: 600;
}
.docs-lead {
    margin: 0;
    color: var(--fg-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.docs-section {
    margin-top: 1.75rem;
}
.docs-section h2 {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--fg);
}
/* Sub-section headings inside a numbered section (e.g. "3.1 Server
   Logs" under "3. Information We Collect"). One step smaller than
   h2, slightly more breathing room above to mark a fresh sub-block. */
.docs-section h3 {
    margin: 1.4rem 0 0.55rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fg);
}
.docs-section p,
.docs-section ul,
.docs-section ol {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--fg);
}
.docs-section ul,
.docs-section ol {
    padding-left: 1.5rem;
}
.docs-section li {
    margin-bottom: 0.35rem;
}
.docs-section li::marker {
    color: var(--fg-muted);
}
.docs-section code {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    padding: 0.05em 0.35em;
    border-radius: 3px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    color: var(--accent);
}
.docs-section strong {
    color: var(--fg);
    font-weight: 600;
}

.docs-stamp {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px dotted var(--panel-border);
    color: var(--fg-muted);
    font-size: 0.8rem;
    text-align: right;
}

@media (max-width: 600px) {
    .docs { padding: 1.5rem 1rem 3rem; }
    .docs-head h1 { font-size: 1.4rem; }
}
