/* .sb-info 는 style.css 의 공통 .page-info 스타일 사용 */

/* ── 인장 요약 칩 ─────────────────────────────────────────────────────── */
.sb-chips {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
  gap:8px;
  margin-bottom:18px;
}
.sb-chip {
  display:flex; align-items:center; gap:8px;
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:8px; padding:8px 12px; font-size:.88em;
  min-height:42px;
}
.sb-chip b { font-weight:700; }
.sb-chip-eff { color:var(--text-muted); font-size:.85em; }
.sb-chip-open { font-size:.78em; color:#9a3412; background:#fff7ed; border-radius:4px; padding:1px 6px; }
.sb-chip-max { font-size:.82em; color:var(--primary); font-weight:600; }

/* ── 레벨 테이블 ──────────────────────────────────────────────────────── */
/* sb-th-sub: 소제목 행 */
.sb-th-sub {
  font-size:.72em!important; font-weight:400!important; color:var(--text-muted)!important;
  padding:2px 8px!important; background:var(--bg-subtle)!important;
  border-bottom:2px solid var(--border)!important;
}
.sb-lv-cost {
  display:inline-flex; align-items:center; gap:3px;
  white-space:nowrap;
}
.sb-lv-cost img { width:15px; height:15px; object-fit:contain; }
