/* Shared prose layout for PrivacyPolicy.cshtml, TermsOfService.cshtml, and
   DataPolicy.cshtml - built on the same CSS variables as landing.css (see
   docs/coding-standards.md: one CSS file per page, this one shared by three
   structurally identical legal pages rather than duplicated three times). */

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-primary);
    margin: 40px 0 12px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-disclaimer {
    margin-top: 48px;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 13px;
}
