@charset "UTF-8";

/* 기본 여백 및 박스 모델 초기화 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 텍스트 렌더링 개선 및 스크롤 부드럽게 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all; /* 한글 가독성 핵심 */
  overflow-x: hidden;
}

/* 이미지 및 미디어 최적화 */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 링크 및 버튼 기본 스타일 제거 */
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* 표 초기화 */
table { border-collapse: collapse; width: 100%; }