/* Running text for the legal pages. German text on an English site, so the
   measure is set for comfortable reading rather than the display sizes used
   elsewhere. */
.legal-content {
  max-width: 1440px;
  margin: auto;
  padding: clamp(56px, 9vh, 104px) var(--gutter) clamp(72px, 12vh, 140px);
}
.legal-content h1 {
  /* "Datenschutzerklärung" is one long word: it has to be allowed to break, and
     the lower bound has to stay small enough for a 375px phone. */
  font-size: clamp(30px, 7vw, 72px);
  line-height: 1.08;
  max-width: 16ch;
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: break-word;
}
.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.legal-body {
  max-width: 68ch;
  margin-top: clamp(40px, 6vh, 72px);
}
.legal-body section + section {
  margin-top: clamp(32px, 5vh, 56px);
}
.legal-body h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  margin-bottom: 16px;
}
.legal-body p {
  font-size: 16px;
  line-height: 1.65;
}
.legal-body p + p,
.legal-body ul + p,
.legal-body p + ul {
  margin-top: 14px;
}
.legal-body ul {
  margin-top: 14px;
  padding-left: 20px;
  list-style: disc;
}
.legal-body li {
  font-size: 16px;
  line-height: 1.65;
}
.legal-body li + li {
  margin-top: 8px;
}
.legal-body a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-content .primary-action {
  margin-top: clamp(40px, 6vh, 64px);
}
@media (max-width: 400px) {
  .legal-content {
    padding-top: 48px;
  }
}
