/* 01-reset — 최소 리셋 + 한글 줄바꿈 계약 */
@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  * { margin: 0; }
  html { -webkit-text-size-adjust: 100%; }
  body { min-block-size: 100svh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
  img, picture, video, canvas, svg { display: block; max-inline-size: 100%; }
  input, button, textarea, select { font: inherit; color: inherit; }
  button { background: none; border: 0; padding: 0; cursor: pointer; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; padding: 0; }
  [hidden] { display: none !important; }   /* author display 에 지지 않게 (함정 29) */
  :where(h1,h2,h3,h4,h5,p,li,a,span,button,dt,dd,th,td,label,legend) {
    word-break: keep-all; overflow-wrap: break-word;   /* 크래프트 8 */
  }
}
