/* site.css — 소개/정책/문의 등 정보 페이지 공통 스타일 */
:root { --ink: #1a1a1a; --paper: #fff; --bg: #f3f0ea; --line: #d9d4cb; --accent: #ffcc33; }
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", system-ui, sans-serif;
  line-height: 1.7; font-size: 16px;
}
a { color: #1e58a8; }
.site-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 14px 20px; background: var(--paper); border-bottom: 2px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; text-decoration: none; color: var(--ink); }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.site-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 700; padding: 6px 12px; border-radius: 16px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--accent); }
.site-nav a.cta { background: var(--ink); color: #fff; }
main.page { max-width: 820px; margin: 0 auto; padding: 28px 20px 48px; }
.card { background: var(--paper); border-radius: 18px; padding: 28px 28px 32px; box-shadow: 0 2px 0 var(--line); }
h1 { font-size: 30px; margin: 0 0 8px; line-height: 1.3; }
h2 { font-size: 21px; margin: 32px 0 10px; padding-left: 12px; border-left: 6px solid var(--accent); line-height: 1.3; }
h3 { font-size: 17px; margin: 22px 0 6px; }
p, li { margin: 0 0 10px; }
ul, ol { padding-left: 22px; }
.meta { color: #666; font-size: 14px; margin-bottom: 20px; }
.lead { font-size: 18px; }
.hero { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.hero .art { flex: 0 0 180px; }
.hero .art canvas { width: 180px; height: 180px; background: #fff; border-radius: 12px; box-shadow: 0 2px 0 var(--line); }
.btn { display: inline-block; background: var(--ink); color: #fff; text-decoration: none; font-weight: 800; padding: 12px 22px; border-radius: 30px; margin: 8px 0; }
.btn.light { background: var(--accent); color: var(--ink); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 12px 0; }
.tile { background: var(--bg); border-radius: 14px; padding: 16px; }
.tile b { display: block; margin-bottom: 4px; }
.mail { font-weight: 800; font-size: 20px; }
table { border-collapse: collapse; width: 100%; margin: 10px 0; font-size: 15px; }
th, td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
th { background: var(--bg); }
.site-footer {
  max-width: 820px; margin: 0 auto; padding: 10px 20px 36px; color: #666; font-size: 13px;
  display: flex; gap: 6px 14px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.site-footer a { color: #444; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.ad-slot { max-width: 820px; margin: 16px auto 0; padding: 0 20px; text-align: center; min-height: 0; }
.ad-slot:empty { display: none; }
@media (max-width: 560px) { .card { padding: 20px 18px 24px; } h1 { font-size: 24px; } }
