.legal {
    min-height: 100vh;
    padding: 8rem 2rem 5rem;
}

.legal__inner {
    max-width: 680px;
    margin: 0 auto;
}

.legal__back {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: color 150ms;
}

.legal__back:hover {
    color: var(--text);
}

.legal h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 400;
    margin-bottom: .5rem;
}

.legal__sub {
    font-size: .82rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.legal__section {
    margin-bottom: 2.25rem;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid var(--line);
}

.legal__section:last-child {
    border-bottom: none;
}

.legal__section h2 {
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.legal__section h3 {
    font-size: .85rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-top: 1rem;
    margin-bottom: .5rem;
    letter-spacing: .08em;
}

.legal__section p {
    font-size: .88rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.legal__section p+p {
    margin-top: .75rem;
}

.legal__section ul {
    list-style: none;
    margin-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.legal__section ul li {
    font-size: .85rem;
    color: var(--text-dim);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.6;
}

.legal__section ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    opacity: .45;
}

.legal__section a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: border-color 150ms;
}

.legal__section a:hover {
    border-color: var(--text);
}
