/* EarthyBalanceOptions — minimal blog theme (static) */
:root{
  --bg:#fbfaf7;
  --paper:#ffffff;
  --ink:#1f2a24;
  --muted:#5a6a60;
  --line:#e7e2d6;
  --accent:#2f7f6f;
  --accent2:#c16a4a;
  --accent3:#6a5bd6;
  --shadow: 0 12px 30px rgba(31,42,36,.08);
  --radius: 18px;
  --radius2: 12px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 600px at 12% 0%, rgba(47,127,111,.14), transparent 60%),
    radial-gradient(800px 540px at 90% 20%, rgba(193,106,74,.12), transparent 60%),
    radial-gradient(700px 520px at 50% 100%, rgba(106,91,214,.10), transparent 60%),
    var(--bg);
  line-height:1.65;
}
a{color:inherit; text-decoration:none}
a:hover{color:var(--accent)}
.container{width:min(1060px, calc(100% - 40px)); margin:0 auto;}
.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter:saturate(1.2) blur(14px);
  background:rgba(251,250,247,.72);
  border-bottom:1px solid rgba(231,226,214,.8);
}
.topbar-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px;}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{width:36px; height:36px; border-radius:12px; box-shadow:0 10px 20px rgba(31,42,36,.12)}
.brand .title{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  letter-spacing:.2px;
  font-size:18px;
  line-height:1.1;
}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px;}
.nav{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.nav a{font-size:13px; color:var(--muted); padding:8px 10px; border-radius:999px; border:1px solid transparent}
.nav a:hover{color:var(--ink); border-color:rgba(231,226,214,.9); background:rgba(255,255,255,.6)}
.hero{padding:34px 0 20px}
.hero h1{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-size:44px; line-height:1.05;
  margin:0 0 12px;
}
.hero p{margin:0; color:var(--muted); font-size:16px; max-width:74ch}
.grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; padding:18px 0 42px}
@media (max-width: 900px){.grid{grid-template-columns:1fr}}
.card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(231,226,214,.85);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card.pad{padding:18px}
.post{
  display:grid;
  grid-template-columns: 150px 1fr;
  gap:14px;
  padding:14px;
  align-items:center;
  border-radius:var(--radius);
}
.post + .post{margin-top:12px}
.post .thumb{
  width:150px; height:110px; border-radius:16px;
  border:1px solid rgba(231,226,214,.9);
  overflow:hidden;
  background:rgba(255,255,255,.7);
}
.post .thumb img{width:100%; height:100%; object-fit:cover; display:block}
.kicker{font-size:12px; color:var(--muted); display:flex; gap:10px; flex-wrap:wrap}
.post h2{margin:6px 0 6px; font-size:18px; line-height:1.25}
.post p{margin:0; color:var(--muted); font-size:14px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; color:var(--muted);
  border:1px solid rgba(231,226,214,.9);
  background:rgba(255,255,255,.65);
  padding:8px 10px; border-radius:999px;
}
.sidebar h3{margin:0 0 10px; font-size:14px; letter-spacing:.3px; text-transform:uppercase; color:var(--muted)}
.list{display:flex; flex-direction:column; gap:8px}
.list a{padding:10px 12px; border-radius:14px; border:1px solid rgba(231,226,214,.9); background:rgba(255,255,255,.6)}
.list a:hover{background:rgba(255,255,255,.9)}
.article{
  padding:22px 0 56px;
}
.article .meta{color:var(--muted); font-size:13px; display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.article h1{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-size:40px; line-height:1.08; margin:10px 0 8px;
}
.article .cover{
  border-radius:22px;
  border:1px solid rgba(231,226,214,.9);
  overflow:hidden;
  background:rgba(255,255,255,.7);
  box-shadow:var(--shadow);
  margin:18px 0;
}
.article .cover img{width:100%; height:auto; display:block}
.prose{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(231,226,214,.85);
  border-radius:22px;
  padding:20px;
  box-shadow:var(--shadow);
}
.prose h2{
  font-family:"Fraunces", ui-serif, Georgia, serif;
  font-size:22px; margin:18px 0 8px;
}
.prose p{margin:0 0 12px}
.prose ul{margin:0 0 12px 18px}
.quote{
  margin:14px 0 18px;
  padding:14px 14px 14px 16px;
  border-left:4px solid rgba(47,127,111,.65);
  background:rgba(47,127,111,.07);
  border-radius:16px;
  color:var(--muted);
}
.footer{
  border-top:1px solid rgba(231,226,214,.85);
  padding:22px 0 30px;
  color:var(--muted);
  font-size:13px;
}
.footer a{color:var(--muted); text-decoration:underline; text-underline-offset:3px}
.small{font-size:12px; color:var(--muted)}
.breadcrumbs{font-size:12px; color:var(--muted)}
.breadcrumbs a{color:var(--muted); text-decoration:underline; text-underline-offset:3px}
