/* =========================================
   CSS 리셋 - 크로스 브라우저 기본 스타일 통일
   ========================================= */

/* 박스 사이징 전역 설정 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 기본 여백 제거 */
* {
  margin: 0;
  padding: 0;
}

/* HTML 및 Body 기본 설정 */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 이미지 및 미디어 기본값 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 폼 요소 폰트 상속 */
input,
button,
textarea,
select {
  font: inherit;
}

/* 텍스트 오버플로우 방지 */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 목록 스타일 초기화 */
ul,
ol {
  list-style: none;
}

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

/* 버튼 기본 스타일 초기화 */
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* 테이블 기본 설정 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 기본 필드셋 스타일 제거 */
fieldset {
  border: none;
}

/* 인용 기본값 */
blockquote,
q {
  quotes: none;
}

/* 입력 필드 외곽선 초기화 */
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: 2px solid var(--color-primary, #3B82F6);
  outline-offset: 2px;
}

/* 숨겨진 요소 */
[hidden] {
  display: none !important;
}
