/* ==========================================================================
   파일명 : reset.css
   설명 : 브라우저 기본 스타일 초기화 및 베이스 폰트 적용
   ========================================================================== */
* {
    box-sizing: border-box; /* 패딩이 너비에 포함되도록 */
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    font-size: var(--font-size-base); /* 18px 적용 */
    line-height: var(--line-height-base);
    color: var(--text-main);
    word-break: keep-all; /* 단어 중간 끊김 방지 */
    background-color: var(--bg-body);
    color-scheme: light dark;
}

/* 링크 스타일 */
a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* 리스트 스타일 제거 */
ul, ol { list-style: none; padding: 0; margin: 0; }

/* 버튼 초기화 */
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* 이미지 반응형 */
img { max-width: 100%; display: block; }