/* 1. 박스 모델을 border-box로 통일 */
* {
  box-sizing: border-box;
}

/* 2. html/body 높이 설정 */
html {
  height: 100%;
}

body {
  min-height: 100%;
}

/* 3. 모든 구조 요소의 마진/패딩/보더 초기화 (두 번째 섹션만 사용) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

/* 4. HTML5 시맨틱 요소에 display: block 적용 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* 5. 리스트 스타일 제거 (특정 클래스/ID 제거) */
ol,
ul {
  list-style: none;
}

/* 6. 테이블 기본 스타일 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 7. 기타 유틸리티 */
button {
  border: none;
  cursor: pointer;
}

em {
  font-style: normal;
}

strong {
  font-weight: 700; /* 또는 bold */
}

a {
  text-decoration: none;
}

img,
figure {
  line-height: 0; /* 이미지 하단 공백 제거 */
}
