.wrapper {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  padding: 4rem 1.5rem;

  & .legal {
    width: min(100%, 72ch);
    line-height: 1.8;

    & h1 {
      font-size: clamp(1.75rem, 3.5vw, 2.25rem);
      margin-bottom: 1.25rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--border);
      letter-spacing: -0.01em;
    }

    & h2 {
      font-size: clamp(1.15rem, 2.5vw, 1.35rem);
      margin-top: 2.5rem;
      margin-bottom: 0.75rem;
      letter-spacing: 0.01em;
    }

    & h3 {
      font-size: 1.05rem;
      margin-top: 1.75rem;
      margin-bottom: 0.5rem;
    }

    & p {
      margin-bottom: 1.25rem;
      color: var(--dark-gray);
      font-size: 0.92rem;
    }

    & ul, & ol {
      padding-left: 1.5rem;
      margin-bottom: 1.25rem;

      & li {
        margin-bottom: 0.5rem;
        color: var(--dark-gray);
        font-size: 0.92rem;
        line-height: 1.6;
      }
    }

    & ul {
      list-style-type: disc;
    }

    & ol {
      list-style-type: decimal;
    }

    & a {
      text-decoration: underline;
      text-decoration-color: rgba(255, 255, 255, 0.2);
      text-underline-offset: 3px;
      transition: text-decoration-color var(--transition-base);

      &:hover {
        text-decoration-color: var(--foreground);
      }
    }
  }
}
