/* 랑고 정책·지원 페이지 공통 — studio-sunnysideup.com 홈과 같은 토큰을 쓴다. */
:root {
  --cream: #FAFAF6;
  --warm: #F3F0EA;
  --lime: #C8E619;
  --brand: #15A24B;   /* 랑고 브랜드 그린 */
  --text: #222;
  --muted: #777;
  --border: #ddd;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 64px 24px 96px; }
header { border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 40px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--brand);
  display: grid; place-items: center; flex: none;
}
.brand-mark svg { width: 21px; height: 21px; fill: #fff; }
.brand-name { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
h1 { font-size: 30px; line-height: 1.35; margin: 26px 0 8px; letter-spacing: -0.02em; }
.updated { color: var(--muted); font-size: 14px; margin: 0; }
h2 {
  font-size: 19px; margin: 44px 0 12px; padding-top: 4px;
  letter-spacing: -0.01em;
}
h2::before {
  content: ''; display: block; width: 28px; height: 3px;
  background: var(--lime); margin-bottom: 12px; border-radius: 2px;
}
h3 { font-size: 16px; margin: 26px 0 6px; }
p, li { font-size: 15.5px; }
ul { padding-left: 20px; }
li { margin: 6px 0; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--warm); font-weight: 600; white-space: nowrap; }
.note {
  background: var(--warm); border-radius: 12px; padding: 18px 20px; margin: 20px 0;
  font-size: 14.5px;
}
a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
footer {
  margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 14px;
}
@media (max-width: 560px) {
  .wrap { padding: 40px 20px 72px; }
  h1 { font-size: 25px; }
  th, td { padding: 9px 8px; }
}
