/* Shared legal-document layout. */
body.legal-page {
  min-width: 0px;
}
.site-header.legal-header {
  background: var(--white);
  color: var(--ink);
}
.legal-header .logo {
  filter: none;
}
.legal-header .shell {
  width: calc(100% - max(24px, var(--safe-inline))*2);
  max-width: 70ch;
  font-size: var(--type-support);
}
.legal-header .header-inner {
  height: auto;
  padding-top: 48px;
}
.legal-home {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.legal-content {
  width: calc(100% - max(24px, var(--safe-inline))*2);
  max-width: 70ch;
  margin: 48px auto 80px;
  font-size: var(--type-support);
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.legal-content h1 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.legal-content h2 {
  font-size: var(--type-large);
  line-height: 1.35;
  margin: 32px 0px 12px;
  letter-spacing: -0.01em;
}
.legal-content address {
  font-style: normal;
}
.legal-content .draft-note {
  color: var(--muted);
}
@media (max-width: 600px) {
  .legal-header .shell {
    width: calc(100% - max(24px, var(--safe-inline))*2);
  }
  .legal-header .header-inner {
    height: auto;
    padding-top: 32px;
  }
  .legal-header .logo {
    width: 210px;
    max-width: 100%;
  }
  .legal-content {
    margin-block: 36px 64px;
  }
  .legal-content h1 {
    font-size: 1.75rem;
  }
}
