/* Public shell (/public.php) — neutral, readable */

/* Master tokens for Torchbearer shells when no per-site pack CSS is linked (LegalHtmlShell fallback). */
:root {
  --tb-bg: #f4f6fa;
  --tb-text: #1a1f2e;
  --tb-muted: #5c657a;
  --tb-accent: #1e3a5f;
  --tb-rule: #d8dee8;
}

body.public-shell {
  margin: 0;
  min-height: 100vh;
  background: #f4f6fa;
  color: #1a1f2e;
  font: 16px/1.5 system-ui, sans-serif;
}

.public-wrap {
  padding: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.public-topbar {
  background: #fff;
  border-bottom: 1px solid #d8dee8;
  padding: 12px 20px;
}

.public-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

a.public-nav-link {
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

a.public-nav-link:hover {
  text-decoration: underline;
}

.public-main {
  padding: 28px 20px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.public-main h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}

.muted {
  color: #5c657a;
}

.public-wrap .btn {
  display: inline-block;
  padding: 8px 14px;
  background: #1e3a5f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.public-wrap .btn:hover {
  background: #2a5080;
}
