/* 统一 SVG 图标体系（替换 emoji）
   sprite: /assets/icons.svg —— 24×24 视图盒、描边风格、currentColor 继承
   用法: <svg class="ic" aria-hidden="true"><use href="/assets/icons.svg#ic-check"></use></svg> */

.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.ic-sm { width: 0.875em; height: 0.875em; }
.ic-lg { width: 1.25em; height: 1.25em; }
.ic-xl { width: 1.5em; height: 1.5em; }

/* 语义色（可被主题变量覆盖，默认跟随 currentColor 无需使用） */
.ic-ok    { color: #22c55e; }
.ic-err   { color: #ef4444; }
.ic-warn  { color: #f59e0b; }
.ic-brand { color: var(--brand-color, #3b82f6); }
