/* ============================================================
   The Hand Clinic — Prof David Warwick
   Design system. Refined clinical: clean system-sans (David's
   preference, matches the medicolegal sister site), Hand Clinic
   blue, generous whitespace, soft depth. No web fonts = no
   render-blocking (fixes the audit finding). Theme-light only.
   ============================================================ */

:root{
  /* Brand palette (matches hand-wrist-medicolegal.co.uk) */
  --ink:#14375A;         /* deep navy — headings, primary text */
  --ink-soft:#42586B;    /* body copy */
  --ink-faint:#7791A3;   /* captions, meta */
  --brand:#1E74C4;       /* clinical blue — links, accents */
  --brand-deep:#15588F;  /* hover / secondary */
  --brand-ink:#0F3A63;   /* darkest for CTA text on tint */
  --line:#D4E2F0;        /* hairline borders */
  --line-soft:#E8F1F9;
  --paper:#FFFFFF;
  --paper-alt:#F7FBFF;   /* alt section bg */
  --tint:#EAF3FB;        /* card / chip tint */
  --tint-deep:#DCEBF8;
  --band:#123A61;        /* deep CTA band */
  --band-2:#1E74C4;

  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  --radius:14px;
  --radius-sm:9px;
  --radius-pill:999px;

  --shadow-sm:0 1px 2px rgba(20,55,90,.06), 0 2px 8px rgba(20,55,90,.05);
  --shadow-md:0 4px 14px rgba(20,55,90,.08), 0 10px 30px rgba(20,55,90,.07);
  --shadow-lg:0 10px 40px rgba(20,55,90,.14);

  --container:1140px;
  --gutter:clamp(20px,5vw,40px);
  --section-y:clamp(56px,8vw,104px);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink-soft);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

h1,h2,h3,h4{color:var(--ink);margin:0;font-weight:700;letter-spacing:-.01em;line-height:1.18}
h1{font-size:clamp(2.15rem,1.4rem + 3vw,3.35rem)}
h2{font-size:clamp(1.55rem,1.15rem + 1.7vw,2.15rem)}
h3{font-size:1.2rem;letter-spacing:-.005em}
h4{font-size:1.02rem}
p{margin:0 0 1.05em}
a{color:var(--brand);text-decoration:none;transition:color .18s ease}
a:hover{color:var(--brand-deep)}
img{max-width:100%;height:auto;display:block}
strong{color:var(--ink);font-weight:700}
ul,ol{margin:0 0 1.05em;padding-left:1.2em}
li{margin:.3em 0}
:focus-visible{outline:3px solid var(--brand);outline-offset:2px;border-radius:4px}

/* ---------- Layout primitives ---------- */
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:var(--gutter)}
.container-narrow{max-width:820px}
.section{padding-block:var(--section-y)}
.section--tint{background:var(--paper-alt)}
.section--band{background:linear-gradient(135deg,var(--band),var(--brand-deep));color:#fff}
.stack>*+*{margin-top:1.05em}
.center{text-align:center}
.eyebrow{
  display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--brand);margin-bottom:.7em;
}
.section--band .eyebrow{color:#BAD9F4}
.lede{font-size:1.15rem;color:var(--ink-soft);max-width:64ch}
.section-head{max-width:70ch;margin-bottom:clamp(30px,4vw,52px)}
.section-head.center{margin-inline:auto}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.5em;justify-content:center;
  font:inherit;font-weight:600;font-size:1rem;line-height:1;
  padding:.92em 1.5em;border-radius:var(--radius-pill);
  border:1.5px solid transparent;cursor:pointer;transition:all .18s ease;
  text-decoration:none;white-space:nowrap;
}
.btn-primary{background:var(--brand);color:#fff;box-shadow:0 6px 18px rgba(30,116,196,.28)}
.btn-primary:hover{background:var(--brand-deep);color:#fff;transform:translateY(-1px);box-shadow:0 10px 24px rgba(30,116,196,.34)}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--brand);color:var(--brand);background:var(--paper-alt)}
.btn-white{background:#fff;color:var(--ink)}
/* Solicitor route to the medico-legal site. Deliberately the deep navy, not
   the bright patient blue, so the two hero CTAs read as different audiences
   at a glance (Jan's 7 Aug 2026 request for "a different colour"). */
.btn-legal{background:var(--ink);color:#fff;box-shadow:0 6px 18px rgba(20,55,90,.26)}
.btn-legal:hover{background:var(--brand-ink);color:#fff;transform:translateY(-1px);box-shadow:0 10px 24px rgba(20,55,90,.32)}
.btn-white:hover{background:#fff;color:var(--brand-deep);transform:translateY(-1px)}
.btn-lg{padding:1.05em 1.8em;font-size:1.05rem}
.btn-block{width:100%}
/* Long labels (e.g. the medico-legal site button) overflow a 375px phone
   when pills refuse to wrap — let them wrap on small screens only. */
@media (max-width:480px){.btn{white-space:normal;text-align:center}}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line-soft);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;height:78px}
.brand{display:flex;align-items:center;gap:12px;flex-shrink:0}
.brand img{height:38px;width:auto}
.brand .brand-tag{
  font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink-faint);border-left:1px solid var(--line);padding-left:12px;
}
.nav{display:flex;align-items:center;gap:4px}
.nav a{
  color:var(--ink);font-weight:500;font-size:.96rem;padding:.55em .8em;border-radius:8px;
}
.nav a:hover{background:var(--tint);color:var(--brand-deep)}
.nav a.is-active{color:var(--brand)}
.nav-cta{margin-left:10px}
.nav-toggle{display:none;background:none;border:none;padding:8px;cursor:pointer;color:var(--ink)}
.nav-toggle svg{display:block}

/* Dropdown (Conditions) */
.has-sub{position:relative}
.submenu{
  position:absolute;top:calc(100% + 6px);left:0;min-width:240px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);
  box-shadow:var(--shadow-md);padding:8px;opacity:0;visibility:hidden;
  transform:translateY(6px);transition:all .16s ease;
}
.has-sub:hover .submenu,.has-sub:focus-within .submenu{opacity:1;visibility:visible;transform:translateY(0)}
.submenu a{display:block;padding:.5em .7em;font-size:.92rem;border-radius:6px}

@media (max-width:940px){
  .nav-toggle{display:inline-flex}
  .nav{
    position:fixed;z-index:90;inset:78px 0 auto 0;flex-direction:column;align-items:stretch;
    background:#fff;border-bottom:1px solid var(--line);padding:14px var(--gutter) 26px;
    gap:2px;box-shadow:var(--shadow-md);transform:translateY(-12px);opacity:0;
    visibility:hidden;transition:all .2s ease;max-height:calc(100vh - 78px);overflow-y:auto;
  }
  .nav.open{transform:translateY(0);opacity:1;visibility:visible}
  .nav a{padding:.8em .6em;font-size:1.05rem;border-radius:8px}
  .nav-cta{margin:10px 0 0}
  .submenu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;
    border-left:2px solid var(--line);border-radius:0;margin:2px 0 6px 12px;padding:2px 0}
  .brand .brand-tag{display:none}
}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden;background:
  radial-gradient(120% 120% at 85% -10%,var(--tint) 0%,rgba(234,243,251,0) 55%),var(--paper)}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(30px,5vw,64px);align-items:center;
  padding-block:clamp(46px,7vw,88px)}
.hero h1{margin-bottom:.35em;font-size:clamp(1.85rem,1.25rem + 2.1vw,2.6rem)} /* David asked for a smaller hero headline, Aug 2026 */
.hero .lede{margin-bottom:1.6em}
.hero-cta{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.hero-phone{display:inline-flex;align-items:center;gap:.5em;font-weight:600;color:var(--ink)}
.hero-phone:hover{color:var(--brand)}
/* Doctify award badge. The file is 899x519 LANDSCAPE (a 2026 "Outstanding
   Patient Experience" award card), not a square logo — sizing it as a square
   rendered it as a tiny squashed strip. Give it real width and let the height
   follow. */
.doctify-badge{display:block;margin:1.1em 0 1em;max-width:230px}
.doctify-badge img{width:100%;height:auto;border-radius:var(--radius-sm);box-shadow:var(--shadow-sm)}
.doctify-badge:hover img{box-shadow:var(--shadow-md)}
.direct-contact{font-weight:600}
.direct-contact a{color:var(--brand)}

/* Dupuytren's illustration.
   The prose container is 1140px wide but caps its children at 760px, which
   leaves ~380px of empty space to the right. On wide screens the illustration
   floats into THAT space, so it costs the reading column nothing — floating it
   inside the 760px flow squeezed the text into a very narrow ribbon.
   Below 1080px there is no spare space, so it sits inline and modest. */
.dup-figure{margin:0 0 1.6em;max-width:230px}
.dup-figure img{width:100%;height:auto;border-radius:var(--radius)}
@media (min-width:620px){
  .dup-figure{float:right;margin:.2em 0 1.4em 2em;max-width:230px}
}
@media (min-width:1080px){
  .dup-figure{width:300px;max-width:300px;margin:.2em 0 1.6em 3rem}
}

/* Implant images (joint-replacement page). Source files have mixed aspect
   ratios, so a fixed box with object-fit keeps the row aligned without
   distorting any of them. */
.implant-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin:30px 0 0}
.implant-grid figure{margin:0;text-align:center}
.implant-grid img{width:100%;height:190px;object-fit:contain;background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);padding:10px}
.implant-grid figcaption{margin-top:.6em;font-size:.85rem;color:var(--ink-faint);font-weight:600}
@media (max-width:820px){.implant-grid{grid-template-columns:repeat(2,1fr)}}

/* Photographs on the conditions page. */
.cond-photos{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin:0 0 34px}
.cond-photos figure{margin:0}
.cond-photos img{width:100%;height:280px;object-fit:cover;border-radius:var(--radius);display:block;border:1px solid var(--tint-deep)}
.cond-photos figcaption{margin-top:.6em;font-size:.86rem;color:var(--muted)}
@media (max-width:700px){.cond-photos{grid-template-columns:1fr}.cond-photos img{height:220px}}

/* Direct contact line under the hero CTAs: David's own email + mobile and the
   medico-legal link. Deliberately quieter than the buttons above it. */
.hero-direct{margin:1.1em 0 0;font-size:.92rem;color:var(--muted);display:flex;flex-wrap:wrap;gap:.55em;align-items:center}
.hero-direct a{color:var(--ink);font-weight:600;text-decoration:none;border-bottom:1px solid var(--tint-deep)}
.hero-direct a:hover{color:var(--brand);border-bottom-color:var(--brand)}
.hero-direct span{color:var(--tint-deep)}
.hero-cred{display:flex;flex-wrap:wrap;gap:8px;margin-top:1.8em}
/* The three chips total ~765px against a ~573px column, so a plain flex wrap
   strands the third chip alone under the other two. Compose it deliberately
   instead: the long Diploma chip gets its own row, the two shorter chips pair
   beneath it. Phones keep the flex wrap (each chip already sits on its own line). */
@media (min-width:821px){
  .hero-cred{display:grid;grid-template-columns:max-content max-content;justify-content:start}
  .hero-cred>.chip:first-child{grid-column:1/-1}
  .hero-cred>*{justify-self:start}
}
.chip-link{text-decoration:none;transition:border-color .18s ease,color .18s ease}
.chip-link:hover{border-color:var(--brand);color:var(--brand-deep)}
.chip{
  display:inline-flex;align-items:center;gap:.4em;font-size:.82rem;font-weight:600;
  color:var(--brand-ink);background:var(--tint);border:1px solid var(--tint-deep);
  padding:.42em .8em;border-radius:var(--radius-pill);
}
.hero-photo{position:relative}
.hero-photo img{
  width:100%;border-radius:var(--radius);box-shadow:var(--shadow-lg);
  aspect-ratio:652/739;object-fit:cover;object-position:center top;
}
.hero-photo .photo-badge{
  position:absolute;left:-18px;bottom:22px;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-sm);box-shadow:var(--shadow-md);padding:12px 16px;max-width:220px;
}
.hero-photo .photo-badge strong{display:block;color:var(--ink);font-size:.98rem}
.hero-photo .photo-badge span{font-size:.8rem;color:var(--ink-faint)}
@media (max-width:820px){
  .hero-grid{grid-template-columns:1fr;gap:34px}
  /* Photo sits BELOW the copy on phones. It previously had order:-1, which put
     a full screen of photograph ahead of the headline, the lede and the "Book a
     consultation" button — so a visitor had to scroll past a face before
     learning what the page was or how to get in touch. Desktop is unaffected;
     there the photo and headline sit side by side and nothing is pushed down. */
  .hero-photo{max-width:420px;margin-inline:auto}
  .hero-photo .photo-badge{left:auto;right:14px}
}

/* ---------- Stats / trust band ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(16px,3vw,32px)}
.stat{text-align:center;padding:6px}
.stat .num{font-size:clamp(1.9rem,1.2rem + 2vw,2.7rem);font-weight:700;color:var(--brand);
  letter-spacing:-.02em;line-height:1}
.stat .lbl{margin-top:.5em;font-size:.9rem;color:var(--ink-soft);font-weight:500}
@media (max-width:620px){.stats{grid-template-columns:repeat(2,1fr);gap:26px 16px}}

/* ---------- Card grids ---------- */
.grid{display:grid;gap:22px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
@media (max-width:900px){.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:600px){.grid-3,.grid-2{grid-template-columns:1fr}}

.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 24px;box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  display:flex;flex-direction:column;
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--tint-deep)}
.card .ico{
  width:46px;height:46px;border-radius:12px;background:var(--tint);color:var(--brand);
  display:grid;place-items:center;margin-bottom:16px;flex-shrink:0;
}
.card .ico svg{width:24px;height:24px}
.card h3{margin-bottom:.4em}
.card p{color:var(--ink-soft);font-size:.98rem;margin-bottom:1em}
.card .card-link{margin-top:auto;font-weight:600;font-size:.92rem;display:inline-flex;align-items:center;gap:.35em}
.card .card-link::after{content:"→";transition:transform .18s ease}
.card:hover .card-link::after{transform:translateX(3px)}
.card-link{color:var(--brand)}

/* Location card */
.loc-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column}
.loc-card .loc-body{padding:24px}
.loc-card h3{margin-bottom:.15em}
.loc-card .loc-town{color:var(--brand);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.7em}
.loc-card address{font-style:normal;color:var(--ink-soft);font-size:.95rem;margin-bottom:1em}
.loc-card .loc-link{margin-top:auto;font-weight:600;font-size:.92rem}

/* ---------- Testimonials ---------- */
.quote{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px 26px;
  box-shadow:var(--shadow-sm);position:relative;display:flex;flex-direction:column;
}
.quote::before{content:"\201C";position:absolute;top:6px;left:18px;font-size:4rem;line-height:1;
  color:var(--tint-deep);font-family:Georgia,serif;pointer-events:none}
.quote blockquote{margin:0 0 1em;position:relative;color:var(--ink);font-size:1.02rem;line-height:1.55}
.quote .attrib{margin-top:auto;font-size:.9rem;color:var(--ink-faint);font-weight:600}
.quote .attrib b{color:var(--ink);display:block;font-weight:700}

/* ---------- CTA band ---------- */
.cta-band{border-radius:0}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap}
.cta-inner h2{color:#fff}
.cta-inner p{color:rgba(255,255,255,.85);margin:.4em 0 0;max-width:52ch}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap}

/* ---------- Prose (content pages) ---------- */
.prose{max-width:760px}
/* When prose IS the container, keep the container full-width and cap the
   reading column so it left-aligns with the page-hero heading (not centered). */
.container.prose{max-width:var(--container)}
.container.prose>*{max-width:760px}
.prose h2{margin:1.9em 0 .6em}
.prose h3{margin:1.55em 0 .5em}
.prose>:first-child{margin-top:0}
.section-head h2 + .lede,.section-head h2 + p{margin-top:.55em}
.page-hero h1 + .lede{margin-top:.5em}
.prose ul{padding-left:1.15em}
.prose li{color:var(--ink-soft)}
.prose .callout{
  background:var(--paper-alt);border:1px solid var(--line);border-left:4px solid var(--brand);
  border-radius:var(--radius-sm);padding:18px 22px;margin:1.6em 0;
}
.prose .callout>:last-child{margin-bottom:0}

/* Page hero (interior pages) */
.page-hero{background:var(--paper-alt);border-bottom:1px solid var(--line-soft);padding-block:clamp(40px,6vw,72px)}
.breadcrumb{font-size:.85rem;color:var(--ink-faint);margin-bottom:1em}
.breadcrumb a{color:var(--ink-faint)}
.breadcrumb a:hover{color:var(--brand)}
.page-hero h1{margin-bottom:.3em}
.page-hero .lede{margin-bottom:0}

/* Pricing table */
.price-table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden}
.price-table th,.price-table td{padding:16px 20px;text-align:left;border-bottom:1px solid var(--line-soft)}
.price-table th{background:var(--paper-alt);font-weight:700;color:var(--ink);font-size:.9rem;
  text-transform:uppercase;letter-spacing:.05em}
.price-table td:last-child{text-align:right;font-weight:700;color:var(--ink);white-space:nowrap}
.price-table tr:last-child td{border-bottom:none}

/* Contact split */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,4vw,52px);align-items:start}
@media (max-width:800px){.contact-grid{grid-template-columns:1fr}}
.contact-item{display:flex;gap:14px;margin-bottom:20px}
.contact-item .ci-ico{width:42px;height:42px;border-radius:11px;background:var(--tint);color:var(--brand);
  display:grid;place-items:center;flex-shrink:0}
.contact-item .ci-ico svg{width:20px;height:20px}
.contact-item h4{margin-bottom:.15em}
.contact-item a{font-weight:600}
.contact-item .muted{color:var(--ink-faint);font-size:.92rem}

/* ---------- Footer ---------- */
.site-footer{background:var(--ink);color:#C6D6E6;padding-block:clamp(48px,6vw,72px) 0;font-size:.94rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:36px}
.site-footer h4{color:#fff;font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:1em}
.site-footer a{color:#C6D6E6}
.site-footer a:hover{color:#fff}
.site-footer ul{list-style:none;padding:0;margin:0}
.site-footer li{margin:.5em 0}
.footer-brand img{height:40px;width:auto;margin-bottom:16px;filter:brightness(0) invert(1);opacity:.95}
.footer-brand p{color:#9FB6CC;font-size:.9rem;max-width:34ch}
.footer-venues address{font-style:normal;color:#9FB6CC;font-size:.88rem;line-height:1.5;margin-bottom:.9em}
.footer-venues address b{color:#DCE8F3;display:block;font-weight:600}
.footer-bottom{margin-top:clamp(36px,5vw,56px);border-top:1px solid rgba(255,255,255,.12);
  padding-block:22px;font-size:.82rem;color:#8AA3BC;display:flex;justify-content:space-between;
  gap:16px;flex-wrap:wrap}
.footer-bottom a{color:#8AA3BC}
@media (max-width:820px){.footer-grid{grid-template-columns:1fr 1fr;gap:30px}}
@media (max-width:520px){.footer-grid{grid-template-columns:1fr}}

/* ---------- Motion: staggered reveal on load ---------- */
[data-reveal]{opacity:0;transform:translateY(16px);animation:reveal .7s cubic-bezier(.2,.7,.2,1) forwards}
@keyframes reveal{to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){
  [data-reveal]{animation:none;opacity:1;transform:none}
  .card:hover,.btn-primary:hover,.btn-white:hover{transform:none}
}

/* ---------- Location directions card (reliable, no third-party frame) ---------- */
.map-card{background:var(--paper-alt);border:1px solid var(--line);border-radius:var(--radius);
  padding:38px 28px;text-align:center;display:flex;flex-direction:column;align-items:center;
  justify-content:center;min-height:300px;height:100%}
.map-card .ico{width:54px;height:54px;border-radius:15px;background:var(--tint);color:var(--brand);
  display:grid;place-items:center;margin-bottom:18px}
.map-card .ico svg{width:26px;height:26px}
.map-card h3{margin-bottom:.3em}
.map-card address{font-style:normal;color:var(--ink-soft);margin-bottom:1.3em;max-width:32ch}

/* ---------- FAQ (AEO: matches how people ask AI) ---------- */
.faq{border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-item summary{cursor:pointer;padding:18px 42px 18px 0;font-weight:600;color:var(--ink);
  font-size:1.05rem;position:relative;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";position:absolute;right:6px;top:50%;transform:translateY(-50%);
  font-size:1.6rem;line-height:1;color:var(--brand);font-weight:400;transition:transform .2s}
.faq-item[open] summary::after{content:"\2212"}
.faq-a{padding:0 0 20px;color:var(--ink-soft);max-width:72ch}
.faq-a>:last-child{margin-bottom:0}

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.text-muted{color:var(--ink-faint)}
.divider{height:1px;background:var(--line);border:0;margin:0}
.skip-link{position:absolute;left:-999px;top:0;background:var(--brand);color:#fff;padding:10px 16px;
  border-radius:0 0 8px 0;z-index:100}
.skip-link:focus{left:0;color:#fff}

/* Anchored hub cards land below the sticky header, not underneath it. */
.card[id]{scroll-margin-top:96px}
