/* ===================== 기본 & 변수 ===================== */
:root {
  --green: #0cb14b;
  --green-dark: #0d7234;
  --blue: #005cb9;
  --orange: #ff6b4a;
  --orange-border: #f0844a;
  --ink: #222;
  --gray: #999;
  --gray2: #7d8486;
  --line: #e1e7ee;
  --tint-green: #f2f8ee;
  --tint-blue: #edf5fd;
  --tint-orange: #fff5f3;
  --maxw: 1520px;
  --font: 'NanumSquareNeo', 'Nanum Gothic', 'Malgun Gothic', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(to bottom, #d4f6e0 0%, rgba(255, 255, 255, 0) 100%) no-repeat, #fff;
  background-size: 100% 1900px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

