@charset "utf-8";

:root {
  --green: #2fc26b;
  --green-dark: #0f7b44;
  --mint: #dff7e8;
  --lime: #eff8d8;
  --sky: #e7f1ff;
  --blue: #2d6cdf;
  --ink: #14211a;
  --muted: #617066;
  --line: #dce7df;
  --paper: #f7f9f6;
  --white: #fff;
  --header-h: 76px;
  --side: clamp(20px, 4.4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

body.is-menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  background: transparent;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

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

#wrap {
  overflow: hidden;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-space {
  padding: 132px var(--side);
}

.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 54px;
}

.section-title.center {
  text-align: center;
}

.section-title span,
.editor-copy span,
.update-inner span {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 900;
}

.section-title h2,
.editor-copy h2,
.update-inner h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.btn-fill,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 850;
}

.btn-fill {
  color: var(--white);
  background: var(--green-dark);
}

.btn-line {
  border: 1px solid rgba(20, 33, 26, 0.22);
  color: var(--ink);
  background: var(--white);
}

@media (max-width: 1439px) {
  :root {
    --side: clamp(24px, 3.8vw, 56px);
  }

  .section-space {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 66px;
    --side: 20px;
  }

  html {
    font-size: 15px;
  }

  .section-space {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-title {
    gap: 8px;
    margin-bottom: 32px;
  }

  .section-title h2,
  .editor-copy h2,
  .update-inner h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .btn-fill,
  .btn-line {
    min-height: 48px;
    padding: 0 20px;
  }
}

@media (max-width: 320px) {
  :root {
    --side: 16px;
  }

  html {
    font-size: 14px;
  }
}
