/* ==========================================================================
   Privacy Policy page styles.

   EVERY rule in this file is scoped to .pm-privacy, the wrapper <div> around
   the page body in privacy.php. This is load-bearing, not tidiness:
   .article__block and .dot_list are styled globally from main.css
   (scss/pages/_privacy.scss) and are reused by other legal pages, so a bare
   selector here would restyle them site-wide. Never write an unprefixed
   selector below.

   Mirrors css/terms.css - same measure, rhythm, heading ramp and hanging
   markers - so the two legal pages read as one pair. If you change the look
   of one, change the other.
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. Document shell - reading measure and page rhythm
   -------------------------------------------------------------------------- */
.pm-privacy .lagel__wraper {
    padding: 70px 0 90px;
}

.pm-privacy .pm-privacy__doc {
    max-width: 900px;
    margin: 0 auto;
    color: #2c3742;
    font-size: 16px;
    line-height: 1.75;
}

.pm-privacy .pm-privacy__doc p {
    margin-bottom: 18px;
    font-size: inherit;
    line-height: inherit;
}

.pm-privacy .pm-privacy__doc p:last-child {
    margin-bottom: 0;
}

.pm-privacy .pm-privacy__doc a {
    color: #5aa11f;
    text-decoration: underline;
    word-break: break-word;
}

.pm-privacy .pm-privacy__doc a:hover,
.pm-privacy .pm-privacy__doc a:focus {
    color: #3f7a12;
}


/* --------------------------------------------------------------------------
   2. Masthead - title and the introductory paragraph
   -------------------------------------------------------------------------- */
.pm-privacy .pm-privacy__masthead {
    margin-bottom: 46px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e3edf2;
}

.pm-privacy .pm-privacy__masthead h2 {
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.25;
    color: #3b4757;
}

.pm-privacy .pm-privacy__lead {
    margin-bottom: 0;
    color: #52606d;
}


/* --------------------------------------------------------------------------
   3. Sections

   No clause numbers on this page, so the heading gets a green rule on the
   left where the terms page puts its number.
   -------------------------------------------------------------------------- */
.pm-privacy .pm-privacy__section {
    margin-bottom: 44px;
}

.pm-privacy .pm-privacy__section:last-child {
    margin-bottom: 0;
}

.pm-privacy .pm-privacy__heading {
    margin-bottom: 18px;
    padding: 0 0 10px 14px;
    border-bottom: 2px solid #eef4f7;
    border-left: 3px solid #7dc43b;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
    color: #3b4757;
}


/* --------------------------------------------------------------------------
   4. Lettered clauses - hanging markers via grid

   Was `<p><strong>A.</strong> Information That...`, so a wrapped line ran back
   under the letter. Each <li> is now a two-column grid: marker, then text.
   -------------------------------------------------------------------------- */
.pm-privacy .pm-privacy__clauses {
    --pm-no-w: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pm-privacy .pm-privacy__clauses > li {
    display: grid;
    grid-template-columns: var(--pm-no-w) 1fr;
    margin-bottom: 16px;
}

.pm-privacy .pm-privacy__clauses > li:last-child {
    margin-bottom: 0;
}

.pm-privacy .pm-privacy__no {
    font-weight: 600;
    color: #7dc43b;
}

.pm-privacy .pm-privacy__text {
    min-width: 0;
}

/* "Agents and Service Providers:" and friends - the label that opens a clause
   or a bullet. */
.pm-privacy .pm-privacy__lead-in {
    font-weight: 600;
    color: #3b4757;
}


/* --------------------------------------------------------------------------
   5. Bullet lists

   .dot_list draws its green dot from main.css with `top: 6px`, which sits too
   high once the line-height here is 1.75. Only the spacing is adjusted; the
   dot itself stays as the shared rule draws it.
   -------------------------------------------------------------------------- */
.pm-privacy .pm-privacy__bullets {
    margin: 0 0 18px;
    padding-left: 0;
    list-style: none;
}

.pm-privacy .pm-privacy__bullets li {
    margin-bottom: 12px;
}

.pm-privacy .pm-privacy__bullets li:last-child {
    margin-bottom: 0;
}

.pm-privacy .pm-privacy__bullets.dot_list li:before {
    top: 11px;
    width: 7px;
    height: 7px;
}


/* --------------------------------------------------------------------------
   6. Responsive - breakpoints match the site's own 1199/991/767 scale
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
    .pm-privacy .lagel__wraper {
        padding: 60px 0 70px;
    }
}

@media only screen and (max-width: 991px) {
    .pm-privacy .pm-privacy__doc {
        font-size: 15px;
    }

    .pm-privacy .pm-privacy__masthead h2 {
        font-size: 30px;
    }

    .pm-privacy .pm-privacy__heading {
        font-size: 19px;
    }
}

@media only screen and (max-width: 767px) {
    .pm-privacy .lagel__wraper {
        padding: 40px 0 50px;
    }

    .pm-privacy .pm-privacy__masthead {
        margin-bottom: 32px;
        padding-bottom: 22px;
    }

    .pm-privacy .pm-privacy__masthead h2 {
        font-size: 26px;
    }

    .pm-privacy .pm-privacy__section {
        margin-bottom: 34px;
    }

    .pm-privacy .pm-privacy__heading {
        font-size: 18px;
        padding-left: 12px;
    }

    .pm-privacy .pm-privacy__clauses {
        --pm-no-w: 28px;
    }
}
