/* Next 번들 CSS( Tailwind / globals ) 로딩이 실패해도
   전 사이트가 "기본 HTML(타임스 뉴로)"만 보이는 최악을 막는 최소 안전망.
   정상이면 app/globals.css·Tailwind가 이 위에 덮어씀. */
@import url("https://fonts.googleapis.com/css2?family=Jua&display=swap");
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: "Jua", "Malgun Gothic", system-ui, sans-serif;
  line-height: 1.5;
  color: #171717;
  background: #f4f4f5;
}
button,
input,
select,
textarea {
  font: inherit;
}
