/* legal.css — shared styles for the lightweight info pages linked from
   the footer (About, Contact, Privacy, Terms). */

.legal-nav {
  padding: 18px 0;
  border-bottom: 1px solid var(--surface-border);
}
.legal-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 28px;
  height: 28px;
}
.back-link {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.back-link:hover {
  color: var(--ink);
}

.legal-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}
.legal-shell h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin: 0 0 8px;
}
.legal-shell .updated {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-bottom: 40px;
}
.legal-shell h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 36px 0 10px;
}
.legal-shell p,
.legal-shell li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.legal-shell ul {
  padding-left: 20px;
}
.legal-shell a.inline {
  color: var(--violet-soft);
  text-decoration: underline;
}
