/* 약관·처리방침 공용 스타일.
   🔴 앱(styles.css)과 토큰을 맞추되 파일은 따로 둔다 — 이 문서들은 SPA 밖에서
   서빙되므로 앱 번들을 끌어오면 로그인 화면 코드까지 따라온다. */
:root {
  --bg: #141311;
  --surface: #1d1c19;
  --line: #2e2c27;
  --text: #f2f0ea;
  --text-2: #a8a49a;
  --text-3: #6f6b62;
  --accent: #c8f04b;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    'Noto Sans KR',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    system-ui,
    sans-serif;
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 28px;
}
.brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
}
.brand .nm {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.meta {
  margin-top: 8px;
  color: var(--text-3);
  font-size: 13px;
}
.lead {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 14px;
}
h2 {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h3 {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
p,
li {
  margin-top: 10px;
  color: var(--text-2);
}
strong {
  color: var(--text);
  font-weight: 600;
}
ol,
ul {
  margin-top: 6px;
  padding-left: 20px;
}
li {
  margin-top: 6px;
}
a {
  color: var(--accent);
}
/* 표는 좁은 화면에서 본문을 밀어내면 안 된다. 표만 가로로 스크롤한다. */
.tw {
  margin-top: 12px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
}
table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 13px;
}
th,
td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
}
th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
tr:last-child td {
  border-bottom: 0;
}
.note {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
}
.note p:first-child {
  margin-top: 0;
}
footer {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 13px;
}
footer a {
  color: var(--text-2);
}
