/*
 * 브라우저 기본 스타일 차이를 줄이는 최소 초기화 스타일입니다.
 * 프로젝트 디자인이 확정되더라도 접근성에 필요한 기본 동작은 유지합니다.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.5;
  text-size-adjust: 100%;
}

body,
h1,
h2,
p,
ul {
  margin: 0;
}

body {
  min-width: 320px;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}
