/* ==== 1. 브라우저 기본 스타일 제거 ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==== 2. 리스트, 링크, 버튼 등 ==== */
ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
}
input, textarea, select, button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==== 3. 테이블 초기화 ==== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==== 4. 반응형을 위한 기본 설정 ==== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
