/* Gaza Gazette — one stylesheet.
   Palette taken by measurement from the supplied logo, not by eye:
   ink #061d18, gold #ca9f4d. The cream ground and the rounded, softly-shadowed
   cards come from the travel-app reference; the editorial serif keeps it a
   newspaper rather than a booking app. */

:root{
  --cream:#f6f1e7;      /* page ground */
  --cream-2:#efe8da;    /* recessed strips */
  --paper:#fffdf9;      /* cards */
  --green:#061d18;      /* brand ink — measured from the logo */
  --green-2:#0e3a2f;
  --green-3:#175646;
  --gold:#ca9f4d;       /* brand accent — measured from the logo */
  --gold-2:#e6c68a;
  --gold-3:#f3e6cd;
  --ink:#10241f;
  --ink-2:#4d5f59;
  --ink-3:#8a978f;
  --line:#e3dac8;
  --line-2:#efe9dc;
  --red:#a8322a;        /* live / breaking only */

  --display:"Iowan Old Style","Palatino Linotype",Palatino,"Book Antiqua",Georgia,serif;
  --body:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --num:var(--body);

  --r:18px; --r-s:12px; --r-l:26px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --sh-1:0 1px 2px rgba(6,29,24,.05), 0 6px 18px -8px rgba(6,29,24,.14);
  --sh-2:0 2px 6px rgba(6,29,24,.06), 0 18px 38px -14px rgba(6,29,24,.24);
  --wrap:1180px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{margin:0;background:var(--cream);color:var(--ink);
     font-family:var(--body);font-size:16px;line-height:1.6;
     -webkit-font-smoothing:antialiased}
body.locked{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--display);margin:0;line-height:1.22;letter-spacing:-.012em}
p{margin:0}
button{font:inherit;color:inherit;background:none;border:0;padding:0;cursor:pointer}

/* Latin digits everywhere, and lined up in columns where they matter. */
.num,.led-fig,.dos-n,time{font-family:var(--num);font-variant-numeric:tabular-nums}

::selection{background:var(--gold-2);color:var(--green)}
:focus-visible{outline:2.5px solid var(--green-3);outline-offset:3px;border-radius:6px}
html{scrollbar-color:var(--line) var(--cream)}
::-webkit-scrollbar{width:11px;height:11px}
::-webkit-scrollbar-track{background:var(--cream)}
::-webkit-scrollbar-thumb{background:var(--line);border-radius:99px;border:3px solid var(--cream)}
::-webkit-scrollbar-thumb:hover{background:var(--gold-2)}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 26px}
.skip{position:absolute;left:-9999px;top:0;z-index:200;background:var(--green);color:#fff;
      padding:.7rem 1.1rem;border-radius:0 0 var(--r-s) 0}
.skip:focus{left:0}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ── header ─────────────────────────────────────────────────────────── */
.top{position:sticky;top:0;z-index:60;background:rgba(246,241,231,.9);
     backdrop-filter:saturate(1.6) blur(14px);border-bottom:1px solid var(--line)}
.top-in{display:flex;align-items:center;gap:26px;height:70px}
/* the wordmark keeps its own 2.5:1 proportion — never boxed into a square */
.brand{display:flex;align-items:center;flex:none}
.brand img{height:38px;width:auto}
.nav{display:flex;gap:2px;flex:1;min-width:0}
.nav a{position:relative;padding:.55rem .72rem;border-radius:99px;font-size:.9rem;
       font-weight:500;color:var(--ink-2);white-space:nowrap;
       transition:color .2s var(--ease),background .2s var(--ease)}
.nav a:hover{color:var(--green);background:var(--cream-2)}
.nav a[aria-current]{color:var(--green);font-weight:600;background:var(--gold-3)}
/* pushed to the far edge by its own margin, not by the nav's flex:1 — the nav
   is display:none on phones, and without this the search and burger sat glued
   to the wordmark instead of on the opposite edge */
.top-r{display:flex;align-items:center;gap:8px;flex:none;margin-left:auto}
.ghost{display:grid;place-items:center;width:40px;height:40px;border-radius:99px;
       border:1px solid var(--line);color:var(--ink-2);transition:.2s var(--ease)}
.ghost:hover{background:var(--paper);color:var(--green);border-color:var(--gold-2)}
.ic{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;
    stroke-linecap:round;stroke-linejoin:round}

/* burger — the phone's way in. Never `display:none` on the nav without one:
   that shipped once and left the phone with no navigation at all. */
.burger{display:none;width:42px;height:42px;border-radius:99px;border:1px solid var(--line);
        flex-direction:column;align-items:center;justify-content:center;gap:4.5px}
.burger span{display:block;width:17px;height:1.9px;background:var(--green);border-radius:2px;
             transition:transform .28s var(--ease),opacity .2s var(--ease)}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(6.4px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.4px) rotate(-45deg)}

.drawer{position:fixed;inset:70px 0 0;z-index:55;background:var(--cream);overflow-y:auto;
        padding:22px 0 110px;animation:dr .26s var(--ease)}
@keyframes dr{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
.eyebrow{font-family:var(--display);font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;
         color:var(--gold);margin:18px 0 10px}
.eyebrow:first-child{margin-top:0}
.drawer-nav{display:flex;flex-direction:column;gap:8px}
.drawer-nav a{background:var(--paper);border-radius:var(--r-s);padding:14px 16px;
              box-shadow:var(--sh-1);font-weight:600;font-size:1.02rem;color:var(--green)}
.drawer-nav a span{display:block;font-weight:400;font-size:.83rem;color:var(--ink-3);margin-top:3px}
.drawer-nav a[aria-current]{border-left:3px solid var(--gold)}
.drawer-pol{display:flex;flex-wrap:wrap;gap:7px}
.drawer-pol a{border:1px solid var(--line);border-radius:99px;padding:.42rem .85rem;
              font-size:.85rem;color:var(--ink-2)}

/* ── shared bits ────────────────────────────────────────────────────── */
.tag{display:inline-block;background:var(--green);color:var(--gold-2);font-size:.7rem;
     font-weight:700;letter-spacing:.09em;text-transform:uppercase;
     padding:.3rem .6rem;border-radius:7px}
.tag.live{background:var(--red);color:#fff}
.tag.soft{background:var(--gold-3);color:var(--green-2)}
.when{color:var(--ink-3);font-size:.79rem}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;
          margin:0 0 20px;padding-bottom:14px;border-bottom:1px solid var(--line)}
.sec-head h2{font-size:1.44rem}
.sec-head p{color:var(--ink-3);font-size:.88rem;margin-top:5px;max-width:56ch}
.more{display:inline-flex;align-items:center;gap:7px;font-size:.86rem;font-weight:600;
      color:var(--green-3);white-space:nowrap;flex:none}
.more svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;
          stroke-linecap:round;stroke-linejoin:round;transition:transform .25s var(--ease)}
.more:hover svg{transform:translateX(4px)}

/* photo stand-ins: deterministic gradients, so a page without pictures still
   reads as a designed page and not as a broken one */
.ph{position:relative;overflow:hidden;background:linear-gradient(145deg,#dfe7e1,#c2d0c8)}
.ph::after{content:"";position:absolute;inset:0;
           background:radial-gradient(120% 90% at 20% 0%,rgba(255,255,255,.5),transparent 60%)}
.ph-1{background:linear-gradient(150deg,#cfdcd4,#8fa79b)}
.ph-2{background:linear-gradient(150deg,#e7dcc4,#c3a878)}
.ph-3{background:linear-gradient(150deg,#d4dde4,#93a6b3)}
.ph-4{background:linear-gradient(150deg,#dcd6e2,#a294ab)}
.ph-5{background:linear-gradient(150deg,#e3d5cd,#b39a8c)}
.ph-6{background:linear-gradient(150deg,#cddad9,#7f9a97)}

/* ── front page ─────────────────────────────────────────────────────── */
/* One wide picture, and beside it a running column of the last few hours.
   Chosen over a mosaic and over three equal panels: it is the only one of the
   three that says something a card wall cannot — that the desk is working
   right now — and it is not the "one big card with two stacked beside it"
   arrangement that every template ships with. */
.front{padding:28px 0 0;display:grid;grid-template-columns:1.5fr 1fr;gap:18px;
       align-items:stretch}
.front-lead{position:relative;border-radius:var(--r-l);overflow:hidden;min-height:480px;
            display:flex;align-items:flex-end;isolation:isolate;box-shadow:var(--sh-2)}
.front-lead::before{content:"";position:absolute;inset:0;z-index:1;
                    background:linear-gradient(to top,rgba(6,29,24,.94) 6%,rgba(6,29,24,.35) 52%,transparent 80%)}
.front-lead .ph{position:absolute;inset:0}
.front-lead-b{position:relative;z-index:2;padding:30px 32px;color:#fff}
.front-lead h2{color:#fff;font-size:2rem;margin-top:.6rem;max-width:18ch}
.front-lead p{color:rgba(255,255,255,.8);font-size:.95rem;margin-top:.65rem;max-width:48ch}
.front-lead .when{color:rgba(255,255,255,.62);display:block;margin-top:.85rem}

.live{background:var(--paper);border-radius:var(--r-l);box-shadow:var(--sh-1);
      padding:22px 24px 20px;display:flex;flex-direction:column}
.live h3{display:flex;align-items:center;gap:9px;font-size:.84rem;font-weight:700;
         letter-spacing:.16em;text-transform:uppercase;color:var(--green)}
.live h3 em{font-style:normal;color:var(--ink-3);letter-spacing:.06em;margin-left:auto;
            font-family:var(--body);font-weight:500;text-transform:none;font-size:.8rem}
.pulse{width:8px;height:8px;border-radius:99px;background:var(--red);flex:none;
       box-shadow:0 0 0 0 rgba(168,50,42,.5);animation:pulse 2.4s var(--ease) infinite}
@keyframes pulse{70%{box-shadow:0 0 0 9px rgba(168,50,42,0)}100%{box-shadow:0 0 0 0 rgba(168,50,42,0)}}
.live-row{display:grid;grid-template-columns:52px 1fr;gap:14px;align-items:baseline;
          padding:14px 0;border-top:1px solid var(--line-2);transition:opacity .2s var(--ease)}
.live-row:first-of-type{border-top:0;padding-top:16px}
.live-row:hover{opacity:.66}
.live-row time{color:var(--gold);font-weight:700;font-size:.82rem}
.live-row h4{font-family:var(--body);font-weight:600;font-size:.95rem;line-height:1.5}
.live .more{margin-top:auto;padding-top:16px;border-top:1px solid var(--line-2)}

/* pill chips — a swipe strip on phones */
.chips{display:flex;gap:8px;flex-wrap:wrap;margin:26px 0 6px}
.chips a{border:1px solid var(--line);background:var(--paper);border-radius:99px;
         padding:.5rem 1rem;font-size:.87rem;font-weight:500;color:var(--ink-2);
         transition:.22s var(--ease)}
.chips a:hover{border-color:var(--gold-2);color:var(--green)}
.chips a[aria-current]{background:var(--green);border-color:var(--green);color:var(--gold-2);
                       font-weight:600}

/* ── layout: thumbs list ────────────────────────────────────────────── */
.list{display:flex;flex-direction:column;gap:12px}
/* `minmax(0,1fr)` is load-bearing, and plain `1fr` is not enough: `1fr` carries
   an automatic minimum of min-content, so the row still stretched to the text
   and the thumbnail's box measured 131px inside a card clipped to 108 — the
   photo scaled to one height and was cut to another. The explicit 0 minimum
   pins the row to the card, so every thumbnail is the same box at every width. */
.li{display:grid;grid-template-columns:200px 1fr;grid-template-rows:minmax(0,1fr);gap:0;
    background:var(--paper);border-radius:var(--r);overflow:hidden;
    box-shadow:var(--sh-1);height:158px;
    transition:transform .28s var(--ease),box-shadow .28s var(--ease)}
.li:hover{transform:translateY(-3px);box-shadow:var(--sh-2)}
/* the thumbnail fills the row's full height; a fixed aspect-ratio left a white
   band under the shorter cards and made the list look broken */
.li .ph{height:100%;min-height:132px}
.li .ph .tag{position:absolute;top:11px;left:11px;z-index:2}
.li-b{padding:18px 22px;display:flex;flex-direction:column;justify-content:center}
/* Both are clamped so the row height cannot drift with the length of the copy.
   Without this a two-line standfirst made its row 158px and a one-line one made
   it 133px — and since the thumbnail fills the row, the same photograph would
   be cropped to a different ratio from one row to the next. */
.li-b h3{font-size:1.14rem;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;
         -webkit-box-orient:vertical;overflow:hidden}
.li-b p{color:var(--ink-2);font-size:.92rem;line-height:1.65;margin-top:.5rem;max-width:62ch;
        display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.li-m{display:flex;gap:14px;align-items:center;margin-top:.75rem}
/* every row identical. The first used to run wider with a bigger headline so it
   would lead the list, but next to the rest it just read as a broken row. */

/* ── layout: magazine ───────────────────────────────────────────────── */
.mag{display:grid;grid-template-columns:1.6fr 1fr;gap:16px;align-items:start}
.mag-lead{position:relative;border-radius:var(--r-l);overflow:hidden;min-height:420px;
          display:flex;align-items:flex-end;isolation:isolate;box-shadow:var(--sh-2)}
.mag-lead::before{content:"";position:absolute;inset:0;z-index:1;
                  background:linear-gradient(to top,rgba(6,29,24,.92),transparent 72%)}
.mag-lead .ph{position:absolute;inset:0}
.mag-lead-b{position:relative;z-index:2;padding:28px 30px;color:#fff}
.mag-lead h3{font-size:1.78rem;color:#fff;margin-top:.6rem;max-width:20ch}
.mag-lead p{color:rgba(255,255,255,.78);margin-top:.6rem;font-size:.94rem;max-width:50ch}
.mag-col{display:grid;gap:14px}
.mag-side{background:var(--paper);border-radius:var(--r);padding:19px 21px;box-shadow:var(--sh-1);
          transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.mag-side:hover{transform:translateY(-3px);box-shadow:var(--sh-2)}
.mag-side h3{font-size:1.06rem;margin-top:.55rem}
.mag-side p{color:var(--ink-2);font-size:.88rem;margin-top:.45rem}
.mag-rows{margin-top:16px;background:var(--paper);border-radius:var(--r);
          box-shadow:var(--sh-1);overflow:hidden}
.mag-row{display:flex;align-items:center;gap:18px;padding:17px 22px;
         border-top:1px solid var(--line-2);transition:background .2s var(--ease)}
.mag-row:first-child{border-top:0}
.mag-row:hover{background:var(--cream)}
.mag-row h3{font-family:var(--body);font-weight:600;font-size:1rem;flex:1}
.mag-row .when{min-width:84px;flex:none;text-align:right}

/* ── layout: timeline ───────────────────────────────────────────────── */
.tl{position:relative;padding-left:28px;max-width:860px}
.tl::before{content:"";position:absolute;top:6px;bottom:6px;left:6px;width:2px;
            background:linear-gradient(var(--line),transparent)}
.tl-day{font-family:var(--display);font-size:.9rem;font-weight:700;color:var(--gold);
        letter-spacing:.06em;text-transform:uppercase;margin:30px 0 13px;position:relative}
.tl-day:first-child{margin-top:0}
.tl-day::before{content:"";position:absolute;left:-28px;top:2px;width:14px;height:14px;
                border-radius:99px;background:var(--gold);border:3px solid var(--cream)}
.tl-item{display:block;background:var(--paper);border-radius:var(--r-s);padding:16px 19px;
         margin-bottom:10px;box-shadow:var(--sh-1);position:relative;
         transition:transform .25s var(--ease),box-shadow .25s var(--ease)}
.tl-item:hover{transform:translateX(5px);box-shadow:var(--sh-2)}
.tl-item::before{content:"";position:absolute;left:-25.5px;top:23px;width:8px;height:8px;
                 border-radius:99px;background:var(--line)}
.tl-item h3{font-size:1.08rem}
.tl-item p{color:var(--ink-2);font-size:.9rem;margin-top:.4rem;max-width:66ch}
.tl-item .when{display:block;margin-top:.55rem}

/* ── layout: ledger ─────────────────────────────────────────────────── */
.ledger{background:var(--paper);border-radius:var(--r);box-shadow:var(--sh-1);overflow:hidden}
.led{display:grid;grid-template-columns:118px 1fr auto;gap:20px;align-items:center;
     padding:19px 22px;border-top:1px solid var(--line-2);transition:background .2s var(--ease)}
.led:first-child{border-top:0}
.led:hover{background:var(--cream)}
.led-fig{font-weight:700;font-size:1.6rem;color:var(--green);text-align:center;line-height:1.15}
.led-fig small{display:block;font-size:.68rem;font-weight:500;color:var(--ink-3);margin-top:3px;
               letter-spacing:.05em;text-transform:uppercase}
.led-up{color:#0d6b47}
.led-dn{color:var(--red)}
.led-b h3{font-family:var(--body);font-weight:600;font-size:1rem}
.led-b p{color:var(--ink-3);font-size:.84rem;margin-top:.3rem}
.led-note{max-width:820px;margin-top:16px;color:var(--ink-3);font-size:.84rem;line-height:1.7}

/* ── layout: dossier ────────────────────────────────────────────────── */
.dossier{max-width:820px}
.dos{display:flex;gap:24px;padding:28px 0;border-top:1px solid var(--line)}
.dos:first-child{border-top:0;padding-top:4px}
.dos-n{font-weight:700;font-size:2rem;color:var(--line);line-height:1;min-width:48px;flex:none;
       transition:color .25s var(--ease)}
.dos:hover .dos-n{color:var(--gold)}
.dos h3{font-size:1.32rem;line-height:1.4}
.dos p{color:var(--ink-2);font-size:.97rem;line-height:1.75;margin-top:.6rem;max-width:64ch}
.dos-m{display:flex;gap:14px;align-items:center;margin-top:.8rem}
.byline{font-size:.83rem;font-weight:600;color:var(--green-3)}

/* ── layout: grid ───────────────────────────────────────────────────── */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--paper);border-radius:var(--r);overflow:hidden;box-shadow:var(--sh-1);
      display:flex;flex-direction:column;
      transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.card:hover{transform:translateY(-5px);box-shadow:var(--sh-2)}
.card .ph{aspect-ratio:4/3}
.card .ph .tag{position:absolute;top:12px;left:12px;z-index:2}
.card-b{padding:17px 19px 19px;display:flex;flex-direction:column;flex:1}
.card-b h3{font-size:1.1rem;line-height:1.4}
.card-b p{color:var(--ink-2);font-size:.89rem;margin-top:.5rem;flex:1}
.card-b .when{margin-top:.9rem}

/* ── article ────────────────────────────────────────────────────────── */
.crumbs{display:flex;gap:9px;align-items:center;color:var(--ink-3);font-size:.82rem;
        padding:22px 0 0}
.crumbs a:hover{color:var(--green)}
.art{max-width:720px;margin:0 auto;padding:8px 0 46px}
.art h1{font-size:2.35rem;line-height:1.2;margin:.7rem 0 0}
.art-stand{color:var(--ink-2);font-size:1.08rem;line-height:1.7;margin-top:1rem}
.art-meta{display:flex;flex-wrap:wrap;gap:16px;align-items:center;margin:22px 0;
          padding:16px 0;border-block:1px solid var(--line)}
.art-meta .avatar{width:34px;height:34px;border-radius:99px;background:var(--green);
                  color:var(--gold-2);display:grid;place-items:center;font-family:var(--display);
                  font-size:1rem}
.art-desk{display:flex;align-items:center;gap:11px}
.art-desk b{font-size:.9rem;font-weight:600}
.art-desk span{display:block;color:var(--ink-3);font-size:.78rem}
.figure{margin:26px 0}
.figure .ph{aspect-ratio:16/9;border-radius:var(--r)}
.figure figcaption{color:var(--ink-3);font-size:.82rem;line-height:1.65;margin-top:.7rem}
.figure figcaption b{display:block;color:var(--ink-2);font-weight:600}
.art-body p{font-size:1.06rem;line-height:1.85;margin-top:1.15rem;color:#1b302a}
.art-body h2{font-size:1.42rem;margin-top:2.1rem}
.art-body blockquote{margin:1.6rem 0;padding:2px 0 2px 20px;border-left:3px solid var(--gold);
                     font-family:var(--display);font-size:1.16rem;line-height:1.6;color:var(--green-2)}
.tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:30px;padding-top:22px;border-top:1px solid var(--line)}
.tags a{border:1px solid var(--line);border-radius:99px;padding:.36rem .82rem;font-size:.83rem;
        color:var(--ink-2)}
.tags a:hover{border-color:var(--gold-2);color:var(--green)}

/* ── policy pages ───────────────────────────────────────────────────── */
.doc{max-width:760px;margin:0 auto;padding:34px 0 50px}
.doc h1{font-size:2.2rem}
.doc .lede{font-family:var(--display);font-size:1.24rem;line-height:1.65;color:var(--green-2);
           margin-top:1rem;padding-left:20px;border-left:3px solid var(--gold)}
.doc h2{font-size:1.34rem;margin-top:2.3rem}
.doc p{margin-top:.95rem;line-height:1.85;color:#1b302a}
.doc ul{margin:.9rem 0 0;padding-left:1.1rem;color:#1b302a}
.doc li{margin-top:.55rem;line-height:1.8}
.doc .note{background:var(--paper);border-radius:var(--r-s);padding:18px 20px;
           box-shadow:var(--sh-1);margin-top:1.4rem;font-size:.94rem;color:var(--ink-2)}

.desks{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:1.5rem}
.desk{background:var(--paper);border-radius:var(--r-s);padding:18px 20px;box-shadow:var(--sh-1);
      display:flex;gap:14px}
.desk .avatar{width:40px;height:40px;flex:none;border-radius:99px;background:var(--green);
              color:var(--gold-2);display:grid;place-items:center;font-family:var(--display);
              font-size:1.15rem}
.desk h3{font-size:1.02rem}
.desk p{margin-top:.35rem;font-size:.88rem;color:var(--ink-2);line-height:1.65}

/* sections index */
.sx{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:1.4rem}
.sx a{background:var(--paper);border-radius:var(--r);padding:20px 22px;box-shadow:var(--sh-1);
      transition:transform .28s var(--ease),box-shadow .28s var(--ease)}
.sx a:hover{transform:translateY(-3px);box-shadow:var(--sh-2)}
.sx h3{font-size:1.14rem;color:var(--green)}
.sx p{color:var(--ink-2);font-size:.9rem;margin-top:.4rem}
.sx span{display:inline-block;margin-top:.7rem;font-size:.78rem;color:var(--gold);
         letter-spacing:.08em;text-transform:uppercase;font-weight:700}

/* search */
.searchbox{display:flex;gap:10px;margin-top:1.4rem;max-width:560px}
.searchbox input{flex:1;border:1px solid var(--line);background:var(--paper);border-radius:99px;
                 padding:.85rem 1.2rem;font:inherit;color:var(--ink)}
.searchbox input::placeholder{color:var(--ink-3)}
.searchbox button{background:var(--green);color:var(--gold-2);border-radius:99px;
                  padding:.85rem 1.6rem;font-weight:600}

/* 404 */
.oops{max-width:620px;margin:0 auto;padding:70px 0 60px;text-align:center}
.oops .big{font-family:var(--display);font-size:5rem;color:var(--gold);line-height:1}
.oops h1{font-size:1.9rem;margin-top:.6rem}
.oops p{color:var(--ink-2);margin-top:.9rem;line-height:1.8}
.oops .chips{justify-content:center}

.section-page{padding:30px 0 50px}
.pad{padding:38px 0 12px}

/* ── footer ─────────────────────────────────────────────────────────── */
.foot{background:var(--green);color:#cfdad5;margin-top:56px;padding:44px 0 0}
.f-in{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:34px}
.f-about img{height:44px;width:auto}
.f-about p{margin-top:14px;font-size:.92rem;line-height:1.75;color:#a9bcb5;max-width:38ch}
.foot h4{font-family:var(--display);font-size:.95rem;color:var(--gold-2);margin-bottom:12px}
.f-in a{display:block;font-size:.89rem;color:#a9bcb5;padding:.3rem 0;transition:color .2s var(--ease)}
.f-in a:hover{color:#fff}
/* block-level flex, not inline-flex: inline-flex let the four links run together
   on one line and the icons collided with the labels beside them */
.social a{display:flex;align-items:center;gap:10px}
.social svg{width:17px;height:17px;fill:currentColor;flex:none}
.f-bar{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;
       margin-top:38px;padding-top:20px;padding-bottom:24px;border-top:1px solid rgba(255,255,255,.1);
       font-size:.82rem;color:#8ba39b}

/* ── bottom tab bar — phones only ───────────────────────────────────── */
.tabbar{display:none}
@media(min-width:761px){.tabbar{display:none!important}}

/* ── phones: a news app, not a squeezed desktop ─────────────────────── */
/* Tablet band: the text column narrows but the thumbnail does not, so two lines
   stopped fitting and headlines were being cut with room still on the card.
   A taller row and a third line, and the standfirst steps aside. */
@media(min-width:761px) and (max-width:1023px){
  .li{height:188px}
  .li-b h3{-webkit-line-clamp:3}
  .li-b p{display:none}
}

@media(max-width:900px){
  .front{grid-template-columns:1fr}
  .mag{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2,1fr)}
  .f-in{grid-template-columns:1fr 1fr 1fr;gap:26px 18px}
  .f-about{grid-column:1 / -1}
}

@media(max-width:760px){
  .wrap{padding:0 20px}
  .nav{display:none}
  .burger{display:flex}
  .top-in{height:62px;gap:12px}
  .drawer{inset:62px 0 0}

  .front{padding:20px 0 0;gap:14px}
  .front-lead{min-height:340px;border-radius:22px}
  .front-lead h2{font-size:1.5rem}
  .front-lead p{display:none}     /* the standfirst repeats the headline at this size */
  .front-lead-b{padding:22px 22px 24px}
  .live{border-radius:22px;padding:19px 20px 17px}
  .live-row{grid-template-columns:48px 1fr;gap:12px;padding:12px 0}
  .live-row h4{font-size:.92rem}

  /* chips become a swipe strip: no wrapping, no boxes, an underline for active */
  /* The strip bleeds to both bezels. Its inset comes from a margin on the first
     chip, not from container padding — and `scroll-padding-left` has to match
     it, or snapping lands on the chip's own edge and scrolls the inset away.
     Measured: without it, scrollLeft settled at exactly 20 and the first chip
     sat flush on the bezel. */
  .chips{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none;gap:0;
         margin:18px -20px 4px;padding:0;
         scroll-snap-type:x proximity;scroll-padding-left:20px}
  .chips::-webkit-scrollbar{display:none}
  .chips>a:first-child{margin-left:20px}
  .chips::after{content:"";flex:none;width:20px}
  .chips a{flex:none;scroll-snap-align:start;border:0;background:transparent;
           padding:.45rem .1rem;margin-right:1.25rem;position:relative;border-radius:0}
  .chips a[aria-current]{background:transparent;color:var(--green);font-weight:700}
  .chips a[aria-current]::after{content:"";position:absolute;left:0;right:0;bottom:-1px;
                                height:3px;border-radius:99px;background:var(--gold)}

  /* cards collapse to compact rows: square thumb, three-line title */
  /* the phone row is its own fixed box, for the same reason */
  .li{grid-template-columns:1fr 108px;height:108px}
  .li .ph{min-height:0}
  .li .ph .tag{display:none}
  .li-b{padding:14px 16px;order:-1}
  .li-b h3{font-size:1rem;display:-webkit-box;-webkit-line-clamp:3;
           -webkit-box-orient:vertical;overflow:hidden}
  .li-b p{display:none}   /* the standfirst doubles page length and earns nothing here */
  .li-m{margin-top:.55rem}

  .grid{grid-template-columns:1fr;gap:12px}
  /* same fix as .li, same reason: `aspect-ratio` loses to the flex row's
     stretch, so a longer headline pulled the thumbnail to 130px while its
     neighbour stayed 108 and the photo was cropped two different ways. Pin the
     row's height and give the thumbnail a height instead of a ratio. */
  .card{flex-direction:row;height:108px}
  .card .ph{aspect-ratio:auto;width:108px;height:100%;flex:none;order:2}
  .card .ph .tag{display:none}
  .card-b{order:1;padding:14px 16px;justify-content:center;min-width:0}
  .card-b h3{font-size:1rem;display:-webkit-box;-webkit-line-clamp:3;
             -webkit-box-orient:vertical;overflow:hidden}
  .card-b p{display:none}

  .mag-lead{min-height:300px;border-radius:22px}
  .mag-lead h3{font-size:1.42rem}
  .mag-lead p{display:none}
  .mag-row{padding:15px 18px;gap:14px}
  .mag-row h3{font-size:.96rem}

  .led{grid-template-columns:96px 1fr;gap:14px}
  .led .when{grid-column:2;justify-self:start}
  .led-fig{font-size:1.35rem}

  .dos{gap:16px;padding:22px 0}
  .dos-n{font-size:1.6rem;min-width:34px}
  .dos h3{font-size:1.14rem}

  .tl{padding-left:24px}
  .tl-item:hover{transform:none}

  .art h1{font-size:1.72rem}
  .art-body p{font-size:1.02rem}
  .doc h1{font-size:1.72rem}
  .desks,.sx{grid-template-columns:1fr}

  /* three footer columns side by side — one column buries the footer and two
     push the third onto its own row; corrected twice on earlier sites */
  .f-in{grid-template-columns:repeat(3,1fr);gap:22px 12px}
  .f-about{grid-column:1 / -1}
  .foot h4{font-size:.88rem}
  .f-in a{font-size:.83rem}
  .f-bar{flex-direction:column;gap:6px}

  .tabbar{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:70;
          background:rgba(255,253,249,.96);backdrop-filter:blur(14px);
          border-top:1px solid var(--line);
          padding:6px 4px calc(6px + env(safe-area-inset-bottom))}
  .tabbar a{flex:1;display:flex;flex-direction:column;align-items:center;gap:3px;padding:7px 0;
            color:var(--ink-3);font-size:.66rem;font-weight:600;letter-spacing:.01em}
  .tic{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.75;
       stroke-linecap:round;stroke-linejoin:round}
  .tabbar a[aria-current]{color:var(--green)}
  .tabbar a[aria-current] .tic{stroke:var(--gold)}
  body{padding-bottom:76px}
  .drawer{padding-bottom:120px}
}

@media(max-width:400px){
  .brand img{height:32px}
  .f-in a{font-size:.79rem}
  .social a{flex-direction:column;align-items:flex-start;gap:3px}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}

/* ── layout: board — facility state is the news ──────────────────────── */
/* Health readers want to know what is open before they want a report, so the
   state leads and the prose follows. Cards would bury it. */
.board{background:var(--paper);border-radius:var(--r);box-shadow:var(--sh-1);overflow:hidden}
.bd{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;padding:17px 22px;
    border-top:1px solid var(--line-2);transition:background .2s var(--ease)}
.bd:first-child{border-top:0}
.bd:hover{background:var(--cream)}
.bd h3{font-family:var(--body);font-weight:600;font-size:1rem}
.bd h3 em{font-style:normal;color:var(--ink-3);font-weight:500;font-size:.83rem;
          margin-left:9px}
.bd p{color:var(--ink-3);font-size:.85rem;margin-top:.3rem;line-height:1.55;max-width:64ch}
.state{border-radius:99px;padding:.34rem .82rem;font-size:.72rem;font-weight:700;
       letter-spacing:.06em;text-transform:uppercase;white-space:nowrap;flex:none}
.state.ok{background:#e0efe6;color:#0d6b47}
.state.part{background:var(--gold-3);color:#8a6620}
.state.out{background:#f7e3e1;color:var(--red)}
.board-reports{margin-top:18px}

/* ── layout: capitals — grouped by who spoke ─────────────────────────── */
.caps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.cap{background:var(--paper);border-radius:var(--r);box-shadow:var(--sh-1);padding:20px 22px;
     transition:transform .28s var(--ease),box-shadow .28s var(--ease)}
.cap:hover{transform:translateY(-3px);box-shadow:var(--sh-2)}
.cap-place{font-family:var(--display);font-size:.73rem;font-weight:700;letter-spacing:.15em;
           text-transform:uppercase;color:var(--gold)}
.cap h3{font-size:1.08rem;color:var(--green);margin-top:.3rem}
.cap ul{list-style:none;margin:.9rem 0 0;padding:0}
.cap li{border-top:1px solid var(--line-2)}
.cap li:first-child{border-top:0}
.cap li a{display:block;padding:11px 0;font-size:.92rem;line-height:1.5;color:var(--ink-2);
          transition:color .2s var(--ease)}
.cap li a:hover{color:var(--green)}

/* ── layout: qa — the answer stays on the page ───────────────────────── */
/* Putting the answer behind a link would defeat the whole point of the desk. */
.qa{max-width:840px}
.qa-item{background:var(--paper);border-radius:var(--r);box-shadow:var(--sh-1);
         padding:22px 25px 20px;margin-bottom:12px}
.qa-item h3{display:flex;gap:14px;font-size:1.16rem;line-height:1.45}
.qa-item h3 span{color:var(--gold);font-weight:700;flex:none;font-size:1.1rem;line-height:1.5}
.qa-item p{margin-top:.65rem;margin-left:32px;color:var(--ink-2);line-height:1.8;
           font-size:.97rem;max-width:64ch}
.qa-item .more{margin-top:1rem;margin-left:32px}

@media(max-width:900px){
  .caps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .caps{grid-template-columns:1fr}
  .bd{grid-template-columns:1fr;gap:9px}
  .state{justify-self:start}
  .qa-item{padding:19px 20px 17px}
  .qa-item h3{font-size:1.05rem;gap:11px}
  .qa-item p{margin-left:0;font-size:.94rem}
  .qa-item .more{margin-left:0}
}
