/* ==========================================================================
   The Budget Compass — design system
   Single stylesheet, no external fonts, no third-party requests.
   ========================================================================== */

:root {
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Charter, Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Light theme (default) */
  --paper: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f4f2ec;
  --ink: #16202e;
  --ink-soft: #45536a;
  --ink-faint: #6b7889;
  --rule: #e2ded4;
  --rule-strong: #cfc9bb;
  --brand: #10403b;
  --brand-soft: #e6efec;
  --accent: #b4531f;
  --accent-soft: #fbeee5;
  --ok: #1d6b4f;
  --ok-soft: #e6f2ec;
  --warn: #8a5a06;
  --warn-soft: #fdf1dc;
  --focus: #2563eb;
  --shadow-sm: 0 1px 2px rgba(22, 32, 46, .06), 0 1px 3px rgba(22, 32, 46, .05);
  --shadow-md: 0 2px 4px rgba(22, 32, 46, .05), 0 8px 24px rgba(22, 32, 46, .08);
  --radius: 10px;
  --radius-lg: 16px;
  --measure: 68ch;
  --wrap: 1180px;
  color-scheme: light;
}

[data-theme="dark"] {
  --paper: #10151c;
  --surface: #161d26;
  --surface-2: #1d2631;
  --ink: #e9edf3;
  --ink-soft: #b3becd;
  --ink-faint: #8794a6;
  --rule: #2a3542;
  --rule-strong: #3a4756;
  --brand: #7fd1bf;
  --brand-soft: #172a29;
  --accent: #f0a06a;
  --accent-soft: #2a1e16;
  --ok: #6fce9f;
  --ok-soft: #16261f;
  --warn: #e5b567;
  --warn-soft: #2a2213;
  --focus: #7aa7ff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, .45);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #10151c;
    --surface: #161d26;
    --surface-2: #1d2631;
    --ink: #e9edf3;
    --ink-soft: #b3becd;
    --ink-faint: #8794a6;
    --rule: #2a3542;
    --rule-strong: #3a4756;
    --brand: #7fd1bf;
    --brand-soft: #172a29;
    --accent: #f0a06a;
    --accent-soft: #2a1e16;
    --ok: #6fce9f;
    --ok-soft: #16261f;
    --warn: #e5b567;
    --warn-soft: #2a2213;
    --focus: #7aa7ff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, .45);
    color-scheme: dark;
  }
}

/* --------------------------------------------------------------- base --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-underline-offset: .18em; text-decoration-thickness: .08em; }
a:hover { color: var(--accent); }

:where(a, button, summary, input, select, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- header --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  background: var(--brand); color: var(--paper);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
  font-family: var(--font-sans); letter-spacing: .02em;
}
[data-theme="dark"] .brand__mark, :root:not([data-theme="light"]) .brand__mark { color: #10151c; }

.nav { margin-left: auto; }
.nav__list {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__list a {
  display: block; padding: .5rem .7rem; border-radius: 8px;
  font-size: .945rem; font-weight: 500; color: var(--ink-soft); text-decoration: none;
}
.nav__list a:hover { background: var(--surface-2); color: var(--ink); }
.nav__list a[aria-current="page"] { color: var(--brand); font-weight: 600; }

.icon-btn {
  flex: none; width: 2.35rem; height: 2.35rem; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--rule); border-radius: 8px;
  color: var(--ink-soft); cursor: pointer; padding: 0;
}
.icon-btn:hover { background: var(--surface-2); color: var(--ink); }
.icon-btn svg { width: 18px; height: 18px; }
#theme-toggle .icon-moon { display: none; }
[data-theme="dark"] #theme-toggle .icon-moon { display: block; }
[data-theme="dark"] #theme-toggle .icon-sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) #theme-toggle .icon-moon { display: block; }
  :root:not([data-theme="light"]) #theme-toggle .icon-sun { display: none; }
}

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: grid; margin-left: auto; }
  .nav {
    margin-left: 0; order: 10; flex-basis: 100%;
    display: none; padding-bottom: .75rem;
  }
  .nav.is-open { display: block; }
  .site-header__inner { flex-wrap: wrap; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { padding: .7rem .5rem; border-bottom: 1px solid var(--rule); }
}

/* --------------------------------------------------------- typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.05rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 1.95rem); font-weight: 700; margin-top: 2.4em; }
h3 { font-size: clamp(1.2rem, 1.08rem + .5vw, 1.38rem); font-weight: 700; margin-top: 2em; }
h4 { font-size: 1.08rem; font-weight: 700; margin-top: 1.8em; }
p { margin: 0 0 1.15em; }
strong { font-weight: 650; color: var(--ink); }
.lead {
  font-size: clamp(1.1rem, 1.03rem + .35vw, 1.28rem);
  line-height: 1.62; color: var(--ink-soft);
}

/* ------------------------------------------------------- breadcrumbs --- */
.crumbs { font-size: .875rem; color: var(--ink-faint); margin: 1.5rem 0 1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: var(--rule-strong); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--brand); text-decoration: underline; }

/* ------------------------------------------------------------ layout --- */
.page { padding-bottom: 4rem; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1040px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 16.5rem; }
}

.article-head { margin-bottom: 2rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft);
  padding: .3rem .65rem; border-radius: 999px; text-decoration: none;
}
.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .85rem;
  font-size: .875rem; color: var(--ink-faint);
  margin-top: 1.35rem; padding-top: 1.1rem; border-top: 1px solid var(--rule);
}
.byline a { color: var(--ink-faint); }
.byline .dot { color: var(--rule-strong); }

.prose { max-width: var(--measure); }
.prose > * { max-width: 100%; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 1.35em; }
.prose li { margin-bottom: .55em; }
.prose li::marker { color: var(--ink-faint); }
.prose h2 { padding-top: .3em; }
.prose h2 + p, .prose h3 + p { margin-top: 0; }

/* Anchor links on headings */
.prose h2, .prose h3 { position: relative; scroll-margin-top: 5.5rem; }
.heading-anchor {
  position: absolute; left: -1.1em; top: 0; width: 1em;
  opacity: 0; text-decoration: none; color: var(--ink-faint); font-weight: 400;
  font-family: var(--font-sans);
}
.prose h2:hover .heading-anchor, .prose h3:hover .heading-anchor,
.heading-anchor:focus-visible { opacity: 1; }
@media (max-width: 780px) { .heading-anchor { display: none; } }

/* ------------------------------------------------------------ tables --- */
.table-scroll {
  overflow-x: auto; margin: 1.8em 0;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table { border-collapse: collapse; width: 100%; font-size: .945rem; font-family: var(--font-sans); }
thead th {
  background: var(--surface-2); color: var(--ink);
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--rule-strong);
  white-space: nowrap;
}
tbody td, tbody th {
  padding: .72rem .9rem; border-bottom: 1px solid var(--rule);
  vertical-align: top; text-align: left;
}
tbody th { font-weight: 600; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody tr:nth-child(even) { background: color-mix(in srgb, var(--surface-2) 45%, transparent); }

/* ---------------------------------------------------------- callouts --- */
.prose blockquote {
  margin: 1.8em 0; padding: 1.05rem 1.25rem;
  background: var(--surface-2); border-left: 3px solid var(--rule-strong);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-soft); font-size: .985rem;
}
.prose blockquote > :last-child { margin-bottom: 0; }
.prose blockquote strong { color: var(--ink); }
.prose blockquote.is-note { background: var(--brand-soft); border-left-color: var(--brand); }
.prose blockquote.is-warn { background: var(--warn-soft); border-left-color: var(--warn); }
.prose blockquote.is-example { background: var(--accent-soft); border-left-color: var(--accent); }

/* -------------------------------------------------------- takeaways --- */
.takeaways {
  margin: 2rem 0 2.5rem; padding: 1.4rem 1.5rem;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.takeaways h2 {
  margin: 0 0 .85rem; font-family: var(--font-sans); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700;
}
.takeaways ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.takeaways li { position: relative; padding-left: 1.7rem; font-size: 1rem; line-height: 1.6; }
.takeaways li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .65rem; height: .65rem; border-radius: 2px;
  background: var(--brand);
}

/* --------------------------------------------------------------- TOC --- */
.toc-rail { position: sticky; top: 5.25rem; display: none; }
@media (min-width: 1040px) { .toc-rail { display: block; } }
.toc__title {
  font-family: var(--font-sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
  margin: 0 0 .75rem;
}
.toc__list { list-style: none; margin: 0; padding: 0 0 0 .9rem; border-left: 2px solid var(--rule); }
.toc__list li { margin: 0; }
.toc__list a {
  display: block; padding: .32rem 0; font-size: .875rem; line-height: 1.45;
  color: var(--ink-faint); text-decoration: none;
}
.toc__list a:hover { color: var(--brand); }
.toc__list a.is-active { color: var(--brand); font-weight: 600; }
.toc__list .lvl-3 a { padding-left: .85rem; font-size: .83rem; }

.toc-inline {
  margin: 2rem 0; padding: 1.15rem 1.35rem;
  border: 1px solid var(--rule); border-radius: var(--radius); background: var(--surface);
}
@media (min-width: 1040px) { .toc-inline { display: none; } }
.toc-inline summary {
  cursor: pointer; font-weight: 650; font-size: .95rem; list-style: none;
}
.toc-inline summary::-webkit-details-marker { display: none; }
.toc-inline summary::after { content: " ▾"; color: var(--ink-faint); }
.toc-inline[open] summary::after { content: " ▴"; }
.toc-inline ol { margin: 1rem 0 0; padding-left: 1.2rem; font-size: .92rem; }
.toc-inline li { margin-bottom: .4rem; }

/* ---------------------------------------------------------- widgets --- */
.calc {
  margin: 2.2em 0; padding: 1.4rem 1.5rem;
  background: var(--surface); border: 1px solid var(--rule-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  font-family: var(--font-sans);
}
.calc__title {
  font-family: var(--font-sans); font-size: 1.02rem; font-weight: 700;
  margin: 0 0 .3rem; color: var(--ink);
}
.calc__note { font-size: .85rem; color: var(--ink-faint); margin: 0 0 1.15rem; }
.calc__grid { display: grid; gap: .9rem 1.1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.calc__field { display: flex; flex-direction: column; gap: .3rem; }
.calc__field label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.calc__field input, .calc__field select {
  font: inherit; font-size: .95rem; padding: .5rem .65rem;
  border: 1px solid var(--rule-strong); border-radius: 8px;
  background: var(--paper); color: var(--ink); width: 100%;
}
.calc__out {
  margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px dashed var(--rule-strong);
  display: grid; gap: .6rem;
}
.calc__row { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; font-size: .95rem; }
.calc__row dt { color: var(--ink-soft); }
.calc__row dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--ink); }
.calc__row.is-primary dd { font-size: 1.3rem; color: var(--brand); }
.calc__bar { display: flex; height: 12px; border-radius: 999px; overflow: hidden; background: var(--surface-2); margin-top: .3rem; }
.calc__bar span { display: block; height: 100%; }
.calc__legend { display: flex; flex-wrap: wrap; gap: .35rem 1rem; font-size: .82rem; color: var(--ink-soft); margin-top: .55rem; }
.calc__legend i { display: inline-block; width: .65rem; height: .65rem; border-radius: 2px; margin-right: .35rem; }
.calc__disclaimer { margin: 1rem 0 0; font-size: .78rem; color: var(--ink-faint); line-height: 1.5; }

/* --------------------------------------------------------------- FAQ --- */
.faq { margin-top: 3rem; }
.faq__item {
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--surface); margin-bottom: .7rem; overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: .95rem 2.6rem .95rem 1.15rem;
  font-weight: 650; font-size: 1rem; position: relative; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; color: var(--ink-faint); font-weight: 400; line-height: 1;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item summary:hover { background: var(--surface-2); }
.faq__body { padding: 0 1.15rem 1.15rem; color: var(--ink-soft); font-size: .975rem; }
.faq__body > :last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ boxes --- */
.panel {
  margin: 2.5rem 0; padding: 1.4rem 1.5rem;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg);
}
.panel h2, .panel h3 { margin-top: 0; }
.panel--soft { background: var(--surface-2); }

.sources { font-size: .93rem; }
.sources ol { padding-left: 1.2rem; margin: 0; }
.sources li { margin-bottom: .5rem; color: var(--ink-soft); }

.editorial-box {
  display: flex; gap: 1.1rem; align-items: flex-start;
  margin: 2.5rem 0; padding: 1.35rem 1.45rem;
  border: 1px solid var(--rule); border-radius: var(--radius-lg); background: var(--surface-2);
}
.editorial-box__mark {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: var(--paper);
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
}
[data-theme="dark"] .editorial-box__mark, :root:not([data-theme="light"]) .editorial-box__mark { color: #10151c; }
.editorial-box p { margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }
.editorial-box p + p { margin-top: .5rem; }
.editorial-box strong { display: block; color: var(--ink); font-size: .98rem; margin-bottom: .2rem; }

/* ------------------------------------------------------------ cards --- */
.card-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 0; padding: 0; list-style: none;
}
.card {
  display: flex; flex-direction: column; gap: .55rem;
  padding: 1.25rem 1.35rem; background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--rule-strong); }
.card__cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand);
}
.card__title { font-family: var(--font-serif); font-size: 1.18rem; font-weight: 700; margin: 0; line-height: 1.28; }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card:hover .card__title a { color: var(--brand); }
.card__excerpt { margin: 0; font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.card__meta { margin-top: auto; padding-top: .5rem; font-size: .8rem; color: var(--ink-faint); }

.section { margin: 3.5rem 0; }
.section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem;
  padding-bottom: .7rem; border-bottom: 1px solid var(--rule);
}
.section__head h2 { margin: 0; font-size: clamp(1.35rem, 1.2rem + .7vw, 1.7rem); }
.section__head a { font-size: .9rem; font-weight: 600; text-decoration: none; }
.section__head a:hover { text-decoration: underline; }

/* -------------------------------------------------------------- hero --- */
.hero { padding: 3.5rem 0 1rem; }
.hero__inner { max-width: 46rem; }
.hero h1 { margin-bottom: .5rem; }
.hero .lead { margin-bottom: 1.6rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: .5rem .6rem; list-style: none; margin: 0; padding: 0;
}
.pill {
  display: inline-block; padding: .35rem .8rem; border-radius: 999px;
  border: 1px solid var(--rule-strong); background: var(--surface);
  font-size: .84rem; color: var(--ink-soft); text-decoration: none;
}
.pill:hover { border-color: var(--brand); color: var(--brand); }

.stat-row {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 2.5rem 0 0; padding: 1.5rem; list-style: none;
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg);
}
.stat__num { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; color: var(--brand); line-height: 1.1; }
.stat__label { font-size: .875rem; color: var(--ink-soft); margin-top: .2rem; }

/* ------------------------------------------------------------ footer --- */
.site-footer {
  margin-top: 4rem; padding: 3rem 0 2.5rem;
  background: var(--surface-2); border-top: 1px solid var(--rule);
  font-size: .92rem; color: var(--ink-soft);
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.footer-grid h3 {
  font-family: var(--font-sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
  margin: 0 0 .8rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .45rem; }
.footer-grid a { color: var(--ink-soft); text-decoration: none; }
.footer-grid a:hover { color: var(--brand); text-decoration: underline; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule);
  font-size: .84rem; color: var(--ink-faint);
}
.footer-bottom p { margin: 0 0 .5rem; max-width: 62ch; }

/* --------------------------------------------------------- utilities --- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.narrow { max-width: 52rem; }
.text-small { font-size: .9rem; }
.muted { color: var(--ink-faint); }

@media print {
  .site-header, .site-footer, .toc-rail, .calc, .crumbs { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .prose { max-width: none; }
  a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
