:root {
  --max-w: 1260px;
  --row: 16px;
  --inner: calc(var(--max-w) + calc(var(--row) * 2));

  --primary: #006037;

  --text: clamp(0.5rem, 1.25vw, 1rem); 
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-size: var(--text-rg);
  color: var(--dark);
  font-weight: 400;
  line-height: 1.4;
  font-family: 'SUIT Variable', '맑은고딕', sans-serif;
  word-break: keep-all;
  -webkit-text-size-adjust: none;
}

html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: inherit;
}

:where(a, a:link, a:visited, a:hover, a:active, a:focus) {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--primary);
  text-decoration: none;
}

abbr,
abbr[title] {
  text-decoration: none;
  border: none;
  border-bottom: none;
  cursor: inherit;
  font-style: inherit;
}

hr {
  display: none;
}

li, ol, dd {
  list-style: none;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

legend,
caption {
  visibility: hidden;
  display: none;
  width: 0;
  height: 0;
  font-size: 0;
}

button,
input,
textarea,
select {
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  vertical-align: middle;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: inherit;
  line-height: inherit;
}

button,
input[type="submit"],
input[type="button"],
select {
  cursor: pointer;
}

input {
  -webkit-border-radius: 0;
}

input[type="text"],
input[type="password"] {
  -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 0;
  vertical-align: middle;
}