:root {
  --blue: #003a70;
  --navy: #061a35;
  --ink: #111827;
  --muted: #5c6674;
  --line: #e3e7ee;
  --bg: #f4f6f9;
  --white: #fff;
  --max: 1440px;
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  background: var(--white);
  word-break: keep-all;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul,
ol,
dl,
dd,
p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.wrap {
  width: 100%;
  overflow: hidden;
}

.section-space {
  padding: 86px 44px 96px;
}

.section-space h2 {
  max-width: var(--max);
  margin: 0 auto 30px;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

@media (max-width: 1439px) {
  :root {
    --header: 82px;
  }

  .section-space {
    padding: 76px 32px 86px;
  }
}

@media (max-width: 767px) {
  :root {
    --header: 64px;
  }

  .section-space {
    padding: 56px 20px 64px;
  }

  .section-space h2 {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .section-space {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-space h2 {
    font-size: 1.75rem;
  }
}
