/* 법적 문서 공용 스타일 — 본 사이트 디자인 토큰 축약판 */
@font-face {
  font-family: 'Pretendard Variable';
  src: url('/fonts/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 45 920;
  font-display: swap;
}
:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #1d1c1b;
  --text-2: #454340;
  --muted: #75726e;
  --border: #e4e2df;
  --border-strong: #d3d1cf;
  --orange: #ff7a33;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text-2);
  font-family: 'Pretendard Variable', Pretendard, 'Apple SD Gothic Neo', -apple-system, sans-serif;
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 40px;
}
.brand-symbol { height: 20px; width: auto; display: block; }
.brand-logotype { height: 17px; width: auto; display: block; }
h1 {
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}
.updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}
h2 {
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 36px 0 10px;
}
p, li { color: var(--text-2); }
ul, ol { padding-left: 22px; margin: 8px 0; }
li { margin: 4px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
}
th, td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th { background: #faf9f8; color: var(--text); font-weight: 600; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
.footer-note {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
a { color: var(--text); }
