/* =============================================
   reset.css | 브라우저 기본 스타일 초기화
   ============================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  color: var(--gray-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img  { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }
table { border-collapse: collapse; }