:root{
  --max: 980px;
  --text: #111;
  --muted: #555;
  --line: rgba(0,0,0,0.08);
  --card: #fff;
}
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans KR", Arial, sans-serif;
  color: var(--text);
  background:#fafafa;
}
.wrap{ padding: 18px 14px 60px; }
.container{ max-width: var(--max); margin:0 auto; }
.notice{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  margin: 0 0 14px 0;
  line-height:1.55;
  color: var(--muted);
  font-size: 14px;
}
.header{ margin: 8px 0 18px; }
.hgroup h1{ margin:0; font-size: 22px; line-height:1.2; }
.breadcrumb{ font-size: 13px; color: var(--muted); margin-top: 6px; }
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin: 0 0 14px 0;
}
.card h2{ margin: 0 0 10px 0; font-size: 17px; }
.subnote{ font-weight: 600; color: var(--muted); font-size: 12px; }
.figure{ margin: 10px 0 0 0; }
.figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:#eee;
}
.nav{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 8px; }
.pill{
  display:inline-block;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:#fff;
  color: var(--text);
  text-decoration:none;
  font-size: 14px;
}
.pill:hover{ transform: translateY(-1px); }
.video video{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:#000;
}
.hint{ margin-top: 8px; font-size: 12px; color: var(--muted); line-height: 1.4; }
.footer{ margin-top: 22px; color: var(--muted); font-size: 12px; line-height:1.5; }
