/* assets/css/base.css */
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:18px 16px 46px}
.spacer{flex:1}
.divider{height:1px; background:var(--border); margin:12px 0}
.note{font-size:12px; color:var(--ink-muted); line-height:1.45; margin-top:10px}
