/* Legal pages: a reading column, not a landing. Narrower measure, denser
   headings, no decoration that competes with the text. */

.legal { padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 7vw, 80px); }

.legal__wrap { max-width: 760px; }

.legal h1 {
  font-size: clamp(26px, 4.2vw, 38px);
  margin-bottom: 8px;
}

.legal__meta {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 28px;
}

.legal__intro {
  font-size: 16px;
  color: var(--ink-2);
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 34px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legal h2:first-of-type { border-top: none; padding-top: 0; }

.legal p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
}

.legal ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
}

.legal ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line-2);
}

.legal b { font-weight: 600; }
