/**
 * BK_Common - 공통 CSS
 * 프로젝트 공통 스타일
 */

/* 초기화 및 기본 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 가독성 강화 */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 1em;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
