/* ========================================
   RESET CSS – Kolon Workwear
   ======================================== */

/* Box model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin & padding */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display reset */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* Body base */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
  background: var(--color-grey-100);
  color: var(--color-grey-800);
}

/* Lists */
ol,
ul {
  list-style: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Images */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Buttons */
button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* Inputs */
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border-radius: 0;
  border: none;
  outline: none;
  background: transparent;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove focus outlines (디자인 단계용) */
:focus {
  outline: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
