/* 1. 웹폰트 불러오기 */
@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.3/packages/wanted-sans/fonts/webfonts/variable/complete/WantedSansVariable.min.css");

/* 2. 기본 설정 (root 기준 rem 스케일) */
html {
    font-size: 62.5%; /* 1rem = 10px (계산 편하게) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. 본문 폰트 및 전체 초기화 */
body {
    font-family: "Wanted Sans Variable", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;    /* = 16px */
    line-height: 1.6;
    color: #222;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* 4. 기본 태그 리셋 및 폰트 상속 */
h1, h2, h3, h4, h5, h6,
p, span, strong, a,
ul, ol, li, button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 5. 반응형 대응 (vw기반 글자 크기) 선택적 */
@media (max-width: 480px) {
    body {
        font-size: 1.4rem; /* 모바일에서 약간 작게 */
    }
}