/* =========================
   PRIVACY POLICY PAGE
========================= */

.privacy-coming-soon,
.privacy-policy-page {
    text-align: center;
}

/* wrapper */
.privacy-content {
    padding-top: 1rem;
}

/* =========================
   SECTION HEADINGS
========================= */

.privacy-subtitle {
    font-family: "bebas-neue", sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: 0.02em;

    margin: 3rem 0 1.25rem;
}

/* =========================
   BODY TEXT
========================= */

.privacy-content p {
    font-family: "inter-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wght" 400;
    font-size: 1.1rem;
    line-height: 1.8;

    max-width: 52rem;
    margin: 0 auto 1.75rem;

    opacity: 0.92;
}

/* =========================
   SECTION SPACING (MAIN FIX)
========================= */

/* stronger separation between full sections */
.privacy-content h3:not(:first-of-type) {
    margin-top: 6.5rem;
}

/* keeps heading visually attached to its section content */
.privacy-content h3 {
    margin-bottom: 1.25rem;
}

/* ensures last paragraph in a section creates a clean block break */
.privacy-content p:last-of-type {
    margin-bottom: 3.5rem;
}

/* =========================
   RIGHTS / PRIVACY LINKS
========================= */

.rights-links {
    color: inherit;              /* same color as surrounding text */
    text-decoration: underline;  /* clear link affordance */
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;

    transition: all 0.25s ease;
}

/* hover state = same glow style as footer links */
.rights-links:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    opacity: 1;
}

/* optional: keyboard accessibility */
.rights-links:focus-visible {
    outline: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.75);
}

/* =========================
   FOOTER NOTE
========================= */

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.65;
    margin-top: 5rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 40em) {

    .privacy-subtitle {
        font-size: 2rem;
        margin: 2.5rem 0 1rem;
    }

    .privacy-content p {
        font-size: 1rem;
        line-height: 1.75;

        padding: 0 1rem;
        max-width: 100%;

        margin: 0 auto 1.5rem;
    }

    .privacy-content h3:not(:first-of-type) {
        margin-top: 5rem;
    }

    .privacy-content h3 {
        margin-bottom: 1rem;
    }

    .privacy-content p:last-of-type {
        margin-bottom: 2.5rem;
    }

    .privacy-note {
        font-size: 0.85rem;
        margin-top: 4rem;
    }
}

/* =========================
   TABLET
========================= */

@media (min-width: 40em) and (max-width: 64em) {

    .privacy-subtitle {
        font-size: 2.2rem;
    }

    .privacy-content p {
        font-size: 1.05rem;
        line-height: 1.78;
        max-width: 44rem;
    }

    .privacy-content h3:not(:first-of-type) {
        margin-top: 5.75rem;
    }

    .privacy-content p:last-of-type {
        margin-bottom: 3rem;
    }
}