/* Tsengdok Monastery — office module
 *
 * Self-hosted rather than loaded from a CDN: the CSP for this host forbids
 * external origins, since a compromised CDN could otherwise reach an
 * authenticated administrative session.
 */

:root {
  --bg: #faf9f7;
  --fg: #2b2b2b;
  --muted: #6b6b6b;
  --accent: #8c1d18;
  --rule: #e0ddd8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1b1a;
    --fg: #e8e6e3;
    --muted: #9a9793;
    --accent: #d98b86;
    --rule: #35332f;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 3rem 1.25rem;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  display: flex;
  justify-content: center;
}

main {
  max-width: 30rem;
  width: 100%;
}

h1 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.sub {
  margin: 0.125rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 1.75rem 0;
}

.ok {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.checks {
  margin: 0 0 1.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.checks li { margin: 0.2rem 0; }

.note {
  font-size: 0.875rem;
  color: var(--muted);
  border-left: 2px solid var(--rule);
  padding-left: 0.85rem;
  margin: 0 0 1.75rem;
}

.stamp {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
