@charset "utf-8";
/* 1. 기본 박스 설정 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. HTML5 요소 블록화 */
article, aside, details, figcaption, figure,
footer, header, main, nav, section, summary {
    display: block;
}

/* 3. 기본 글꼴 및 라인 높이 */
body {
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 4. 리스트 스타일 제거 */
ul, ol {
    list-style: none;
}

/* 5. 링크 초기화 */
a {
    color: inherit;
    text-decoration: none;
}

/* 6. 이미지/비디오/오디오 반응형 */
img, video, audio {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 7. 폼 요소 초기화 */
input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button {
    cursor: pointer;
    background-color: transparent;
}

/* 8. 테이블 초기화 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9. 텍스트 요소 */
h1, h2, h3, h4, h5, h6, p {
    font-weight: normal;
}

/* 10. 스크롤바(선택) */
html {
    scroll-behavior: smooth;
}