:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --border:#e5e7eb;
  --text:#111827;
  --muted:#6b7280;
  --link:#1f6feb;
  --shadow:0 2px 10px rgba(0,0,0,.06);
  --radius:16px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background:var(--bg);
  color:var(--text);
}

header.site-header{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  background:#fff;
  border-bottom:1px solid var(--border);
}

header.site-header img{
  width:52px;
  height:52px;
  border-radius:12px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--border);
}

header .title{
  line-height:1.15;
}

header .title h1{
  margin:0;
  font-size:18px;
}

header .title .sub{
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
}

header nav{
  margin-left:auto;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

header nav a{
  color:var(--text);
  text-decoration:none;
  font-size:14px;
}

header nav a:hover{
  text-decoration:underline;
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:18px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}

.footer{
  margin-top:18px;
  padding-top:12px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer a{
  color:var(--muted);
  text-decoration:none;
}
.footer a:hover{ text-decoration:underline; }
