/* ── Body ── */
body { line-height: 1.7; }

/* ── Page layout ── */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* ── Page header ── */
.page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 0.4rem; }

.page-header h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-header .meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Summary callout ── */
.summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.summary strong { color: var(--text); }

/* ── Policy sections ── */
.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--muted);
}

.policy-section p + p {
  margin-top: 0.75rem;
}

.policy-section a { color: var(--accent); }
