:root {
  --bg: #ffffff;
  --card: #ffffff;
  --line: #e8ecf1;

  /* ✅ 누락되면 레이아웃/텍스트가 깨짐 */
  --text: #1a202c;
  --muted: #718096;
  --bg2: #ffffff;

  --page-bg: #f8fafb;
  --brand: #3b82f6;
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--page-bg);
  color: var(--text);
}

/* ✅ home.html에서 사용 */
.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin: 6px 0;
}

/* 공통 링크 기본 */
a {
  color: inherit;
}