/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.privacy-page {
    overflow: hidden;
}

/* ============================================================
   HERO
   ============================================================ */

.privacy-hero {
    padding-bottom: clamp(2rem, 5vw, 4rem);
    background: var(--cream);
}

.privacy-hero .section-head {
    max-width: 850px;
}

.privacy-hero h1 {
    margin-top: .6rem;
}

.privacy-updated {
    margin-top: 1.2rem;
    font-size: .85rem;
    color: var(--muted);
}


/* ============================================================
   CONTENT
   ============================================================ */

.privacy-content {
    padding-top: clamp(1rem, 3vw, 2rem);
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(0, 900px);
    justify-content: center;
}

.privacy-main {
    width: 100%;
}


/* ============================================================
   POLICY SECTION
   ============================================================ */

.privacy-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    border-top: 1px solid var(--cream-line);
}

.privacy-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.privacy-section h2 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
}

.privacy-section-content {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.privacy-section-content p {
    margin: 0 0 1rem;
}

.privacy-section-content p:last-child {
    margin-bottom: 0;
}

.privacy-section-content ul,
.privacy-section-content ol {
    margin: 0 0 1.2rem;
    padding-left: 1.4rem;
}

.privacy-section-content li {
    margin-bottom: .5rem;
}

.privacy-section-content a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-section-content strong {
    color: var(--ink);
    font-weight: 700;
}


/* ============================================================
   CTA
   ============================================================ */

.privacy-cta {
    padding-top: clamp(2rem, 5vw, 4rem);
}

.privacy-cta .eyebrow {
    justify-content: center;
}

.privacy-cta-inner {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--cream);
    border: 1px solid var(--cream-line);
    text-align: center;
}

.privacy-cta-inner h2 {
    margin-top: .6rem;
}

.privacy-cta-inner .lede {

    margin: 1rem auto 0;
}

.privacy-cta-inner .btn {
    margin-top: 1.5rem;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 767px) {

    .privacy-section {
        padding: 1.5rem 0;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-section-content {
        font-size: .95rem;
        line-height: 1.7;
    }

    .privacy-cta-inner {
        padding: 2rem 1.25rem;
    }

}