/* 造局術全站共用底（0811 定版）——字體=Luke 配方＋375 溢出防線。
   前台頁面在 </head> 前掛：<link rel="stylesheet" href="/site-base.css">
   只做兩件事：字體與防溢出。不碰各頁配色與版型。 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Zalando+Sans+SemiExpanded:wght@300;400;500;600;700&display=swap');

:root{
  --font-body:'Inter',system-ui,-apple-system,'PingFang TC','Noto Sans TC',sans-serif;
  --font-display:'Zalando Sans SemiExpanded','Inter',system-ui,'PingFang TC','Noto Sans TC',sans-serif;
  --font-mono:ui-monospace,'SF Mono',monospace;
}
html,body{max-width:100%;overflow-x:clip}
*,*::before,*::after{box-sizing:border-box}
img,video,svg,iframe{max-width:100%}
input,select,textarea,button{max-width:100%}
body{font-family:var(--font-body)}
h1,h2,h3{font-family:var(--font-display)}
