:root{
  --brand:#b0166b;
  --brand2:#e054a8;
  --text:#111;
  --muted:#6b7280;
  --bg:#fff;
  --card:#fff;
  --border:#e5e7eb;
  --radius:18px;
  --wrap:1100px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{color:inherit}
.wrap{max-width:var(--wrap); margin:0 auto; padding:0 18px;}

header.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}

.navbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
  font-weight:700;
}

.brand img{
  height:42px; width:auto; display:block;
}

.menu{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}

.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  text-decoration:none;
  background:#fff;
}

.pill:hover{border-color:#d1d5db}
.pill.primary{
  border-color:transparent;
  background:var(--brand);
  color:#fff;
}
.pill.primary:hover{filter:brightness(.95)}

main{padding:24px 0 60px}
.hero{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:#f8fafc;
}
.hero img{width:100%; height:auto; display:block}

.article{
  margin-top:22px;
}
.article h1{
  font-size: clamp(28px, 3.4vw, 46px);
  line-height:1.1;
  margin:14px 0 10px;
}
.article-meta{
  color:var(--muted);
  font-size:14px;
  margin-bottom:18px;
}
.article-content{
  font-size:17px;
  max-width: 780px;
}
.article-content img{
  max-width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--border);
}
.article-content h2, .article-content h3{
  margin-top:26px;
  line-height:1.2;
}
.backlink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  text-decoration:none;
  margin-bottom:10px;
}
.backlink:hover{color:#111}

@media (max-width:720px){
  .brand img{height:36px}
}
