.post-body .lead {
  font-size: 1.2em;
  line-height: 1.6;
}
.post-body .stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 2.5rem 0;
}
@media (min-width: 560px) {
  .post-body .stats {
    grid-template-columns: 1fr 1fr;
  }
}
.post-body .stat {
  border: 1px solid #e5e7eb;
  border-left: 3px solid #7c3aed;
  border-radius: 12px;
  padding: 16px 18px;
  background: #ffffff;
}
.post-body .stat-value {
  font-size: 1.9em;
  font-weight: 700;
  line-height: 1.1;
  color: #5b21b6;
  margin: 0 0 6px;
}
.post-body .stat-label {
  font-size: 0.92em;
  line-height: 1.45;
  color: #374151;
  margin: 0 0 8px;
}
.post-body .stat-source {
  font-size: 0.78em;
  line-height: 1.4;
  color: #6b7280;
  margin: 0;
}
.post-body .chart {
  margin: 2.5rem 0;
}
.post-body .chart-shell {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.post-body .chart-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.post-body .chart-svg.wide {
  max-width: 460px;
}
.post-body .chart figcaption {
  line-height: 1.5;
  margin-top: 10px;
}
.post-body .callout {
  border: 1px solid #ddd6fe;
  border-left: 4px solid #7c3aed;
  background: #f5f3ff;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 2rem 0;
}
.post-body .callout p {
  margin: 0;
}
.post-body .callout p + p {
  margin-top: 10px;
}
.post-body .callout-warn {
  border-color: #fed7aa;
  border-left-color: #c2410c;
  background: #fff7ed;
}
.post-body .slope {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  margin: 2rem 0;
  background: #ffffff;
}
.post-body .slope-item + .slope-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}
.post-body .slope-label {
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 10px;
  font-size: 0.98em;
}
.post-body .slope-line {
  display: grid;
  /* 92px fits the longest label ("onboarding") without a mid-word break. */
  grid-template-columns: 92px 1fr 44px;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.post-body .slope-when {
  font-size: 0.78em;
  color: #6b7280;
  text-align: right;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.post-body .slope-bar {
  display: block;
  height: 14px;
  border-radius: 7px;
  background: #f3f4f6;
  overflow: hidden;
}
.post-body .slope-bar i {
  display: block;
  height: 100%;
  border-radius: 7px;
  background: #7c3aed;
}
.post-body .slope-bar.out i {
  background: #c2410c;
}
.post-body .slope-val {
  font-size: 0.85em;
  font-weight: 700;
  color: #4c1d95;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.post-body .slope-delta {
  font-size: 0.82em;
  color: #c2410c;
  font-weight: 600;
  margin: 8px 0 0 100px;
}
.post-body .slope-source {
  font-size: 0.78em;
  line-height: 1.45;
  color: #6b7280;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}
.post-body .supp {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  background: #ffffff;
}
.post-body .supp-head {
  margin: 0;
  padding: 12px 16px;
  background: #f5f3ff;
  border-bottom: 1px solid #ede9fe;
  font-size: 0.85em;
  font-weight: 600;
  color: #5b21b6;
}
.post-body .supp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "dep val" "num val";
  align-items: center;
  gap: 2px 12px;
  padding: 11px 16px;
  border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 520px) {
  .post-body .supp-row {
    grid-template-columns: 1fr 200px 62px;
    grid-template-areas: "dep num val";
    gap: 12px;
  }
}
.post-body .supp-dep {
  grid-area: dep;
  font-weight: 600;
  color: #1f2937;
  font-size: 0.92em;
}
.post-body .supp-n {
  grid-area: num;
  font-size: 0.8em;
  color: #6b7280;
  font-variant-numeric: tabular-nums;
}
.post-body .supp-val {
  grid-area: val;
  text-align: right;
  font-weight: 700;
  color: #4c1d95;
  font-size: 0.95em;
  font-variant-numeric: tabular-nums;
}
.post-body .supp-row.is-others {
  background: #fff7ed;
}
.post-body .supp-row.is-others .supp-dep {
  color: #c2410c;
}
.post-body .supp-row.is-others .supp-val {
  color: #c2410c;
}
.post-body .supp-foot {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.8em;
  line-height: 1.5;
  color: #6b7280;
  background: #fafafa;
}
.post-body .limits {
  border: 1px dashed #c4b5fd;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 2rem 0;
  background: #fafafa;
}
.post-body .limits-head {
  margin: 0 0 10px;
  font-weight: 700;
  color: #5b21b6;
  font-size: 0.95em;
}
.post-body .limits ul {
  margin: 0;
}
.post-body .limits li {
  font-size: 0.95em;
  color: #374151;
}
.post-body .gloss {
  margin: 2rem 0;
}
.post-body .gloss dt {
  font-weight: 700;
  color: #4c1d95;
  font-size: 1.05em;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #f3f4f6;
}
.post-body .gloss dt:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.post-body .gloss dd {
  margin: 8px 0 0;
}
.post-body .gloss-def {
  margin: 0;
  color: #1f2937;
}
.post-body .gloss-bad {
  margin: 10px 0 0;
  font-size: 0.93em;
  color: #374151;
  border-left: 3px solid #ea580c;
  padding-left: 12px;
}
.post-body .gloss-bad span {
  font-weight: 700;
  color: #c2410c;
}
.post-body .cta {
  border: 1px solid #ddd6fe;
  border-radius: 14px;
  padding: 22px;
  margin: 2.5rem 0;
  background: #f5f3ff;
}
.post-body .cta-dark {
  border-radius: 14px;
  padding: 26px 22px;
  margin: 2.5rem 0;
  background: #1a1145;
}
.post-body .cta-kicker {
  margin: 0 0 6px;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
}
.post-body .cta-dark .cta-kicker {
  color: #c4b5fd;
}
.post-body .cta-title {
  margin: 0 0 10px;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
}
.post-body .cta-dark .cta-title {
  color: #ffffff;
}
.post-body .cta p:not(.cta-kicker):not(.cta-title),
.post-body .cta-dark p:not(.cta-kicker):not(.cta-title) {
  margin: 0 0 14px;
  font-size: 0.97em;
  line-height: 1.6;
}
.post-body .cta-dark p:not(.cta-kicker):not(.cta-title) {
  color: #ddd6fe;
}
.post-body .cta p:last-child,
.post-body .cta-dark p:last-child {
  margin-bottom: 0;
}
.post-body .cta-btn {
  display: inline-block;
  background: #c2410c;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95em;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 9999px;
}
.post-body .cta-btn:hover {
  background: #9a3412;
  color: #ffffff;
  text-decoration: none;
}
.post-body .post-scroller > table {
  min-width: 34rem;
}
.post-body .post-scroller > table th[scope="row"] {
  font-weight: 600;
  color: #1f2937;
}
.post-body .term {
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  color: #4b5563;
}
.post-body .faq h3 {
  font-size: 1.08em;
}
.post-body .faq p {
  font-size: 0.97em;
}
.post-body .sources li {
  font-size: 0.88em;
  line-height: 1.55;
  color: #374151;
}
.post-body .sr-caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}