:root {
  --bg: #f4f0e6;
  --card: #ffffff;
  --ink: #2a2a2a;
  --soft: #6b6b6b;
  --line: #e6e0d2;
  --accent: #2b5bd7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    'Pretendard',
    -apple-system,
    BlinkMacSystemFont,
    'Apple SD Gothic Neo',
    'Malgun Gothic',
    sans-serif;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}
header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 20px;
}
header.top a.home {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
h1 {
  font-size: 26px;
  margin: 8px 0 4px;
  letter-spacing: -0.01em;
}
.meta {
  color: var(--soft);
  font-size: 13px;
  margin-bottom: 22px;
}
.doc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-size: 15px;
}
nav.legal {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}
nav.legal a {
  color: var(--soft);
  text-decoration: underline;
}
nav.legal a[aria-current='page'] {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
footer {
  margin-top: 28px;
  color: var(--soft);
  font-size: 12.5px;
  line-height: 1.6;
}
