/* landing/css/legal.css
   Shared styles for the legal pages (/legal/privacy/, /legal/terms/).
   Extracted from a byte-identical inline <style> block previously
   duplicated on both pages. Loaded after v4b.css. */

.legal-last-modified {
  margin: 20px auto 0;
  font-size: 0.875rem;
  color: var(--ink-3);
  text-align: center;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}
.legal-container .notice {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.legal-container h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.legal-container h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.legal-container p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1rem;
}
.legal-container ul, .legal-container ol {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-container li {
  margin-bottom: 0.5rem;
}
/* body.zs26 a (redesign.css) sets color:inherit + text-decoration:none at
   specificity (0,1,2); .legal-container needs the extra body.zs26 qualifier
   to outrank it, or these never render green/underlined. */
body.zs26 .legal-container a {
  color: var(--green);
  text-decoration: underline;
}
.legal-container .all-caps-notice {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1rem;
}
