/* Global Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 스크롤바 유무와 무관하게 가용 폭 고정 → 페이지 간 가운데 정렬(나브바 등) 좌우 이동 방지 */
html {
    scrollbar-gutter: stable;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: hsl(var(--foreground, 0 0% 10%));
    background-color: hsl(var(--background, 0 0% 100%));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
