.legal-updated {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-accent-text);
    margin: 0 0 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

/* Numbered clauses via a counter, so the content stays free of hardcoded
   numbers and reordering a section can't leave a gap. */
.legal-body {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: clause;
    max-width: var(--text-max-width);
}

.legal-block {
    counter-increment: clause;
    margin-bottom: 3rem;
}

.legal-block-title {
    font-size: 1.125rem;
    margin: 0 0 1rem;
    line-height: 1.2;
    display: flex;
    gap: 0.875rem;
}

.legal-block-title::before {
    content: counter(clause) ".";
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--color-accent);
    flex: 0 0 auto;
    padding-top: 0.15em;
}

.legal-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
}

.legal-points {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.legal-points li { padding-block: 0.25rem; }
.legal-points li::marker { color: var(--color-accent); }
