/*
  BeRaccool — legal/prose pages (Privacy Policy, etc.)
  Reuses the design tokens defined in style.css.
*/

.legal {
  padding-block: clamp(48px, 8vw, 88px);
}

.legal-container {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-top: 10px;
  margin-bottom: 6px;
}

.legal-updated {
  color: var(--contour);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal p {
  color: var(--contour);
  font-size: 1rem;
  line-height: 1.7;
}

.legal p + p {
  margin-top: 14px;
}

.legal strong {
  color: var(--black);
}

.legal a {
  color: var(--green-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--contour);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
