/* -------------------------------------
   reset.css — 기본 스타일 초기화
-------------------------------------- */
* {
    margin: 0;
    padding: 0;
    line-height: 1;
}
li {
    list-style: none;
}
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: crisp-edges;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
dl,
dd,
ol,
ul,
figure {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    font-family: "Pretendard";
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    color: #111;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}
button {
    cursor: pointer;
}
strong {
    font-weight: 600;
}
em {
    font-style: normal;
}
html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}
