@charset "UTF-8";

/**
 * --------------------------------------------------------------------------
 * Reset Styles (Modernized Meyer Reset)
 * --------------------------------------------------------------------------
 * @description 브라우저별 기본 스타일 차이를 제거하고 일관된 기반을 제공합니다.
 *              기존 Meyer Reset v2.0을 기반으로 구조화되었습니다.
 */

/* [1. Global Box-Sizing] */
/* 모든 요소의 크기 계산 방식을 테두리 포함(border-box)으로 통일하여 레이아웃 계산 효율 증대 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* [2. Element Reset] */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* [3. HTML5 Display-Role Reset] */
/* 구형 브라우저에서 HTML5 신규 요소들이 block으로 인식되도록 설정 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* [4. Typography & Lists] */
body {
  line-height: 1.5; /* 기본 행간 설정 */
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* [5. Tables] */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* [6. Form Elements Basic Reset] */
/* 브라우저별 기본 외형(Appearance) 제거 및 일관성 확보 */
input, button, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* IE에서 select 화살표 제거 */
select::-ms-expand {
  display: none;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}
