.legal-page {
  min-height: 100vh;
  background: #fff;
}

.legal-header {
  display: flex;
  width: min(calc(100% - 36px), 1080px);
  margin: 0 auto;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:first-child {
  width: fit-content;
  line-height: 0;
  text-decoration: none;
}

.legal-header .wordmark {
  font-size: 26px;
}

.legal-header > a:last-child {
  font-size: 14px;
  text-underline-offset: 4px;
}

.legal-content {
  width: min(calc(100% - 36px), 1080px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 0;
}

.legal-content h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.legal-date {
  margin: 26px 0 65px;
  color: var(--muted);
  font-size: 14px;
}

.legal-warning {
  display: grid;
  margin: 55px 0 65px;
  grid-template-columns: 0.45fr 1fr;
  gap: 28px;
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  background: var(--blue);
}

.legal-warning strong {
  font-weight: 500;
  text-transform: uppercase;
}

.legal-warning p {
  margin: 0;
}

.legal-content section {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-content section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.legal-content section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.legal-copy {
  display: grid;
  gap: 16px;
}

.legal-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .legal-header > a:first-child {
    width: fit-content;
  }

  .legal-warning,
  .legal-content section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
