@charset "utf-8";

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Pretendard', 'Malgun Gothic', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.5;
  word-break: keep-all;
  overflow-x: hidden;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; cursor: pointer; font: inherit; color: inherit; }
img { display: block; width: 100%; max-width: 100%; }
input, textarea, select, button { font: inherit; }

:root {
  --color-black: #0a0d12;
  --color-white: #ffffff;
  --color-line: rgba(255,255,255,.14);
  --color-border: rgba(17,17,17,.12);
  --color-point: #2f6bff;
  --color-muted: #6f7684;
  --inner: min(100% - 80px, 1440px);
  --section-space: 140px;
  --header-h: 92px;
  --radius: 28px;
}

.inner { width: var(--inner); margin: 0 auto; }
.section-space { padding: var(--section-space) 0; }
.dark-section { background: var(--color-black); color: var(--color-white); }
.section-kicker {
  display: inline-block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-point);
  margin-bottom: 1rem;
}
.section-head { margin-bottom: 3rem; }
.section-head.row-type {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-head h3,
.impact-copy h3 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.04em;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 700;
}
.text-link::after {
  content: '+';
  font-size: 1.125rem;
}

@media (max-width: 1439px) {
  :root {
    --inner: min(100% - 64px, 1280px);
    --section-space: 120px;
    --header-h: 84px;
  }
}

@media (max-width: 1279px) {
  :root {
    --inner: min(100% - 48px, 100%);
    --section-space: 96px;
    --header-h: 76px;
  }
}

@media (max-width: 767px) {
  :root {
    --inner: min(100% - 32px, 100%);
    --section-space: 72px;
    --header-h: 70px;
    --radius: 22px;
  }
  body { font-size: .9375rem; }
  .section-head.row-type { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 320px) {
  :root {
    --inner: min(100% - 24px, 100%);
    --section-space: 64px;
  }
  html { font-size: 15px; }
}
