/* wgf-realm-spread-table.css — Module M15: Cheapest-Realm / Realm-Spread Table.
   Composes wgf-data-table.css (M29 base — must be loaded before this sheet).
   Adds: faction identity dot, "Cheapest" badge.
   Colours/type from _tokens.css only; no :root{} block. */

/* ── Realm identity cell: faction dot + name + region ──────────────────── */
.realm-identity {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Faction dot — IDENTITY taxonomy color, NOT market up/down color */
.realm-faction {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.realm-faction--alliance { background: var(--fc-alliance); }
.realm-faction--horde    { background: var(--fc-horde); }

.realm-name {
  font-family: var(--font-ui);
  color: var(--wgf-text);
}
.realm-type {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--wgf-muted);
}

/* ── "Cheapest" badge — gold brand accent, never green ─────────────────── */
.badge-cheapest {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--wgf-on-gold);
  background: var(--wgf-gold-accent);
  padding: 1px var(--space-2);
  border-radius: var(--radius-pill);
  margin-left: var(--space-2);
  vertical-align: middle;
  white-space: nowrap;
}
