
/* ---- Empty / unavailable state — panel variant (polish pass) ------------- */
.empty-state--panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  min-height: 0;
  padding: 40px 28px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(26, 26, 78, 0.04), transparent 60%),
    var(--card);
  box-shadow: var(--shadow);
}
.empty-state--panel .empty-state-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(26, 26, 78, 0.08);
}
.empty-state--panel .empty-state-body { display: grid; gap: 6px; justify-items: center; max-width: 440px; }
.empty-state--panel .empty-state-body strong { font-size: 15px; color: var(--ink); }
.empty-state--panel .empty-state-body p { margin: 0; font-size: var(--text-body); line-height: 1.5; color: var(--muted); }
.empty-state--panel .empty-state-hint {
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(111, 116, 137, 0.1);
  color: var(--muted);
  font-size: var(--text-caption);
  font-weight: 700;
}
.empty-state--panel .empty-state-action { margin-top: 10px; }
