/* L1 — shared styles for /enforcement case pages.
 *
 * Source of truth for case-page brand tokens (navy, amber, red),
 * typography (DM Sans body + DM Serif Display headlines), navigation,
 * hero/amount/citation, content sections, related-cases box, CTA
 * panel, source attribution, footer, and mobile breakpoint.
 *
 * Each case page links this file via:
 *   <link rel="stylesheet" href="/enforcement/case.css">
 *
 * The /enforcement/index.html keeps its own inline styles (different
 * layout: filter chips + case-card grid). Index-specific rules belong
 * inline in that file, not here, to avoid coupling.
 */

:root {
  --navy: #0f1729;
  --amber: #e5a211;
  --teal: #14b8a6;
  --red: #b91c1c;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.65;
}

a { color: var(--navy); }

nav.top {
  padding: 18px 32px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.top a.brand {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--navy);
}
nav.top a.brand b { color: var(--amber); }
nav.top .right a {
  margin-left: 24px;
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray-600); }

.amount {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.citation {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

p { font-size: 16px; }

.related {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: 10px;
}
.related h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin: 0 0 12px;
}
.related ul { margin: 0; padding-left: 20px; }
.related li {
  margin-bottom: 6px;
  font-size: 15px;
}

.cta {
  margin: 36px 0 24px;
  padding: 24px 28px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
}
.cta b { color: var(--amber); }
.cta a.button {
  display: inline-block;
  margin-top: 12px;
  background: var(--amber);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.source {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-600);
}

@media (max-width: 640px) {
  .amount { font-size: 40px; }
  h1 { font-size: 24px; }
}
