/* Inline comparison bar charts (myth articles) */
figure.fc-bars { margin: 24px 0; padding: 16px 18px 14px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg2); }
.fb-title { font-family: var(--font-serif); font-size: 14.5px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 14px; }
.fb-rows { display: flex; flex-direction: column; gap: 7px; }
.fb-row { display: grid; grid-template-columns: 116px 1fr 64px; align-items: center; gap: 10px; }
.fb-label { font-size: 12.5px; color: var(--text-dim); text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fb-track { height: 15px; background: var(--bg); border-radius: 8px; overflow: hidden; }
.fb-fill { display: block; height: 100%; width: 0; border-radius: 8px; background: linear-gradient(90deg, #3a7a6e, #5a8f5a); transition: width .85s cubic-bezier(.4,0,.2,1); }
.fb-val { font-family: var(--font-mono); font-size: 12px; color: var(--text); text-align: right; font-variant-numeric: tabular-nums; }

/* Nordic = gold highlight (the subject of the article) */
.fb-row.nd .fb-fill { background: linear-gradient(90deg, #c8922a, #f0b54a); }
.fb-row.nd .fb-label { color: var(--gold-bright, #f0b54a); font-weight: 700; }
.fb-row.nd .fb-val { color: var(--gold-bright, #f0b54a); font-weight: 700; }
/* Actual socialist states = red */
.fb-row.bad .fb-fill { background: linear-gradient(90deg, #9e2f12, #e8703f); }
.fb-row.bad .fb-label { color: #e8916f; }
/* not ranked */
.fb-row.nr .fb-val { color: var(--text-dimmer); font-style: italic; font-size: 11px; }
.fb-row.nr .fb-track { opacity: 0.4; }

.fb-source { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dimmer); margin-top: 13px; letter-spacing: 0.02em; }

@media (max-width: 560px) {
  .fb-row { grid-template-columns: 88px 1fr 52px; gap: 7px; }
  .fb-label { font-size: 11.5px; }
}
