/* Public Record — detroit.primals.eco
   Design: Sober, factual, accessible. Light & readable. No sensationalism. */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --text: #1d1d1f;
  --text-muted: #636366;
  --accent: #1c3a5f;
  --accent-light: #2a5a8f;
  --border: #d1d5db;
  --link: #1a56db;
  --link-hover: #1040a0;
  --stat-bg: #1c3a5f;
  --stat-text: #f0f4f8;
  --highlight-bg: #fef3cd;
  --highlight-border: #f0c040;
  --danger: #9b2335;
  --max-width: 48rem;
  --nav-height: 3.25rem;
  --radius: 6px;
}

/* Dark theme — applied via data-theme attribute (default) */
:root[data-theme="dark"] {
  --bg: #181a20;
  --bg-alt: #1e2028;
  --text: #e4e4e7;
  --text-muted: #9ca3af;
  --accent: #e4e4e7;
  --accent-light: #93c5fd;
  --border: #374151;
  --link: #60a5fa;
  --link-hover: #93c5fd;
  --stat-bg: #1e293b;
  --stat-text: #e4e4e7;
  --highlight-bg: #422006;
  --highlight-border: #a16207;
}

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

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 0.5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Nav — clean white/light bar instead of dark block */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}
.nav-brand {
  color: var(--text); font-weight: 700; font-size: 1.05rem;
  white-space: nowrap; letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--text); text-decoration: none; }
.nav-links {
  display: flex; list-style: none; gap: 0.25rem; flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
  padding: 0.3rem 0.55rem; border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); text-decoration: none; }
/* Theme toggle */
.theme-toggle {
  background: none; border: 1px solid var(--border); cursor: pointer;
  color: var(--text-muted); padding: 0.3rem; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.15s, border-color 0.15s;
  margin-left: auto;
}
.theme-toggle:hover { color: var(--text); border-color: var(--text-muted); }
:root[data-theme="dark"] .icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun { display: block; }
:root:not([data-theme="dark"]) .icon-sun,
:root[data-theme="light"] .icon-sun { display: none; }
:root:not([data-theme="dark"]) .icon-moon,
:root[data-theme="light"] .icon-moon { display: block; }

/* Search */
.search-wrapper { position: relative; }
#search-input {
  background: var(--bg-alt); color: var(--text); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.3rem 0.6rem; font-size: 0.82rem;
  width: 14rem; outline: none; transition: border-color 0.15s;
}
#search-input:focus { border-color: var(--link); }
#search-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.search-results {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index: 200;
  max-height: 60vh; overflow-y: auto; min-width: 20rem;
}
.sr-item {
  display: block; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text); transition: background 0.1s;
}
.sr-item:hover { background: var(--bg-alt); text-decoration: none; }
.sr-item strong { display: block; font-size: 0.88rem; color: var(--link); }
.sr-item span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; line-height: 1.35; }
.sr-empty { padding: 0.75rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 768px) {
  .search-wrapper { order: 3; width: 100%; margin-top: 0.5rem; }
  #search-input { width: 100%; }
  .search-results { min-width: 100%; }
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 1.25rem; height: 2px;
  background: var(--text); margin: 4px 0; border-radius: 1px;
}

@media (max-width: 768px) {
  .theme-toggle { margin-left: auto; }
  .nav-toggle { display: block; margin-left: 0.5rem; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-height);
    left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 0.75rem 1rem; gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.5rem 0.75rem; }
}

/* Main */
.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  flex: 1;
  width: 100%;
}

/* Hero — clean, light, authoritative */
.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem;
  letter-spacing: -0.02em; color: var(--text);
}
.hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 36rem; margin: 0 auto; }

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.stat {
  background: var(--stat-bg);
  color: var(--stat-text);
  padding: 1.1rem 0.75rem;
  border-radius: var(--radius);
  text-align: center;
}
.stat-number { display: block; font-size: 1.6rem; font-weight: 800; }
.stat-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; margin-top: 0.15rem; }

/* Sections */
section { margin-bottom: 2.5rem; }
section h2 {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}

/* CTAs — outline style, not heavy blocks */
.cta-row {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.cta {
  display: inline-block;
  background: var(--link);
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.cta:hover { background: var(--link-hover); color: #fff; text-decoration: none; }
.cta-outline {
  background: transparent;
  color: var(--link);
  border: 1.5px solid var(--link);
}
.cta-outline:hover { background: var(--link); color: #fff; }

/* Audience "Find Your Path" cards */
.audience-cards { margin-bottom: 2.5rem; }
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem; margin-top: 1rem;
}
.audience-card {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s;
}
.audience-card:hover { border-color: var(--link); box-shadow: 0 2px 12px rgba(0,0,0,0.15); text-decoration: none; }
.audience-card .card-icon { font-size: 1.5rem; margin-bottom: 0.15rem; }
.audience-card strong { color: var(--link); font-size: 0.95rem; }
.audience-card span:last-child { font-size: 0.8rem; color: var(--text-muted); line-height: 1.35; }

/* Page list */
.page-list { list-style: none; }
.page-list li { border-bottom: 1px solid var(--border); }
.page-list a { display: block; padding: 0.85rem 0; }
.page-list .page-desc { display: block; color: var(--text-muted); font-size: 0.9rem; }
.page-list time { display: block; color: var(--text-muted); font-size: 0.8rem; }

/* Letter meta */
.letter-meta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.letter-meta p { margin: 0.25rem 0; }
.response-status { font-style: italic; }

/* Content body */
.content-body { margin: 2rem 0; }
.content-body h2 { margin-top: 2rem; }
.content-body h3 { margin-top: 1.5rem; font-size: 1.1rem; }
.content-body p { margin-bottom: 1rem; }
.content-body ul, .content-body ol { margin: 0.5rem 0 1rem 1.5rem; }
.content-body blockquote {
  border-left: 3px solid var(--border);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  background: var(--bg-alt);
  color: var(--text-muted);
}
.content-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.88rem; }
.content-body th, .content-body td { padding: 0.5rem 0.65rem; border: 1px solid var(--border); text-align: left; }
.content-body th { background: var(--bg-alt); font-weight: 600; }
.content-body code { background: var(--bg-alt); padding: 0.15rem 0.3rem; border-radius: 3px; font-size: 0.9em; }
.content-body pre { background: var(--bg-alt); padding: 1rem; border-radius: var(--radius); overflow-x: auto; margin: 1rem 0; }
.content-body pre code { background: none; padding: 0; }

/* Footer — subtle, not a dark slab */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 2rem 1rem;
  margin-top: auto;
  text-align: center;
  font-size: 0.82rem;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.site-footer a { color: var(--link); }
.site-footer strong { color: var(--text); }
.footer-license { margin-top: 0.75rem; opacity: 0.7; }

/* Provenance footer on pages */
.page-footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.provenance { font-size: 0.85rem; color: var(--text-muted); }

/* Section page */
.section-page h1 { margin-bottom: 1rem; }
.section-content { margin-bottom: 2rem; }

/* Network tiers */
.network-tiers {
  margin: 1rem 0; padding: 1rem;
  background: var(--bg-alt); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.network-tiers p { margin: 0.3rem 0; font-size: 0.9rem; }

/* Election notice — amber highlight, not dark */
.election-notice {
  background: var(--highlight-bg);
  border: 1.5px solid var(--highlight-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.election-notice h2 { border-bottom: none; color: var(--text); }

/* Extraction section */
.extraction {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Subsection list */
.subsection-list { list-style: none; }
.subsection-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }

/* Article */
.page-content header { margin-bottom: 2rem; }
.page-content header time { color: var(--text-muted); font-size: 0.9rem; }

/* Interactive Timeline */
.tl-filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem;
}
.tl-filter-btn {
  background: var(--bg-alt); color: var(--text-muted); border: 1.5px solid var(--border);
  padding: 0.3rem 0.65rem; border-radius: 20px; font-size: 0.75rem; cursor: pointer;
  font-weight: 500; transition: all 0.15s;
}
.tl-filter-btn:hover { color: var(--text); border-color: var(--text-muted); }
.tl-filter-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.tl-chip-bar {
  display: flex; flex-wrap: wrap; gap: 0.3rem; align-items: center;
  margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.tl-chip-label { font-size: 0.75rem; color: var(--text-muted); margin-right: 0.25rem; }
.tl-actor-chip {
  background: transparent; border: 1.5px solid; padding: 0.2rem 0.5rem;
  border-radius: 12px; font-size: 0.7rem; cursor: pointer; font-weight: 600;
  transition: all 0.15s;
}
.tl-actor-chip:hover { opacity: 0.8; }
.tl-actor-chip.active { background: currentColor; }
.tl-actor-chip.active { color: var(--bg) !important; }

.tl-track { position: relative; padding-left: 1.5rem; }

.tl-era { margin-bottom: 1.5rem; }
.tl-era-header {
  font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem;
  padding-left: 0.75rem; border-left: 3px solid;
}

.tl-event {
  display: grid; grid-template-columns: auto 5.5rem 1fr auto;
  gap: 0.5rem; align-items: baseline;
  padding: 0.4rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; transition: opacity 0.2s;
  position: relative;
}
.tl-event.tl-dimmed { opacity: 0.3; }
.tl-event.tl-upcoming { font-style: italic; opacity: 0.7; }

.tl-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
  margin-top: 0.35rem; flex-shrink: 0;
}
.tl-date { font-weight: 600; font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.tl-text { font-weight: 400; }
.tl-source { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }

.tl-event-actors { display: flex; gap: 0.2rem; flex-wrap: wrap; grid-column: 3; }
.tl-actor-badge {
  display: inline-block; padding: 0.1rem 0.4rem; border-radius: 8px;
  font-size: 0.65rem; color: #fff; text-decoration: none; font-weight: 600;
  line-height: 1.3;
}
.tl-actor-badge:hover { opacity: 0.8; text-decoration: none; color: #fff; }

@media (max-width: 600px) {
  .tl-event { grid-template-columns: auto 1fr; gap: 0.25rem; }
  .tl-source { grid-column: 2; }
  .tl-event-actors { grid-column: 2; }
}

/* Page cards (section listings) */
.page-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.page-card {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1rem 1.2rem; border: 1px solid var(--border, #333);
  border-radius: 8px; text-decoration: none; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.page-card:hover {
  border-color: var(--link); box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
}
.page-card-title { font-size: 1.05rem; color: var(--link); }
.page-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.page-card-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.2rem; }
.tag {
  display: inline-block; padding: 0.1rem 0.5rem; border-radius: 12px;
  font-size: 0.7rem; background: var(--bg-muted, #1a1a2e); color: var(--text-muted);
  border: 1px solid var(--border, #333);
}

/* Taxonomy grids */
.taxonomy-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem; margin: 1.5rem 0;
}
.taxonomy-card {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.75rem 1rem; border: 1px solid var(--border, #333);
  border-radius: 8px; text-decoration: none; color: var(--text);
  transition: border-color 0.2s;
}
.taxonomy-card:hover { border-color: var(--link); text-decoration: none; }
.taxonomy-card strong { color: var(--link); }
.taxonomy-count { font-size: 0.8rem; color: var(--text-muted); }

/* Source citations */
cite.source {
  font-style: normal; display: inline; font-size: 0.88em;
}
cite.source a {
  text-decoration: none; border-bottom: 1px dotted var(--text-muted);
  color: var(--link);
}
cite.source a:hover { border-bottom-style: solid; }
.source-badge { margin-right: 0.2em; }
.source-query { color: var(--text-muted); font-family: var(--font-mono, monospace); font-size: 0.85em; }
.source-label { color: var(--text); }

/* Network subgraphs */
.network-graph {
  margin: 1.5rem 0; padding: 1rem; border-radius: 8px;
  background: var(--bg-card, #1e293b); border: 1px solid var(--border, #334155);
  overflow-x: auto;
}
.network-graph .mermaid {
  display: flex; justify-content: center;
  background: transparent; border: none; padding: 0; margin: 0;
  font-family: inherit; white-space: pre;
}
.network-graph pre.mermaid {
  overflow-x: visible;
}
.network-graph figcaption {
  text-align: center; font-size: 0.85rem; color: var(--text-muted);
  margin-top: 0.75rem; font-style: italic;
}
.network-graph .mermaid svg { max-width: 100%; height: auto; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem;
}
.breadcrumbs a {
  color: var(--link); text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-hidden="true"] {
  margin: 0 0.3em; color: var(--text-muted); opacity: 0.5;
}
.breadcrumbs [aria-current="page"] {
  color: var(--text); font-weight: 500;
}

/* Confidence badges */
.confidence-badge {
  display: inline-block; font-size: 0.8rem; font-weight: 500;
  padding: 0.15em 0.5em; border-radius: 4px; white-space: nowrap;
  cursor: help;
}
.confidence-verified { background: #16531650; color: #22c55e; border: 1px solid #22c55e40; }
.confidence-documented { background: #1d4ed850; color: #60a5fa; border: 1px solid #60a5fa40; }
.confidence-reported { background: #a855f750; color: #c084fc; border: 1px solid #c084fc40; }
.confidence-alleged { background: #eab30850; color: #fbbf24; border: 1px solid #fbbf2440; }
.confidence-unconfirmed { background: #6b728050; color: #9ca3af; border: 1px solid #9ca3af40; }

/* Sidebar navigation */
.page-with-sidebar {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 960px) {
  .site-main:has(.page-with-sidebar) { max-width: 68rem; }
  .page-with-sidebar {
    grid-template-columns: 13rem 1fr;
  }
}
.page-sidebar {
  font-size: 0.82rem; line-height: 1.5;
  position: sticky; top: calc(var(--nav-height) + 1rem);
  max-height: calc(100vh - var(--nav-height) - 2rem);
  overflow-y: auto; align-self: start;
}
.sidebar-nav ul { list-style: none; margin: 0 0 0.75rem 0; padding: 0; }
.sidebar-nav li { padding: 0.2rem 0; }
.sidebar-nav li a {
  color: var(--text-muted); text-decoration: none; display: block;
  padding: 0.15rem 0.5rem; border-radius: 3px; border-left: 2px solid transparent;
}
.sidebar-nav li a:hover { color: var(--text); background: var(--bg-alt); }
.sidebar-nav li.sidebar-current a {
  color: var(--link); font-weight: 600; border-left-color: var(--link);
  background: var(--bg-alt);
}
.sidebar-title, .sidebar-subtitle {
  display: block; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.3rem; margin-top: 0.5rem;
}
.sidebar-title a, .sidebar-subtitle a { color: var(--text); text-decoration: none; }
.sidebar-title a:hover, .sidebar-subtitle a:hover { color: var(--link); }

@media (max-width: 959px) {
  .page-sidebar { display: none; }
}

/* Epistemic status markers — claim-level, not document-level */
.epistemic-status {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  padding: 0.15em 0.55em; border-radius: 4px; white-space: nowrap;
  cursor: help; letter-spacing: 0.02em;
}
.es-record { background: #16531640; color: #22c55e; border: 1px solid #22c55e50; }
.es-corroborated { background: #1d4ed840; color: #60a5fa; border: 1px solid #60a5fa50; }
.es-inference { background: #a855f730; color: #c084fc; border: 1px solid #c084fc40; }
.es-allegation { background: #eab30830; color: #fbbf24; border: 1px solid #fbbf2440; }
.es-filed { background: #f9731630; color: #fb923c; border: 1px solid #fb923c40; }
.es-adjudicated { background: #ef444430; color: #f87171; border: 1px solid #f8717140; }
.es-corrected { background: #6b728030; color: #9ca3af; border: 1px solid #9ca3af40; }

/* Table of Contents */
.page-toc {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  margin-bottom: 1.5rem; font-size: 0.88rem;
}
.page-toc summary {
  font-weight: 600; cursor: pointer; color: var(--text);
  list-style: none; display: flex; align-items: center; gap: 0.4rem;
}
.page-toc summary::before { content: "▸"; transition: transform 0.15s; }
.page-toc[open] summary::before { transform: rotate(90deg); }
.page-toc ul { list-style: none; margin: 0.5rem 0 0 0; padding: 0; }
.page-toc li { padding: 0.15rem 0; }
.page-toc li a { color: var(--link); text-decoration: none; }
.page-toc li a:hover { text-decoration: underline; }
.page-toc .toc-h3 { padding-left: 1rem; font-size: 0.84rem; }

/* Print — clean layout for attorneys and journalists */
@media print {
  .site-nav, .nav-toggle, .cta-row, .audience-cards,
  .search-wrapper, .page-sidebar, .theme-toggle,
  .election-notice, .skip-link, .page-toc { display: none !important; }
  .site-main, .page-with-sidebar { max-width: 100% !important; padding: 0; display: block !important; }
  body { font-size: 11pt; line-height: 1.5; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
  a[href^="#"]::after, a[href^="javascript"]::after, .nav-links a::after { content: none; }
  .stat { border: 1px solid #000; background: #fff; color: #000; }
  .stat-number { color: #000; }
  .network-graph, .mermaid { break-inside: avoid; border: 1px solid #ccc; }
  .content-body table { font-size: 9pt; }
  .content-body th, .content-body td { border: 1px solid #000; padding: 0.3rem 0.5rem; }
  .content-body th { background: #eee; }
  .confidence-badge { border: 1px solid #000; background: #eee; color: #000; }
  .site-footer { border-top: 1px solid #000; font-size: 9pt; }
  h1, h2, h3 { break-after: avoid; }
  .page-content { break-before: avoid; }
  .breadcrumbs { font-size: 9pt; }
  .breadcrumbs a::after { content: none; }
}
