/*----------------------------------------------------------------------------------------------------------------------
Privacy

Standalone stylesheet for the privacy pages. Deliberately does NOT load style.css:
that sheet sets overflow:hidden and a fixed full-height table layout for the
coming-soon canvas, which a scrolling document must not inherit.
----------------------------------------------------------------------------------------------------------------------*/

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --ink: #23223a;
    --ink-soft: #5c5b73;
    --paper: #ffffff;
    --ground: #f3f3f3;
    --rule: #e6e6ef;
    --accent: #61dfff;
    --accent-warm: #f87a9d;
}

body {
    margin: 0;
    background-color: var(--ground);
    color: var(--ink);
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    -webkit-text-size-adjust: 100%;
}

.wrap {
    max-width: 48rem;
    margin: 0 auto;
    padding-block: 2.5rem 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* -- Masthead */

.masthead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.masthead img {
    width: 120px;
    height: auto;
    display: block;
}

.lang-switch {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--ink-soft);
    text-decoration: none;
    border: 1px solid var(--rule);
    background: var(--paper);
    border-radius: 999px;
    padding: .375rem 1rem;
    transition: .25s ease;
}

.lang-switch:hover {
    color: var(--ink);
    border-color: var(--accent);
}

/* -- Document */

.doc {
    background: var(--paper);
    border-radius: .75rem;
    padding: 2.5rem;
    box-shadow: 0 1px 2px rgba(35, 34, 58, .06), 0 8px 30px rgba(35, 34, 58, .05);
}

.doc h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 .375rem;
    line-height: 1.4;
}

.updated {
    color: var(--ink-soft);
    font-size: .875rem;
    margin: 0 0 2rem;
}

.lede {
    font-size: 1.0625rem;
    border-inline-start: 3px solid var(--accent);
    padding-inline-start: 1.125rem;
    margin: 0 0 2.5rem;
    color: var(--ink);
}

.doc h2 {
    font-size: 1.1875rem;
    font-weight: 700;
    margin: 2.5rem 0 .75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
}

.doc h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.doc h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 .5rem;
    color: var(--ink);
}

.doc p {
    margin: 0 0 1rem;
}

.doc ul {
    margin: 0 0 1rem;
    padding-inline-start: 1.375rem;
}

.doc li {
    margin-bottom: .5rem;
}

.doc a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--accent-warm);
    text-underline-offset: 3px;
}

.doc strong {
    font-weight: 700;
}

/* A plain-language callout for the two things parents most want to know. */

.note {
    background: var(--ground);
    border-radius: .5rem;
    padding: 1.125rem 1.375rem;
    margin: 0 0 1.5rem;
}

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

/* -- Table of what we store */

.table-scroll {
    overflow-x: auto;
    margin: 0 0 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9375rem;
    min-width: 30rem;
}

th, td {
    text-align: start;
    padding: .75rem .875rem;
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
}

th {
    font-weight: 700;
    background: var(--ground);
    white-space: nowrap;
}

/* -- Foot */

.doc-foot {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    color: var(--ink-soft);
    font-size: .875rem;
}

.back {
    display: inline-block;
    margin-top: 2rem;
    color: var(--ink-soft);
    font-size: .875rem;
    text-decoration: none;
}

.back:hover {
    color: var(--ink);
}

@media (max-width: 600px) {
    .doc {
        padding: 1.5rem 1.25rem;
        border-radius: .5rem;
    }
    .doc h1 {
        font-size: 1.5rem;
    }
    .wrap {
        padding-block: 1.5rem 3rem;
    }
}
