/* ==========================================================================
   Privacy Policy — page styles
   Figma node: 6951:21699
   Identical layout to Website Disclaimer (4925:41586).
   Extra element: pp-intro (body text before numbered sections).
   ========================================================================== */

/* Header: see legal-page-header.css (enqueued via functions.php) */

/* ==========================================================================
   Page content
   ========================================================================== */

/* Section wrapper — bg-white, px-[60px] py-[80px] */
.pp-section {
    background-color: #ffffff;
    padding: 80px 60px;
}

/* Inner — flex col, gap-[40px], items-center */
.pp-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

/* H1 — Freight Neo Book 48px, lh 1, centred */
.pp-section__title {
    font-family: 'freight-neo-pro', 'Freight Neo', Georgia, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0em;
    color: #1c1c1c;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Text container — w-[874px], flex col, gap-[30px] */
.pp-text-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 874px;
    max-width: 100%;
}

/* Company name — Geist Medium 20px, lh 1.1 */
.pp-company {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.1;
    color: #1c1c1c;
    margin: 0;
}

/* Last updated — Geist Medium 17px, lh 1.1 */
.pp-last-updated {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.1;
    color: #1c1c1c;
    margin: 0;
}

/* Intro text — Geist Light 16px, lh 1.39 (before numbered sections) */
.pp-intro p {
    font-family: 'Geist', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.39;
    color: #1c1c1c;
    margin: 0 0 0.75em;
}

.pp-intro p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Content sections — repeater output
   ========================================================================== */

.pp-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pp-content__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Section heading — <h3> output by PHP → Geist Medium 17px, lh 1.1 */
.pp-content__section-heading {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.1;
    color: #1c1c1c;
    margin: 0;
}

/* WYSIWYG body — paragraphs */
.pp-content__section-body p {
    font-family: 'Geist', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.39;
    color: #1c1c1c;
    margin: 0 0 0.75em;
}

.pp-content__section-body p:last-child {
    margin-bottom: 0;
}

/* Bullet lists */
.pp-content__section-body ul {
    list-style: disc;
    padding-left: 1.5em;
    margin: 0 0 0.75em;
}

.pp-content__section-body ul li {
    font-family: 'Geist', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.39;
    color: #1c1c1c;
    margin-bottom: 0.25em;
}

.pp-content__section-body ul li:last-child {
    margin-bottom: 0;
}

/* Ordered lists */
.pp-content__section-body ol {
    padding-left: 1.5em;
    margin: 0 0 0.75em;
}

.pp-content__section-body ol li {
    font-family: 'Geist', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.39;
    color: #1c1c1c;
    margin-bottom: 0.25em;
}

/* Bold / strong */
.pp-content__section-body strong,
.pp-content__section-body b {
    font-weight: 700;
}

/* ==========================================================================
   Responsive — ≤1200px
   ========================================================================== */
@media (max-width: 1200px) {
    .pp-section {
        padding: 80px 40px;
    }
}

/* ==========================================================================
   Responsive — ≤768px
   ========================================================================== */
@media (max-width: 768px) {
    .pp-section {
        padding: 60px 16px;
    }

    .pp-section__title {
        font-size: 36px;
    }

    .pp-text-container {
        width: 100%;
    }

    .pp-company {
        font-size: 18px;
    }
}
