/* nl-schoolvakanties.nl
   Stijl: warm · vertrouwd · fris
   Palet: cremewit · bosgroen · zachte lila
   Font: Space Mono + Playwrite GB J Guides */

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

:root {
    /* Kernpalet — geïnspireerd op coffee-club kleurenschema */
    --green:       #2B7A3C;   /* bosgroen — primair */
    --green-mid:   #5A9E6E;   /* middengroen — kaartkoppen zomer/herfst */
    --green-light: #EAF3EC;   /* lichtgroen — hover, actieve achtergronden */
    --lilac:       #C4A0CC;   /* zachte lila — accent (mei, tweede kleur) */
    --lilac-light: #F3EDF5;   /* heel licht lila — lila-hover */

    /* Neutrale kleuren */
    --text:    #1A2A1C;   /* donkergroen-zwart */
    --text2:   #6A7A6C;   /* middentoon met groene ondertoon */
    --bg:      #F4EFE0;   /* cremewit — paginaachtergrond */
    --bg2:     #EDE5D0;   /* iets warmer crème */
    --white:   #FDFAF4;   /* warmwit — kaarten */
    --border:  #D8D0BC;   /* warme zandrand */

    /* Regiokleuren — tinten van hetzelfde groen */
    --c-n: #2B7A3C;
    --c-m: #5A9E6E;
    --c-z: #C4A0CC;

    --primary: var(--green);

    --radius:    18px;
    --radius-sm: 10px;
    --shadow-1: 0 2px 10px rgba(26,42,28,.07), 0 1px 3px rgba(26,42,28,.04);
    --shadow-2: 0 8px 28px rgba(26,42,28,.12), 0 2px 8px rgba(26,42,28,.06);
}

body {
    font-family: 'Space Mono', 'Courier New', monospace;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 13px;
}

a { color: var(--green); text-underline-offset: 3px; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header ──────────────────────────────────────────── */
.header {
    background: var(--lilac);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(180,140,190,.25);
}

.nav {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    background: var(--green);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 10px;
    line-height: 1.4;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.logo-tld { color: rgba(255,255,255,.75); }

.nav-right { display: flex; gap: 8px; align-items: center; }

.print-btn-wrap { position: relative; }

.postit {
    position: absolute;
    top: calc(100% + 10px);
    right: -8px;
    width: 250px;
    background: #FFF176;
    color: #3A2E00;
    font-family: 'Playwrite GB J Guides', cursive;
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 2.1;
    padding: 16px 20px 20px;
    border-radius: 2px;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.12);
    transform: rotate(2.5deg);
    z-index: 150;
    pointer-events: none;
}

.postit-gnome {
    position: absolute;
    bottom: -18px;
    right: 6px;
    width: 62px;
    height: auto;
    filter: drop-shadow(2px 5px 6px rgba(0,0,0,0.32));
    pointer-events: none;
}

.postit::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: rgba(0,0,0,0.06);
    border-radius: 2px 2px 0 0;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1.5px solid rgba(255,255,255,.55);
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    color: var(--white);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
}

.nav-btn:hover {
    background: rgba(255,255,255,.45);
    border-color: rgba(255,255,255,.8);
    color: var(--white);
    box-shadow: none;
}

/* ── Export panel ────────────────────────────────────── */
.export-panel {
    position: fixed;
    top: 72px;
    right: 20px;
    z-index: 300;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    width: 290px;
    padding: 18px;
}

.export-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.88rem;
    font-weight: 700;
}

.export-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text2);
    font-size: 1rem;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 8px;
}

.export-close:hover { background: var(--bg); }

.export-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 12px;
}

.export-label select {
    font-family: inherit;
    font-size: 0.88rem;
    padding: 7px 10px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
}

.export-btns { display: flex; flex-direction: column; gap: 6px; }

.ebtn {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all .15s;
}

.ebtn:hover { background: var(--bg2); border-color: var(--green); box-shadow: var(--shadow-1); }

.ebtn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

.ebtn-noord { border-left: 4px solid #B5A800; }
.ebtn-noord:hover { border-left-color: #B5A800; border-color: #B5A800; background: #FAFAE8; }

.ebtn-midden { border-left: 4px solid var(--green-mid); }
.ebtn-midden:hover { border-left-color: var(--green-mid); border-color: var(--green-mid); background: var(--green-light); }

.ebtn-zuidd { border-left: 4px solid var(--lilac); }
.ebtn-zuidd:hover { border-left-color: var(--lilac); border-color: var(--lilac); background: var(--lilac-light); }

.export-hint {
    margin-top: 12px;
    font-size: 0.74rem;
    color: var(--text2);
    line-height: 1.45;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
    padding: 56px 0;
    position: relative;
    overflow: hidden;
    background: var(--green);
    transition: background .3s;
}

/* Zachte seizoenskleuren */
.hero[data-season="zomer"]    { background: var(--green-mid); }
.hero[data-season="herfst"]   { background: var(--green-mid); }
.hero[data-season="kerst"]    { background: #1A5C2A; }
.hero[data-season="voorjaar"] { background: var(--green); }
.hero[data-season="mei"]      { background: var(--lilac); }

/* Lichte overlay voor zachte look */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255,255,255,0.12);
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Banner — vakantiename + datumrange */
#countdown { color: var(--white); }

.cd-region {
    font-family: 'Playwrite GB J Guides', cursive;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 10px;
}

.cd-countdown {
    font-size: 1.05rem;
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 6px;
}

.cd-countdown strong { font-weight: 700; }

.cd-dates {
    font-size: 0.88rem;
    opacity: 0.72;
    font-weight: 500;
}


/* ── Main ────────────────────────────────────────────── */
.main { padding: 40px 0 80px; }

/* ── Region selector — strip ─────────────────────────── */
.region-header { margin-bottom: 8px; }

.region-prompt {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

/* Strip-container */
.region-row {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    background: var(--green-light);
    border-radius: var(--radius);
    padding: 5px;
    border: 1.5px solid #C8DDCA;
}

/* Tab-knop */
.rbtn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border: none;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    transition: background .18s, box-shadow .18s, transform .18s;
    font-family: inherit;
    text-align: center;
    box-shadow: none;
}

.rbtn:hover { background: rgba(255,255,255,.55); transform: translateY(-1px); }
.rbtn:active { transform: scale(0.96); }

/* Actieve tab: wit kaartje, omhoog */
.rbtn.active {
    background: var(--white);
    box-shadow: var(--shadow-2);
    transform: translateY(-3px);
}

.rbtn.active .rbtn-top {
    transform: scale(1.1);
    display: inline-block;
    transition: transform .18s ease;
}

.rbtn-top-alle {
    font-family: 'Playwrite GB J Guides', cursive;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--green);
    line-height: 1.3;
    margin-bottom: 2px;
}

.rbtn-top {
    line-height: 1;
    margin-bottom: 2px;
}

.rbtn-n .rbtn-top { font-family: 'Playwrite GB J Guides', cursive; font-size: 1.05rem; font-weight: 400; color: #B5A800;          line-height: 1.3; }
.rbtn-m .rbtn-top { font-family: 'Playwrite GB J Guides', cursive; font-size: 1.05rem; font-weight: 400; color: var(--green-mid); line-height: 1.3; }
.rbtn-z .rbtn-top { font-family: 'Playwrite GB J Guides', cursive; font-size: 1.05rem; font-weight: 400; color: var(--lilac);     line-height: 1.3; }

.rbtn-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rbtn-provinces {
    font-size: 0.6rem;
    color: var(--text2);
    line-height: 1.3;
    margin-top: 3px;
}

/* ── Year bar (verborgen — tabs zitten in de jaarkaart-banner) */
.year-bar { display: none; }

.ytab {
    padding: 6px 16px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--text2);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s;
}

.ytab:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.ytab.active { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 700; box-shadow: 0 2px 8px rgba(43,122,60,.25); }

/* Past toggle button */
.past-toggle-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
}

.past-toggle-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    color: var(--text2);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
}

.past-toggle-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-light);
}

/* Provisional notice */
.notice {
    background: var(--green-light);
    border: 1.5px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 22px;
    font-weight: 600;
}

/* ── Cards grid ──────────────────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

/* ── Wide vacation card (spans 2 months) ────────────── */
@media (min-width: 700px) {
    .card--wide { grid-column: span 2; }
}

/* ── Year overview card ──────────────────────────────── */
.year-card {
    grid-column: 1 / -1;
}

.year-card-img {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
    height: 136px;
}

.year-card-tabs {
    position: absolute;
    top: 10px;
    right: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    z-index: 1;
}

.year-card-tabs .ytab {
    padding: 3px 10px;
    font-size: 0.70rem;
    font-family: 'Playwrite GB J Guides', cursive;
    font-weight: 400;
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
}

.year-card-tabs .ytab:hover {
    background: rgba(255,255,255,0.32);
    border-color: rgba(255,255,255,0.65);
    color: #fff;
}

.year-card-tabs .ytab.active {
    background: rgba(255,255,255,0.92);
    border-color: transparent;
    color: var(--green);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.year-cal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (max-width: 960px) {
    .year-cal-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .year-cal-grid { grid-template-columns: repeat(2, 1fr); }
}

.year-card .mini-cal { min-width: unset; }

.ycal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 4px;
}

.ycal-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ycal-swatch {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* ── Vacation card ───────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--border);
}

.card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.card.past { opacity: .45; }
.card.past .card-img {
    height: 62px;
    cursor: pointer;
    user-select: none;
}
.card.past .card-img:hover { filter: brightness(1.1); }
.card.past .card-img::after {
    content: '▾';
    position: absolute;
    bottom: 8px;
    right: 14px;
    font-size: 0.85rem;
    color: rgba(255,255,255,.7);
    transition: transform 0.25s ease;
}
.card.past.expanded { opacity: .75; }
.card.past.expanded .card-img::after { transform: rotate(180deg); }
.card.past .card-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height 0.35s ease, padding 0.25s ease;
}
.card.past.expanded .card-body {
    max-height: 900px;
    padding: 16px 18px 20px;
}

/* Card header */
.card-img {
    height: 112px;
    display: flex;
    align-items: flex-end;
    padding: 14px 18px;
    position: relative;
    overflow: hidden;
}

.card-img-deco {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 16px;
    font-size: 5.5rem;
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Clay SVG illustration inside deco area */
.card-img-deco .deco-clay {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

/* Monochromatisch groen + lila accent */
.card[data-type="zomer"]    .card-img { background: #C8A000; }
.card[data-type="herfst"]   .card-img { background: #B8541A; }
.card[data-type="kerst"]    .card-img { background: #0D2E1A; }
.card[data-type="voorjaar"] .card-img { background: #B06A7A; }
.card[data-type="mei"]      .card-img { background: var(--lilac); }

.card-img-text {
    position: relative;
    color: var(--white);
}

.card-img-name {
    font-family: 'Playwrite GB J Guides', cursive;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    text-shadow: 0 1px 6px rgba(0,0,0,.18);
}

.card-img-year {
    font-size: 0.7rem;
    opacity: 0.72;
    margin-top: 3px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* Status badge */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 3px 10px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.badge-current  { background: rgba(255,255,255,.92); color: var(--green); }
.badge-upcoming { background: rgba(255,255,255,.82); color: var(--text); }
.badge-past     { background: rgba(0,0,0,.28);       color: rgba(255,255,255,.80); }

/* Card body */
.card-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
    background: var(--white);
}

/* Duration summary */
.card-duration {
    font-size: 0.78rem;
    color: var(--text2);
    font-weight: 600;
}

.card-duration strong { color: var(--text); }

/* Season icon */
.season-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 4px;
    object-fit: contain;
}

/* Mini calendar */
.mini-cal-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mini-cal {
    flex: 1;
    min-width: 130px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 8px;
    border: 1px solid var(--border);
}

.mc-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    color: var(--text2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mc-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.mc-head {
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    color: var(--text2);
    padding: 4px 2px;
    background: var(--bg2);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mc-head:last-of-type { border-right: none; }

.mc-day {
    font-size: 0.78rem;
    text-align: center;
    padding: 3px 2px;
    line-height: 1.4;
    position: relative;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
}

.mc-day:nth-child(7n) { border-right: none; }

.mc-day.today {
    font-weight: 700;
    outline: 2px solid var(--green);
    border-radius: 4px;
}

.mc-day.weekend { color: var(--text2); }

.mc-day::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 2px;
    margin-top: 1px;
}

.mc-day.vac { font-weight: 600; }

.mc-vac-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 6px;
    margin-top: 5px;
    padding: 0 1px;
}

.mc-vac-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.60rem;
    font-weight: 600;
    color: var(--text2);
}

.mc-vac-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Region rows */
.region-rows { display: flex; flex-direction: column; gap: 7px; }

.rrow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: background .12s;
}

.rrow.active { background: var(--bg); border: 1px solid var(--border); }
.rrow.dimmed { opacity: .28; }

.rrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rrow-name {
    font-size: 0.72rem;
    font-weight: 700;
    min-width: 52px;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rrow-dates { font-size: 0.84rem; color: var(--text); flex: 1; font-weight: 600; }

.rrow-days {
    font-size: 0.74rem;
    color: var(--text2);
    white-space: nowrap;
    font-weight: 600;
}

.card-note {
    font-size: 0.76rem;
    color: var(--green);
    background: var(--green-light);
    border: 1.5px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    line-height: 1.45;
    font-weight: 600;
}

.rrow-same {
    font-size: 0.72rem;
    color: var(--text2);
    font-style: italic;
    padding: 5px 10px;
    text-align: center;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-weight: 600;
}

/* ── Print styles ────────────────────────────────────── */
.print-only { display: none; }

@page { margin: 0; }

@media print {
    .no-print { display: none !important; }
    .print-only { display: block; }

    body { background: #fff; font-size: 12px; font-family: 'Space Mono', monospace; }

    .print-header {
        font-size: 0.82rem;
        font-weight: 700;
        color: #333;
        padding: 14px 24px 6px;
        border-bottom: 1.5px solid #ddd;
        margin-bottom: 4px;
    }

    .print-month { page-break-before: always; padding: 16px 24px; }
    .print-month:first-of-type { page-break-before: avoid; }

    .pm-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: #2A2018; }

    .pm-legend { display: flex; gap: 16px; margin-bottom: 12px; font-size: 0.78rem; }
    .pm-legend-item { display: flex; align-items: center; gap: 5px; }
    .pm-swatch { width: 12px; height: 12px; border-radius: 3px; }

    .pm-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 2px;
        border: 1px solid #DDD5C8;
        border-radius: 6px;
        overflow: hidden;
    }

    .pm-head {
        background: #F0EBE0;
        font-size: 0.7rem;
        font-weight: 700;
        text-align: center;
        padding: 6px 2px;
        border-right: 1px solid #DDD5C8;
    }

    .pm-cell { min-height: 60px; border-right: 1px solid #eee; border-top: 1px solid #eee; padding: 4px; vertical-align: top; position: relative; }
    .pm-cell.outside { background: #FAF7F0; }
    .pm-cell.weekend .pm-num { color: #8A7E72; }

    .pm-num { font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 2px; }

    .pm-today .pm-num {
        background: #7BA891;
        color: #fff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pm-vac-bar { font-size: 0.6rem; font-weight: 700; border-radius: 4px; padding: 2px 4px; margin-top: 1px; color: #fff; }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 680px) {
    .cards { grid-template-columns: 1fr; }
    .cd-name { font-size: 1.6rem; }
    .hero { padding: 36px 0; }
    .rbtn { padding: 10px 6px; }
    .rbtn-provinces { display: none; }
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
    background: var(--lilac);
    color: var(--white);
    border-top: 4px solid var(--green);
    padding: 36px 24px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer a { color: rgba(255,255,255,.90); text-underline-offset: 3px; }

.footer-sub { font-size: 0.76rem; opacity: 0.65; margin-top: 6px; }

.footer-disclaimer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.25);
    font-size: 0.72rem;
    opacity: 0.45;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}
