/*
=============================================================
  FIRMENDO BLOG TEMPLATE
  Shared layout and component styles for Ratgeber article pages.
=============================================================
*/

@import url("./hero.css");

:root {
  --base-line-height: 1.75;
}

/* ── HERO ── */
.post-hero {
  background: linear-gradient(145deg, #EEF1FA 0%, #F7F8FC 50%, #EAF0FF 100%);
  padding: 52px 0 56px;
  border-bottom: var(--border-bottom-subtle);
  position: relative; overflow: hidden;
}
.post-hero::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,68,232,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.post-hero-inner { max-width: 1260px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.post-hero h1 {
  font-size: var(--text-article-hero-title-size);
  font-weight: var(--font-weight-extrabold); color: var(--gray-800);
  letter-spacing: -0.8px; line-height: var(--line-height-heading);
  margin-bottom: 16px;
}
.post-hero h1 .accent { color: var(--orange); }
.post-hero .subtitle {
  font-size: 18px; color: var(--gray-500); line-height: var(--line-height-body);
  margin-bottom: 28px;
}
.post-hero .hero-author-bar {
  max-width: 760px;
}

.post-hero .hero-author-avatar--initials {
  background: var(--accent-color-bg);
  color: #fff;
  font-size: var(--text-card-body-size);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-avatar);
}

/* ── MAIN LAYOUT ── */
.ratgeber-page-with-toc {
  --content-toc-width: 280px;
  --toc-width: var(--content-toc-width);
  --content-toc-gap: var(--space-6xl);
  --content-layout-max-width: 1260px;
  --content-layout-padding: 48px 12px 80px;
}

@media (max-width: 1024px) {
  .ratgeber-page-with-toc {
    --content-layout-padding: 40px 12px 72px;
  }
}

/* ── ARTICLE BODY ── */
.text-body { min-width: 0; }

/* Typografie */
.text-body strong { color: var(--gray-800); font-weight: var(--font-weight-bold); }
.text-body ul,
.text-body ol:not(.content-steps) {
  padding-left: 22px;
  margin-bottom: 16px;
}

/* ── SUMMARY BRIEF ── */
.summary-box-brief {
  background: #fff;
  border: var(--border-panel-blue);
  border-radius: 16px;
  padding: 26px 27px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-soft-blue);
}

.summary-box-brief-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 17px;
  border-bottom: var(--border-bottom-pale);
  font-size: var(--text-summary-title-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-xwide);
  text-transform: uppercase;
  color: var(--accent-color-text);
  line-height: var(--line-height-heading-loose);
}

.summary-box-brief-title::before {
  content: '↯';
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-color-soft);
  color: var(--accent-color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-ui-size);
  line-height: var(--line-height-tight);
}

.summary-box-brief ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 0;
}

.summary-box-brief ul li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: var(--border-bottom-pale);
  color: #1E2A52;
  font-size: var(--text-summary-item-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-list);
  margin-bottom: 0;
}

.summary-box-brief ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(16px + 0.74em);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color-bg);
}

.summary-box-brief ul li:first-child {
  padding-top: 0;
}

.summary-box-brief ul li:first-child::before {
  top: 0.74em;
}

.summary-box-brief ul li:last-child {
  padding-bottom: 0;
  border-bottom: var(--border-none);
}

@media (max-width: 640px) {
  .summary-box-brief {
    padding: 21px 19px;
  }

  .summary-box-brief-title {
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    font-size: var(--text-summary-title-mobile-size);
    letter-spacing: var(--letter-spacing-kicker);
  }

  .summary-box-brief-title::before {
    width: 28px;
    height: 28px;
  }

  .summary-box-brief ul li {
    padding: 13px 0 13px 22px;
    font-size: var(--text-summary-item-mobile-size);
  }

  .summary-box-brief ul li::before {
    top: calc(13px + 0.74em);
  }

  .summary-box-brief ul li:first-child::before {
    top: 0.74em;
  }
}

/* ── CHECKLIST ── */
.post-checklist {
  background: #fff;
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.post-checklist .check-title {
  font-size: var(--text-ui-large-size); font-weight: var(--font-weight-bold); color: var(--gray-800);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.post-checklist ul { list-style: none; padding: 0; margin: 0; }
.post-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--text-ui-size); color: var(--gray-700);
  padding: 8px 0; border-bottom: var(--border-bottom-muted);
}
.post-checklist li:last-child { border-bottom: var(--border-none); padding-bottom: 0; }
.post-checklist .check-item {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 10px 0;
  gap: 12px;
}
.post-checklist .check-item:hover {
  background: rgba(34, 68, 232, 0.04);
}
.post-checklist .check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}
.post-checklist .check-item input[type="checkbox"]:focus-visible ~ .check-box {
  outline: 2px solid var(--accent-color-border);
  outline-offset: 2px;
}
.post-checklist .check-box {
  border-color: var(--green);
}
.post-checklist .check-text {
  flex: 1;
}

.post-checklist.post-checklist-compact {
  padding: 16px 18px;
}
.post-checklist.post-checklist-compact .check-title {
  margin-bottom: 10px;
}
.post-checklist.post-checklist-compact li {
  padding: 3px 0;
}
.post-checklist.post-checklist-compact .check-item {
  border-radius: 8px;
  gap: 10px;
  padding: 5px 0;
}
.post-checklist.post-checklist-compact .check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
.post-checklist.post-checklist-compact .check-box::after {
  width: 4px;
  height: 8px;
}
.post-checklist.post-checklist-compact .check-text {
  font-size: 16px;
  line-height: 1.4;
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-light); border: 2px solid var(--green);
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 10px; height: 10px; }

/* ── STAT CARDS (3er Grid) ── */
.post-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 28px 0;
}
@media (max-width: 600px) { .post-stats { grid-template-columns: 1fr; } }
.stat-card {
  background: #fff; border: var(--border-subtle);
  border-radius: var(--radius); padding: 20px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.stat-card.accent { background: var(--accent-color-bg); border-color: var(--accent-color-bg); }
.stat-num { font-size: var(--text-stat-size); font-weight: var(--font-weight-bold); color: var(--accent-color-text); line-height: var(--line-height-tight); letter-spacing: -1px; }
.stat-card.accent .stat-num { color: #fff; }
.stat-num-text { font-size: var(--text-inline-logo-size); letter-spacing: var(--letter-spacing-none); }
.stat-label { font-size: var(--text-caption-size); font-weight: var(--font-weight-semibold); color: var(--gray-500); margin-top: 6px; line-height: var(--line-height-compact); }
.post-stats .stat-label { font-size: 14px; }
.stat-card.accent .stat-label { color: rgba(255,255,255,0.8); }

/* ── COMPARE TABLE ── */
.post-compare-table { width: 100%; border-collapse: collapse; font-size: var(--text-ui-size); }
.post-compare-table thead tr { background: var(--gray-800); }
.post-compare-table th { padding: 18px var(--space-xl) 16px; color: #fff; font-weight: var(--font-weight-bold); text-align: left; }
.post-compare-table th:first-child { border-radius: 10px 0 0 0; }
.post-compare-table th:last-child { border-radius: 0 10px 0 0; }
.post-compare-table tbody tr { border-bottom: 1px solid var(--gray-100); }
.post-compare-table tbody tr:hover { background: var(--accent-color-soft); }
.post-compare-table tbody tr:last-child { border-bottom: none; }
.post-compare-table tbody tr:last-child td:first-child { border-radius: 0 0 0 10px; }
.post-compare-table tbody tr:last-child td:last-child { border-radius: 0 0 10px 0; }
.post-compare-table td { padding: 12px 16px; color: var(--gray-700); }
.post-compare-table td:first-child { font-weight: 600; color: var(--gray-800); }
.table-wrap {
  contain: inline-size;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 12px;
  border: var(--border-subtle);
  margin: 24px 0;
  background: #fff;
}

/* ── CTA BOX ── */
.post-cta-box {
  background: linear-gradient(135deg, var(--accent-color-bg) 0%, var(--accent-color-bg-hover) 100%);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 40px 0;
  text-align: center;
  color: #fff;
}
.post-cta-box h3 { font-size: var(--text-cta-title-size); font-weight: var(--font-weight-extrabold); margin-bottom: 8px; color: #fff; }
.post-cta-box p { font-size: var(--text-ui-size); color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.btn-cta {
  display: inline-block;
  background: #fff; color: var(--accent-color-text);
  font-weight: var(--font-weight-extrabold); font-size: var(--text-ui-size);
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-cta-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff !important; border: 1.5px solid rgba(255,255,255,0.7);
  font-weight: var(--font-weight-bold); font-size: var(--text-ui-size);
  padding: 11px 24px; border-radius: 50px;
  text-decoration: none !important; margin-left: 12px;
  transition: background .2s, box-shadow .2s;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,0.25); text-decoration: none !important; }

/* ── FOTOÄHNLICHER HIGHLIGHT QUOTE ── */
.post-pullquote {
  border-left: 4px solid var(--orange);
  padding: 4px 0 4px 24px; margin: 32px 0;
}
.post-pullquote p {
  font-size: var(--text-pullquote-size); font-weight: var(--font-weight-bold); color: var(--gray-800);
  line-height: var(--line-height-normal); font-style: italic; margin: 0;
}

/* ── HERO PHOTO LAYOUT ── */
.post-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.post-hero-text { min-width: 0; }
.post-hero-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  flex-shrink: 0;
}
.post-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (max-width: 860px) {
  .post-hero-inner { grid-template-columns: 1fr; }
  .post-hero-photo { display: none; }
  .post-hero .hero-author-bar { max-width: none; }
}

/* ── INVOICE MOCK ── */
.invoice-mock {
  background: #fff; border: var(--border-subtle);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  overflow: hidden; margin: 28px 0;
  font-size: var(--text-caption-size);
}
.invoice-mock-header {
  background: #fff; padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 12px;
  border-bottom: 2px solid var(--accent-color-border);
}
.invoice-mock-brand { font-size: var(--text-invoice-brand-size); font-weight: var(--font-weight-black); color: var(--gray-800); letter-spacing: -0.3px; }
.invoice-mock-brand span { font-size: var(--text-caption-size); font-weight: var(--font-weight-medium); color: var(--gray-300); display: block; margin-top: 2px; letter-spacing: var(--letter-spacing-none); }
.invoice-mock-label { font-size: var(--text-ui-size); font-weight: var(--font-weight-extrabold); color: var(--gray-800); text-align: right; }
.invoice-mock-label span { font-size: var(--text-caption-size); font-weight: var(--font-weight-medium); color: var(--gray-300); display: block; margin-top: 2px; }
.invoice-mock-body { padding: 22px 24px; }
.invoice-mock-addresses {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 22px;
}
.invoice-addr-label { font-size: var(--text-caption-size); font-weight: var(--font-weight-bold); text-transform: uppercase; letter-spacing: var(--letter-spacing-eyebrow); color: var(--gray-300); margin-bottom: 6px; }
.invoice-addr-content { color: var(--gray-700); line-height: var(--line-height-body); }
.invoice-meta-row {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 12px 0; border-top: var(--border-top-muted); border-bottom: var(--border-bottom-muted);
  margin-bottom: 20px;
}
.invoice-meta-item .lbl { font-size: var(--text-caption-size); font-weight: var(--font-weight-bold); text-transform: uppercase; letter-spacing: var(--letter-spacing-label); color: var(--gray-300); margin-bottom: 2px; }
.invoice-meta-item .val { font-weight: var(--font-weight-semibold); color: var(--gray-800); font-size: var(--text-card-body-size); }
.invoice-line-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.invoice-line-table th { font-size: var(--text-caption-size); font-weight: var(--font-weight-bold); text-transform: uppercase; letter-spacing: var(--letter-spacing-label); color: var(--gray-300); padding: 6px 8px; text-align: left; border-bottom: var(--border-bottom-muted); }
.invoice-line-table th:last-child { text-align: right; }
.invoice-line-table td { padding: 9px 8px; border-bottom: var(--border-bottom-muted); color: var(--gray-700); font-size: var(--text-card-body-size); }
.invoice-line-table td:last-child { text-align: right; font-weight: var(--font-weight-semibold); color: var(--gray-800); }
.invoice-totals { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; margin-bottom: 18px; }
.invoice-total-row { display: flex; gap: 48px; font-size: var(--text-card-body-size); color: var(--gray-500); }
.invoice-total-row.grand { font-size: var(--text-ui-size); font-weight: var(--font-weight-extrabold); color: var(--gray-800); border-top: 2px solid var(--gray-200); padding-top: 8px; margin-top: 4px; }
.invoice-total-row .tval { min-width: 90px; text-align: right; }
.invoice-annotation {
  position: relative; margin: 0 -24px -22px; padding: 14px 24px;
  background: var(--accent-color-soft); border-top: 1px solid var(--accent-color-border);
  font-size: var(--text-caption-size); color: var(--gray-500); line-height: var(--line-height-normal);
}
.ann {
  display: inline-block;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff !important;
  font-size: var(--text-caption-size); font-weight: var(--font-weight-bold);
  line-height: 20px; text-align: center;
  vertical-align: middle; margin: 0 2px;
  flex-shrink: 0;
}

/* ── LEGEND GRID ── */
.legend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }

/* ── E-RECHNUNG ALERT BANNER ── */
.e-rechnung-alert {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, #F05E18 0%, #d94e0a 100%);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0 36px;
  box-shadow: 0 4px 20px rgba(240,94,24,0.25);
}
.e-rechnung-alert-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.e-rechnung-alert-body { flex: 1; min-width: 0; }
.e-rechnung-alert-title {
  font-size: var(--text-ui-size); font-weight: var(--font-weight-extrabold); color: #fff;
  margin-bottom: 5px; letter-spacing: var(--letter-spacing-ui-tight);
}
.e-rechnung-alert-text {
  font-size: var(--text-ui-size); color: rgba(255,255,255,0.9); line-height: var(--line-height-list);
}
.e-rechnung-alert-text strong { color: #fff; }
.e-rechnung-alert-text a {
  color: #fff; font-weight: var(--font-weight-bold);
  text-decoration: underline; text-underline-offset: 2px;
  border: var(--border-none);
}
.e-rechnung-alert-text a:hover { opacity: 0.85; }

@media (max-width: 580px) { .legend-grid { grid-template-columns: 1fr; } }
.legend-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff; border: var(--border-subtle);
  border-radius: 10px; padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.legend-num {
  display: inline-block;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: #fff !important;
  font-size: var(--text-caption-size); font-weight: var(--font-weight-bold);
  line-height: 22px; text-align: center;
  flex-shrink: 0; margin-top: 1px;
}
.legend-text { font-size: var(--text-ui-size); color: var(--gray-700); line-height: var(--line-height-normal); }
.legend-text strong { color: var(--gray-800); display: block; font-size: var(--text-ui-size); margin-bottom: 1px; }

/* =============================================================
   Article-specific components used by selected Ratgeber pages
============================================================= */

/* ── LETTER BOX ── */
.post-letter-box {
  position: relative;
  background: #fff;
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
  font-family: 'Georgia', serif;
  font-size: var(--text-ui-size);
  line-height: 1.8;
  color: var(--gray-800);
}
.letter-label {
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-caption-size); font-weight: var(--font-weight-bold);
  text-transform: uppercase; letter-spacing: var(--letter-spacing-kicker);
  color: var(--gray-300); margin-bottom: 16px;
}
.letter-copy-btn {
  position: absolute; top: 20px; right: 20px;
  display: flex; align-items: center; gap: 6px;
  background: var(--gray-50); border: var(--border-subtle);
  border-radius: 8px; padding: 6px 12px;
  font-size: var(--text-caption-size); font-weight: var(--font-weight-semibold); color: var(--gray-600);
  cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: background .2s, color .2s;
}
.letter-copy-btn:hover { background: var(--accent-color-soft); color: var(--accent-color-text); border-color: var(--accent-color-border); }
.letter-placeholder {
  color: var(--accent-color-text);
  background: var(--accent-color-soft);
  border-radius: 4px;
  padding: 1px 5px;
  font-style: italic;
}
.post-letter-box p { margin: 0 0 12px; }
.post-letter-box p:last-child { margin-bottom: 0; }

/* ── CHECK GROUP ── */
.check-group { margin-bottom: 4px; }
.post-checklist .check-group + .check-group {
  margin-top: 6px;
}
.check-group-title {
  font-size: var(--text-caption-size); font-weight: var(--font-weight-bold); color: var(--accent-color-text);
  letter-spacing: var(--letter-spacing-label); text-transform: uppercase;
  padding: 10px 0 6px; display: flex; align-items: center; gap: 8px;
}
.post-checklist .check-group-title {
  font-size: 14px;
}
.check-group-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-color-bg); color: #fff;
  font-size: var(--text-caption-size); font-weight: var(--font-weight-extrabold); flex-shrink: 0;
}
.check-group ul { margin: 0; }

/* ── TWO COL COMPARE ── */
.two-col-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0;
}
@media (max-width: 640px) { .two-col-compare { grid-template-columns: 1fr; } }
.compare-col {
  border-radius: var(--radius); padding: 20px 22px;
  background: #f8faff; border: 1px solid var(--gray-200);
}
.highlight-col {
  background: #f0fdf4; border-color: #bbf7d0;
}
.compare-col-title {
  font-size: var(--text-ui-size); font-weight: 700; color: var(--gray-800);
  margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.compare-col li { display: flex; align-items: flex-start; gap: 8px; font-size: var(--text-ui-size); line-height: 1.5; color: var(--gray-700); }
.icon-pro { font-weight: var(--font-weight-extrabold); color: #16a34a; flex-shrink: 0; font-size: var(--text-ui-size); line-height: var(--line-height-normal); }
.icon-con { font-weight: var(--font-weight-extrabold); color: #ea580c; flex-shrink: 0; font-size: var(--text-ui-size); line-height: var(--line-height-normal); }

/* ── BADGE ── */
.badge {
  display: inline-block; font-size: var(--text-caption-size); font-weight: var(--font-weight-bold);
  text-transform: uppercase; letter-spacing: var(--letter-spacing-label);
  padding: 3px 10px; border-radius: 50px; white-space: nowrap;
  background: var(--accent-color-soft); color: var(--accent-color-text);
}

/* ── VORTEILE LIST (h3 + ul) ── */
.text-body h3 + ul {
  list-style: none; padding: 0; margin: 0 0 20px;
  background: #fff; border: var(--border-subtle);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0;
}
.text-body h3 + ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--text-ui-large-size); color: var(--gray-700); line-height: 1.72;
  padding: 8px 0; border-bottom: var(--border-bottom-muted);
}
.text-body h3 + ul li:last-child { border-bottom: var(--border-none); padding-bottom: 0; }
.text-body h3 + ul li::before {
  content: "";
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: #dcfce7; border: 2px solid #16a34a;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
  flex-shrink: 0; margin-top: 2px;
}

/* Shared Ratgeber inline cleanup utilities. */
.stat-num-cta-title { font-size:var(--text-cta-title-size); line-height: var(--line-height-heading); }
.stat-num-inline-pad { font-size:var(--text-inline-logo-size); letter-spacing: var(--letter-spacing-heading-tight); padding-top:6px; }
.stat-num-inline-tight { font-size:var(--text-inline-logo-size); letter-spacing: var(--letter-spacing-heading-tight); }
.stat-num-inline-line { font-size:var(--text-inline-logo-size); line-height: var(--line-height-meta); }
.no-quotes { quotes:none; }
.highlight-mb-36 { margin-bottom:36px; }
.badge-wrap-tight { margin:-6px 0 12px; }
.legend-grid-mt-16 { margin-top:16px; }
.legend-num-compact-blue { background:var(--accent-color-bg); width:28px; height:28px; line-height:28px; font-size:var(--text-caption-size); flex-shrink:0; }
