/* ── Content Pages: Privacy Policy & About Us ── */

/* Hero */
.content-page-hero {
    background: #f8f8f8;
    padding: 5rem 2rem 4rem;
    text-align: center;
}
.content-page-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.content-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #555;
    background: #eeeeee;
    border: 1px solid #dddddd;
    border-radius: 999px;
    padding: .3rem .9rem;
    margin-bottom: 1.25rem;
}
.content-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #121212;
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0 0 .75rem;
}
.content-page-meta {
    font-size: .78rem;
    color: #888;
    letter-spacing: .03em;
}

/* Body wrapper */
.content-page-body {
    padding: 4rem 2rem 6rem;
    background: #ffffff;
}
.content-page-container {
    max-width: 760px;
    margin: 0 auto;
}

/* Empty state */
.content-page-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--ph-text-muted);
}
.content-page-empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: .4;
}
.content-page-empty p {
    font-size: .9rem;
    margin: 0;
}

/* Rich text typography */
.content-page-rich {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: #333;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2.5rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.content-page-rich h1,
.content-page-rich h2,
.content-page-rich h3,
.content-page-rich h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #121212;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: .65rem;
}
.content-page-rich h1 { font-size: 1.9rem; }
.content-page-rich h2 { font-size: 1.5rem; border-bottom: 1px solid #e5e5e5; padding-bottom: .4rem; }
.content-page-rich h3 { font-size: 1.2rem; }
.content-page-rich h4 { font-size: 1rem; font-weight: 700; font-family: 'Inter', system-ui, sans-serif; letter-spacing: .01em; }
.content-page-rich p {
    margin: 0 0 1.25rem;
    color: #555;
}
.content-page-rich ul,
.content-page-rich ol {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
    color: #555;
}
.content-page-rich li { margin-bottom: .4rem; }
.content-page-rich a {
    color: #555;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.content-page-rich a:hover { color: #121212; }
.content-page-rich strong { color: #121212; font-weight: 600; }
.content-page-rich blockquote {
    border-left: 3px solid #aaa;
    padding: .75rem 1.25rem;
    margin: 1.5rem 0;
    background: #f5f5f5;
    border-radius: 0 6px 6px 0;
    color: #666;
    font-style: italic;
}
.content-page-rich hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 2rem 0;
}

@media (max-width: 640px) {
    .content-page-hero { padding: 3.5rem 1.25rem 3rem; }
    .content-page-body  { padding: 2.5rem 1.25rem 4rem; }
}

/* ── Mobile Navbar (match Index page) ── */
@media (max-width: 767px) {
    .pub-nav {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "left brand right";
        padding: 0 .75rem;
    }

    .pub-nav-left {
        display: flex;
        grid-area: left;
    }

    .pub-nav-brand {
        grid-area: brand;
        justify-self: center;
    }

    .pub-nav-right {
        grid-area: right;
        gap: .5rem;
    }

    .pub-nav-link {
        display: inline-flex !important;
        font-size: .75rem;
        color: #fff;
    }

    .pub-nav-brand .brand-text {
        display: none;
    }
}
