@charset 'utf-8';

/* ===== Reset: Box model & spacing ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Root base ===== */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'NanumSquare', sans-serif;
  /* font-size: 14px; */
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6,
p, blockquote, figure {
  margin: 0;
  font-weight: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

/* ===== Media elements ===== */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== Form elements ===== */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 4rem;
}

/* ===== Table ===== */
table {
  border-collapse: collapse;
  width: 100%;
}

/* ===== Accessibility ===== */
:focus-visible {
  outline: 2px solid #007BFF;
  outline-offset: 2px;
}

/* ===== Custom selection ===== */
::selection {
  background: #007BFF;
  color: white;
}





