/* Styles for the legal pages (privacy.html, terms.html) only. They reuse
   index.css for the shell - colours, fonts, nav, footer - and add nothing but
   the reading column, which the rest of the site has no use for. */

.legal-nav {
    position: static;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.legal-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 5rem;
}

.legal-inner h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 1.6rem;
}

.legal-inner h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    margin: 2.4rem 0 0.7rem;
}

.legal-inner p {
    /* ~65 characters is where running text stays comfortable to read */
    line-height: 1.75;
    margin-bottom: 0.9rem;
}

.legal-inner a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-meta {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}

.legal-updated {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 640px) {
    .legal-page { padding: 2.5rem 1.2rem 3.5rem; }
}
