/* ==========================================================================
   CSS 리셋 및 기본 스타일
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-700);
  background: var(--white);
  overflow-x: hidden;
}

/* 목록 기본 스타일 제거 */
ul,
ol {
  list-style: none;
}

/* 링크 기본 스타일 제거 */
a {
  text-decoration: none;
  color: inherit;
}

/* 버튼 기본 스타일 제거 */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* 이미지 렌더링 개선 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 폼 요소 기본 스타일 제거 */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* 유틸리티 클래스 */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
