/* ============================================================
 * 本地化字体（替代 Google Fonts CDN）
 * - Inter              : 主英文字体（variable，5 字重共用）
 * - Hanken Grotesk     : 装饰英文字体（variable，4 字重共用）
 *
 * 图标：已切到 Lucide（见 icon-data.js + icon.js）
 *      SVG inline 渲染，无字体加载，首屏不闪烁
 * ============================================================ */

/* —— Inter —— */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/inter/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* —— Hanken Grotesk —— */
@font-face {
    font-family: 'Hanken Grotesk';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/hanken-grotesk/hanken-grotesk-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
 * Lucide Icons 基础样式
 * ============================================================ */

/* 默认：继承父级 font-size 作为图标宽高 */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;     /* 视觉对齐小写 x 的中部 */
    flex-shrink: 0;
}

/* 加载中旋转（Lucide 的 loader 图标可直接用） */
.icon-spin {
    animation: lucide-spin 1s linear infinite;
}
@keyframes lucide-spin {
    to { transform: rotate(360deg); }
}