/* status/style.css — F2.C3.
 *
 * The status page imports /brand.css (the F4 design tokens deployed
 * alongside by the `status` Ansible role) so the status site picks up
 * the same brand-accent / page-background / font choices the www site
 * uses. This file owns the status-specific layout: a single column
 * around 880px, comfortable line height, and a couple of accent rules
 * for the top-of-page status banner.
 *
 * Loaded by every page the renderer emits (status/build/*.html); the
 * link in the page chrome is `<link rel="stylesheet" href="/style.css">`
 * with brand.css loaded first so :root variables resolve.
 *
 * Output stability: this file is byte-stable (no timestamps, no
 * generated content); the Ansible copy task sees a no-change deploy.
 */

body {
    margin: 0;
    padding: 2rem 1.25rem;
    background: var(--brand-bg-page);
    color: var(--brand-fg-primary);
    font-family: var(--brand-font-family);
    line-height: 1.6;
}

.status-doc {
    max-width: 880px;
    margin: 0 auto;
}

.status-doc h1 {
    color: var(--brand-fg-primary);
    margin-top: 0;
}

.status-doc h2 {
    color: var(--brand-fg-primary);
    margin-top: 2rem;
}

.status-doc h3 {
    color: var(--brand-fg-primary);
}

.status-doc p,
.status-doc li {
    line-height: 1.6;
}

.status-doc a {
    color: var(--brand-link);
}

.status-doc code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.1em 0.35em;
    border-radius: 0.25em;
}

.status-doc table {
    border-collapse: collapse;
    margin: 1rem 0;
    width: 100%;
}

.status-doc table th,
.status-doc table td {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.75rem;
    text-align: left;
    vertical-align: top;
}

.status-doc table th {
    background: rgba(255, 255, 255, 0.04);
}

.status-doc blockquote {
    border-left: 3px solid var(--brand-accent);
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    color: var(--brand-fg-muted);
}

/* The big "All systems operational" banner — the first blockquote on
 * index.md renders as a status-line callout. The operator phrasing
 * controls the colour mood (good / investigating / disruption /
 * maintenance) via the text, not via the markup; we keep the banner
 * style neutral and let the brand-accent border carry the eye. */
.status-doc blockquote:first-of-type {
    font-size: 1.25rem;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.status-doc footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--brand-fg-muted);
    font-size: 0.9rem;
}

.status-doc footer a {
    color: var(--brand-link);
}
