/* Privacy page design tokens and base styles. */
:root {
    --privacy-navy: #181a2c;
    --privacy-gold: #fede07;
    --privacy-ink: #252737;
    --privacy-muted: #626675;
    --privacy-line: #e1e3e9;
    --privacy-paper: #fbfbfa;
    --privacy-font: "Gotham", "Helvetica Neue", Arial, sans-serif;
}

@font-face {
    font-family: "Gotham";
    src: local("Gotham"), local("Gotham-Book");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: local("Gotham Bold"), local("Gotham-Bold");
    font-weight: 600 700;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--privacy-ink);
    background: var(--privacy-paper);
    font: 15px/1.8 var(--privacy-font);
}

a {
    color: inherit;
}

.privacy-page {
    width: min(1180px, calc(100% - 48px));
    margin: 92px auto 0;
    padding: 75px 0 95px;
}

.privacy-hero {
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--privacy-line);
}

.eyebrow {
    margin: 0 0 14px;
    color: #777b8c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.privacy-hero h1 {
    margin: 0 0 18px;
    color: var(--privacy-navy);
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
}

.privacy-hero > p:not(.eyebrow):not(.updated) {
    margin: 0;
    color: var(--privacy-muted);
    font-size: 17px;
}

.privacy-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px);
    justify-content: center;
    padding-top: 55px;
}

.privacy-content {
    max-width: 780px;
}

.privacy-content > p {
    margin: 0 0 24px;
    color: var(--privacy-muted);
}

.privacy-content h2 {
    margin: 42px 0 12px;
    color: var(--privacy-navy);
    font-size: 22px;
    line-height: 1.25;
}

.privacy-content h2:first-of-type {
    margin-top: 30px;
}

.privacy-content a {
    color: var(--privacy-navy);
    text-decoration-color: var(--privacy-gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .privacy-page {
        width: min(100% - 36px, 680px);
        margin-top: 76px;
        padding: 52px 0 70px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        padding-top: 38px;
    }

}

@media (max-width: 480px) {
    .privacy-content h2 {
        font-size: 20px;
    }
}
