/* ==========================================================================
   Maths Schools — design system
   Independent guide to the UK's specialist maths schools.
   ========================================================================== */

:root {
  /* Palette — light */
  --ink: #161f33;
  --ink-soft: #3d4657;
  --muted: #646d7d;
  --bg: #faf9f5;
  --surface: #ffffff;
  --surface-2: #f2f0e8;
  --border: #e5e0d3;
  --border-strong: #d2cab5;
  --accent: #0b6e5f;
  --accent-dark: #084f44;
  --accent-tint: #e4f2ee;
  --gold: #b5760a;
  --gold-tint: #faf1de;
  --danger: #a5311f;
  --danger-tint: #fbeae7;
  --link: #0b5c8c;
  --focus: #1a6fd1;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  --container: 1180px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(22, 31, 51, 0.06);
  --shadow: 0 4px 16px rgba(22, 31, 51, 0.08);
  --shadow-lg: 0 12px 40px rgba(22, 31, 51, 0.14);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #eef1f6;
    --ink-soft: #c7cddb;
    --muted: #96a0b5;
    --bg: #0f1420;
    --surface: #171d2c;
    --surface-2: #1d2436;
    --border: #2b3349;
    --border-strong: #3a4460;
    --accent: #3fbfa8;
    --accent-dark: #6fd6c2;
    --accent-tint: #133029;
    --gold: #e2a94d;
    --gold-tint: #2e2413;
    --danger: #e8776a;
    --danger-tint: #34201d;
    --link: #6cb3ec;
    --focus: #6cb3ec;
    color-scheme: dark;
  }
  img { opacity: 0.92; }
}

/* ---- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; line-height: 1.22; margin: 0 0 0.5em; color: var(--ink); }
h1 { font-size: clamp(2rem, 1.6rem + 1.8vw, 3rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2.05rem); margin-top: 2.4em; }
h3 { font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem); margin-top: 1.8em; }
h4 { font-size: 1.08rem; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--link); text-decoration-color: rgba(11, 92, 140, 0.35); text-underline-offset: 0.16em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--focus); outline-offset: 2px; border-radius: 2px;
}
ul, ol { padding-left: 1.3em; }
li { margin-bottom: 0.4em; }
hr { border: none; border-top: 1px solid var(--border); margin: 2.5em 0; }
small { color: var(--muted); }
code { font-family: var(--font-mono); font-size: 0.9em; background: var(--surface-2); padding: 0.1em 0.4em; border-radius: 4px; }
strong { color: var(--ink); }
::selection { background: var(--accent-tint); color: var(--accent-dark); }

/* ---- Layout ----------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.prose { max-width: 740px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
main { display: block; }
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }
.stack { display: flex; flex-direction: column; gap: 8px; }
.cluster { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---- Skip link ---------------------------------------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm); z-index: 200; transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* ---- Site header -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__bar { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-weight: 700; font-size: 1.28rem; color: var(--ink); text-decoration: none; margin-right: auto; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(155deg, var(--accent), var(--accent-dark)); color: #fff; font-family: var(--font-serif);
  font-weight: 700; font-size: 1.15rem; flex: none; box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; font-weight: 600; padding: 8px 12px; border-radius: 7px; white-space: nowrap; }
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.nav a.is-active { color: var(--accent-dark); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }
.search-box { position: relative; }
.search-box input[type="search"] {
  width: 210px; padding: 8px 12px 8px 34px; border-radius: 20px; border: 1px solid var(--border-strong);
  background: var(--surface) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="none" stroke="%23646d7d" stroke-width="2" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="m21 21-4.3-4.3"/></svg>') no-repeat 11px center;
  font-size: 0.88rem; color: var(--ink); transition: width 0.15s ease;
}
.search-box input[type="search"]:focus { width: 260px; }
.search-results {
  position: absolute; top: calc(100% + 8px); right: 0; width: 340px; max-height: 420px; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: none; z-index: 150;
}
.search-results.is-open { display: block; }
.search-results a { display: block; padding: 10px 14px; text-decoration: none; border-bottom: 1px solid var(--border); }
.search-results a:last-child { border-bottom: none; }
.search-results a:hover, .search-results a.is-selected { background: var(--surface-2); }
.search-results .sr-title { font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.search-results .sr-kind { font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.search-empty { padding: 14px; font-size: 0.85rem; color: var(--muted); }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 62px 0 0 0; background: var(--surface); flex-direction: column; align-items: stretch;
    padding: 10px 20px 30px; overflow-y: auto; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: 0.16s ease; }
  .nav a { padding: 13px 6px; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 1.02rem; }
  body.nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px;
    border: 1px solid var(--border-strong); background: var(--surface); cursor: pointer; flex: none;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: 0.15s;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .search-box input[type="search"] { width: 140px; }
  .search-box input[type="search"]:focus { width: 170px; }
}

/* ---- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.94rem; padding: 11px 20px;
  border-radius: 8px; border: 1px solid transparent; cursor: pointer; text-decoration: none; line-height: 1.2;
  font-family: var(--font-sans);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); text-decoration: none; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--outline:hover { background: var(--surface-2); text-decoration: none; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { filter: brightness(0.92); text-decoration: none; }
.btn--sm { padding: 7px 14px; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---- Hero -------------------------------------------------------- */
.hero { padding: 70px 0 56px; position: relative; }
.hero__eyebrow { display: inline-block; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-dark); background: var(--accent-tint); padding: 5px 12px; border-radius: 20px; margin-bottom: 18px; }
.hero__lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 640px; margin: 18px 0 30px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--border); }
.stat .stat__value { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: var(--accent-dark); line-height: 1; }
.stat .stat__label { font-size: 0.86rem; color: var(--muted); margin-top: 6px; max-width: 160px; }

/* ---- Cards -------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--border-strong); }
.card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.card h3 { margin: 0 0 6px; font-size: 1.18rem; }
.card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 10px; }
.card__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.82rem; color: var(--muted); margin-top: 12px; }
.card__meta span { display: inline-flex; align-items: center; gap: 5px; }

.school-card { display: flex; flex-direction: column; height: 100%; }
.school-card__facts { list-style: none; padding: 0; margin: 12px 0 0; font-size: 0.85rem; color: var(--ink-soft); display: grid; gap: 5px; }
.school-card__facts li { margin: 0; display: flex; gap: 6px; }
.school-card__facts li::before { content: "—"; color: var(--border-strong); }

/* ---- Badges / tags -------------------------------------------------------- */
.tag {
  display: inline-flex; align-items: center; gap: 5px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; padding: 3px 9px; border-radius: 20px; line-height: 1.5; white-space: nowrap;
}
.tag--open { background: var(--accent-tint); color: var(--accent-dark); }
.tag--preopening { background: var(--gold-tint); color: var(--gold); }
.tag--independent { background: #ece4fb; color: #5a3aa8; }
@media (prefers-color-scheme: dark) { .tag--independent { background: #2a2245; color: #b8a4ec; } }
.tag--tier1 { background: var(--surface-2); color: var(--ink-soft); }

.fact-verified, .fact-unverified { border-bottom: 1px dotted var(--border-strong); cursor: help; }
.fact-unverified { border-bottom-color: var(--gold); }
.verify-badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--gold); background: var(--gold-tint); padding: 2px 7px; border-radius: 5px;
  vertical-align: middle; margin-left: 6px; text-decoration: none;
}

/* ---- Alerts / callouts -------------------------------------------------------- */
.callout { border: 1px solid var(--border); border-left: 4px solid var(--accent); background: var(--surface); border-radius: var(--radius); padding: 18px 22px; margin: 1.6em 0; }
.callout p:last-child { margin-bottom: 0; }
.callout--gold { border-left-color: var(--gold); background: var(--gold-tint); }
.callout--danger { border-left-color: var(--danger); background: var(--danger-tint); }
.callout--accent { border-left-color: var(--accent); background: var(--accent-tint); }
.callout__title { font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }

.banner { background: var(--ink); color: #fff; }
.banner .container { padding-top: 12px; padding-bottom: 12px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 0.92rem; }
.banner a { color: #fff; font-weight: 700; }
.banner strong { color: var(--gold); }

/* ---- Tables -------------------------------------------------------- */
.table-wrap { overflow-x: auto; margin: 1.6em 0; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.93rem; background: var(--surface); }
caption { text-align: left; padding: 12px 16px; font-weight: 700; background: var(--surface-2); border-bottom: 1px solid var(--border); }
th, td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
thead th { background: var(--surface-2); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-soft); white-space: nowrap; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--surface-2); }
td:first-child, th:first-child { font-weight: 600; }
.table--compare th, .table--compare td { text-align: center; }
.table--compare th:first-child, .table--compare td:first-child { text-align: left; background: var(--surface-2); position: sticky; left: 0; }
.table--compare thead th:first-child { background: var(--surface-2); }

dl.key-facts { display: grid; grid-template-columns: max-content 1fr; gap: 10px 20px; margin: 1.6em 0; font-size: 0.95rem; }
dl.key-facts dt { color: var(--muted); font-weight: 600; }
dl.key-facts dd { margin: 0; }

/* ---- Footnotes / sources -------------------------------------------------------- */
.cite { font-size: 0.72em; vertical-align: super; text-decoration: none; color: var(--accent-dark); font-weight: 700; margin-left: 1px; }
.source-list { list-style: none; padding: 0; font-size: 0.88rem; }
.source-list li { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; }
.source-list li:last-child { border-bottom: none; }
.source-list .src-n { color: var(--muted); font-variant-numeric: tabular-nums; flex: none; }

blockquote.pull { font-family: var(--font-serif); font-size: 1.3rem; line-height: 1.45; color: var(--ink); border-left: 3px solid var(--gold); margin: 1.8em 0; padding: 0.2em 0 0.2em 1.1em; }
blockquote.pull cite { display: block; font-family: var(--font-sans); font-size: 0.8rem; color: var(--muted); font-style: normal; margin-top: 10px; }

/* ---- Breadcrumbs -------------------------------------------------------- */
.breadcrumbs { font-size: 0.83rem; color: var(--muted); padding: 16px 0; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--link); text-decoration: underline; }
.breadcrumbs .sep { margin: 0 6px; color: var(--border-strong); }

/* ---- Page header (inner pages) -------------------------------------------------------- */
.page-head { padding: 8px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 44px; }
.page-head__kicker { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-dark); margin-bottom: 10px; }
.page-head p.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 700px; }
.page-head .meta-row { margin-top: 18px; }

/* ---- TOC -------------------------------------------------------- */
.toc { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin: 1.8em 0; font-size: 0.92rem; }
.toc__title { font-weight: 700; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.2em; }

/* ---- Tool widgets -------------------------------------------------------- */
.tool-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
.field select, .field input[type="text"] {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface);
  color: var(--ink); font-size: 0.98rem; font-family: var(--font-sans);
}
.field-hint { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }
.tool-result { margin-top: 20px; }
.tool-result-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; background: var(--surface); }
.tool-result-item:hover { border-color: var(--border-strong); }
.tool-empty { color: var(--muted); font-size: 0.92rem; padding: 10px 2px; }

/* ---- Footer -------------------------------------------------------- */
.site-footer { background: var(--ink); color: #cbd2e0; margin-top: 80px; padding: 56px 0 26px; }
.site-footer a { color: #cbd2e0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h4 { color: #8b94a8; margin-bottom: 14px; }
.site-footer .grid { grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .site-footer .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .site-footer .grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: 0.92rem; }
.site-footer .brand { color: #fff; }
.site-footer .foot-note { color: #8b94a8; font-size: 0.86rem; max-width: 320px; margin-top: 14px; }
.site-footer .bottom { border-top: 1px solid #2a3350; margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: #8b94a8; }

/* ---- Misc utility -------------------------------------------------------- */
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.divider { height: 1px; background: var(--border); border: none; margin: 2.5em 0; }
.eyebrow { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent-dark); }
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list a, .pill-list span { display: inline-block; padding: 7px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 20px; font-size: 0.86rem; text-decoration: none; color: var(--ink-soft); }
.pill-list a:hover { border-color: var(--border-strong); color: var(--ink); }

.timeline { list-style: none; padding: 0; margin: 1.6em 0; border-left: 2px solid var(--border); }
.timeline li { position: relative; padding: 0 0 22px 26px; }
.timeline li::before { content: ""; position: absolute; left: -6.5px; top: 4px; width: 11px; height: 11px; border-radius: 50%; background: var(--accent); border: 2px solid var(--surface); box-shadow: 0 0 0 1px var(--border); }
.timeline .t-date { font-weight: 700; font-size: 0.86rem; color: var(--accent-dark); display: block; margin-bottom: 2px; }

.step-list { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 16px; }
.step-list li { counter-increment: step; position: relative; padding-left: 46px; }
.step-list li::before { content: counter(step); position: absolute; left: 0; top: -2px; width: 32px; height: 32px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); }

.avoid-orphan { text-wrap: pretty; }

/* ---- Staff directory -------------------------------------------------------- */
.school-staff-section { margin-bottom: 3.2em; padding-bottom: 3.2em; border-bottom: 1px solid var(--border); }
.school-staff-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.school-staff-section__head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 1.3em; }
.school-staff-section__head h2 { margin: 0; }
.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .staff-grid { grid-template-columns: 1fr; } }
.staff-card { display: flex; gap: 14px; align-items: flex-start; }
.staff-avatar {
  flex: none; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--accent-tint); color: var(--accent-dark); font-family: var(--font-serif); font-weight: 700; font-size: 1rem;
}
.staff-card__body { flex: 1; min-width: 0; }
.staff-card h4 { margin: 0 0 2px; font-size: 1.02rem; font-family: var(--font-serif); }
.staff-card .staff-role {
  font-size: 0.76rem; color: var(--accent-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 8px; display: block;
}
.staff-card p.bio { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 6px; }
.staff-card .staff-source { font-size: 0.76rem; }
.staff-card .staff-nobio { font-size: 0.86rem; color: var(--muted); font-style: italic; margin-bottom: 6px; }
.staff-jump { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.6em 0 2.6em; }

@media print {
  .site-header, .site-footer, .banner, .search-box, .btn, .nav-toggle { display: none !important; }
  body { background: #fff; }
  a { color: #000; text-decoration: underline; }
}
