/* ===== 브라우저 기본 스타일 초기화 ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; }
/* 한글 줄바꿈: 단어(어절) 단위로 끊고, 긴 단어는 넘치지 않게 */
h1, h2, h3, h4, p, span, a, li { word-break: keep-all; overflow-wrap: break-word; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
