/* ========================================
   CSS Reset - 브라우저 기본 스타일 초기 (public/css/reset.css)
   ======================================== */

/* 모든 요소의 margin, padding 제거 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}

/* body 기본 설정 */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
  line-height: 1.6;  /* 줄 간격 */
}

/* 버튼 기본 스타일 제거 */
button {
  border: none;
  background: none;
  cursor: pointer;  /* 마우스 올리면 손가락 모양 */
  font-family: inherit;  /* 부모 폰트 상속 */
}

/* input 기본 스타일 제거 */
input {
  border: none;
  outline: none;  /* 클릭 시 파란 테두리 제거 */
  font-family: inherit;
}

/* 링크 기본 스타일 제거 */
a {
  text-decoration: none;  /* 밑줄 제거 */
  color: inherit;  /* 부모 색상 상속 */
}

/* 리스트 기본 스타일 제거 */
ul, ol {
  list-style: none;  /* 불릿, 숫자 제거 */
}