html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-footer {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 10vh, 4rem) 12px 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(148, 163, 184, 0.78);
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
}

.legal-footer::before {
  content: "";
  display: block;
  margin-bottom: clamp(1rem, 4vh, 2.25rem);
}

.legal-footer::before,
.legal-footer p {
  margin: 0;
  color: inherit;
}

body > .legal-footer {
  margin-top: auto;
}

@media (min-width: 640px) {
  .legal-footer {
    align-items: flex-end;
    text-align: right;
  }
}
