/* PLAIN PAGE — generic WP pages (Privacy Policy, Terms, etc.) that fall through
   to page.twig. The body typography is inherited from article.css (.article /
   .article-body); this file only adds the title band and the top spacing needed
   to clear the absolutely-positioned .site-header. */

.page-plain-head {
    max-width: 760px;            /* matches .article-body column */
    margin: 0 auto;
    padding: clamp(140px, 16vw, 200px) 24px clamp(20px, 3vw, 36px);
}

.page-plain-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--clr-navy, #1a1f36);
}

@media (max-width: 768px) {
    .page-plain-head {
        padding-left: 20px;
        padding-right: 20px;
    }
}
