:root {
    --page: #ffffff;
    --surface: #eef6fb;
    --band: #f3f8fc;
    --ink: #292929;
    --muted: #474747;
    --navy: #0c426d;
    --navy-dark: #093454;
    --red: #f63636;
    --rule: #cddfeb;
    --shell: 1300px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font: 400 17px/1.62 Arial, Helvetica, sans-serif;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.22; margin: 0 0 14px; }

h1 { font-size: 31px; }
h2 { font-size: 24px; }
h3 { font-size: 19px; }
h4 { font-size: 17px; }

p { margin: 0 0 16px; }

.wrap {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 20px;
}

.narrow { max-width: 840px; }

/* ---------- disclosure + masthead ---------- */

.ad-bar {
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 9px 20px;
}

.ad-bar span {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .65);
    font-size: 11.5px;
    letter-spacing: .1em;
    padding: 1px 7px;
    margin-inline-end: 9px;
}

.site-header { border-bottom: 1px solid var(--rule); }

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 15px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.015em;
    text-decoration: none;
}

.brand svg { width: 26px; height: 26px; color: var(--navy); }

.site-header .links { display: flex; gap: 22px; font-size: 15px; }

.site-header .links a { color: var(--muted); text-decoration: none; }

.site-header .links a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- page body ---------- */

main { padding: 34px 0 20px; }

section { margin-bottom: 44px; }

.page-title { margin: 0 0 26px; }

.section-title { margin-bottom: 20px; }

.card {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 26px;
    margin-bottom: 30px;
}

.card:last-child { border-bottom: 0; }

.grid { display: grid; gap: 22px; margin-bottom: 24px; }

.grid-2 { grid-template-columns: repeat(2, 1fr); }

.grid-3 { grid-template-columns: repeat(3, 1fr); }

.tile {
    background: var(--band);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 18px 20px;
}

.media {
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
}

.media img { width: 100%; height: 190px; object-fit: cover; }

.media .body { padding: 18px 20px; }

.media ul, .tile ul { margin: 8px 0 0; padding-inline-start: 20px; font-size: 15.5px; }

p { color: var(--muted); }

.card > h2 + p, .card > h3 + p, .tile p { margin-top: 0; }

/* ---------- tables ---------- */

.table-scroll { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15.5px;
    margin-bottom: 10px;
}

th, td { border: 1px solid var(--rule); padding: 11px 13px; text-align: start; }

thead th { background: var(--navy); color: #fff; font-weight: 700; }

tbody tr:nth-child(even) { background: var(--band); }

tbody td { color: var(--muted); }

.source-note { font-size: 13.5px; margin: 0; }

/* ---------- notices ---------- */

.notice {
    border: 1px solid var(--rule);
    border-inline-start: 5px solid var(--red);
    border-radius: 8px;
    padding: 22px 24px;
    margin-bottom: 30px;
}

.notice h3 { margin-top: 0; }

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

.info-box {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 22px 24px;
    margin-bottom: 30px;
}

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

/* ---------- legal pages ---------- */

.legal h2 { margin-top: 30px; font-size: 22px; }

.legal h3 { margin-top: 22px; font-size: 18px; }

.legal ul { color: var(--muted); padding-inline-start: 22px; }

.legal li { margin-bottom: 7px; }

.legal .updated { font-size: 14px; }

dl.entity { margin: 0; }

dl.entity div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 9px 0;
    border-bottom: 1px solid var(--rule);
}

dl.entity dt { font-weight: 700; min-width: 260px; margin: 0; }

dl.entity dd { margin: 0; color: var(--muted); }

/* ---------- footer ---------- */

.site-footer {
    background: var(--navy);
    color: #fff;
    margin-top: 44px;
    padding: 44px 0 30px;
    font-size: 15.5px;
}

.site-footer h3 { color: #fff; font-size: 17px; margin-bottom: 13px; }

.site-footer a { color: #fff; }

.site-footer p, .site-footer li { color: rgba(255, 255, 255, .86); }

.site-footer ul { list-style: none; margin: 0; padding: 0; }

.site-footer li { margin-bottom: 8px; }

.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.footer-entity { margin: 0; }

.disclaimer { font-size: 13.5px; line-height: 1.55; }

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .28);
    margin: 30px 0 0;
    padding-top: 18px;
    font-size: 13.5px;
}

/* ---------- cookie consent ---------- */

#cookie-consent {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    border-top: 3px solid var(--navy);
    padding: 20px;
}

#cookie-consent .inner {
    max-width: var(--shell);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

#cookie-consent p { margin: 0; font-size: 14.5px; max-width: 700px; }

#cookie-consent .actions { display: flex; gap: 12px; flex-wrap: wrap; }

#cookie-consent button {
    font: 700 15px Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: .02em;
    padding: 14px 30px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    min-width: 160px;
}

/* Accept and reject are styled identically so neither is visually
   privileged — required by ePrivacy/CNIL-style consent guidance. */
#cookie-consent .accept,
#cookie-consent .reject { background: var(--navy); color: #fff; }

#cookie-consent button:hover { background: var(--navy-dark); }

/* ---------- responsive ---------- */

@media (max-width: 820px) {
    body { font-size: 16px; }
    h1 { font-size: 25px; }
    h2 { font-size: 21px; }
    .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
    .legal h2 { font-size: 20px; }
    dl.entity div { flex-direction: column; gap: 2px; }
    dl.entity dt { min-width: 0; }
    #cookie-consent .inner { flex-direction: column; align-items: stretch; }
    #cookie-consent button { width: 100%; }
}
