/* 스페이스 B 법적고지 페이지 공용 스타일 (개인정보처리방침·약관 등) */
:root {
  --brand: #3182f6;
  --brand-dark: #0519aa;
  --ink: #191f28;
  --muted: #6b7684;
  --line: #e5e8eb;
  --bg: #f9fafb;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  word-break: keep-all;
}
.topbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.topbar .inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar a.home {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.topbar .brand {
  font-weight: 800;
  letter-spacing: -0.02em;
}
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
}
.effective {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 28px;
}
h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 36px 0 12px;
  padding-top: 8px;
}
h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
}
p, li { font-size: 15px; }
ul, ol { padding-left: 20px; }
li { margin: 4px 0; }
.note {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 14px;
  color: #4e5968;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 14px;
  background: #fff;
}
th, td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  background: #f2f4f6;
  font-weight: 700;
  white-space: nowrap;
}
.company {
  margin-top: 40px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: #4e5968;
}
.company b { color: var(--ink); }
a { color: var(--brand); }
.foothome {
  display: inline-block;
  margin-top: 28px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
/* 법적고지 목록(index) */
.legal-list { list-style: none; padding: 0; margin: 20px 0 0; }
.legal-list li { margin: 0 0 12px; }
.legal-list a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: border-color 0.15s;
}
.legal-list a:hover { border-color: var(--brand); }
.legal-list .req { color: var(--brand); font-size: 12px; font-weight: 700; margin-left: 6px; }
.legal-list .desc { display: block; color: var(--muted); font-size: 13px; font-weight: 400; margin-top: 4px; }
