/* -------------------------------------------------
  1) 리셋 및 공통
------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 1080px;
  height: 1920px;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #F0F2F5; /* Surface Light */
  color: #212121;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  overflow: hidden;
  line-height: 1.5;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* 시각적으로 숨기되 스크린리더가 읽게 하는 유틸 */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
