:root{
  --bg:#0b0c10;
  --panel:#14151a;
  --ink:#e6e6e6;
  --muted:#a9b0b8;
  --accent:#4da3ff;
  --border:#2a2d35;
}
[data-theme="light"]{
  --bg:#ffffff;
  --panel:#f7f7f8;
  --ink:#1b1f23;
  --muted:#59636e;
  --accent:#0b67d3;
  --border:#e5e7eb;
}
html,body{
  margin:0;
  min-height:100%;
  background-color:var(--bg);
  background-image:url('../images/buffalo-plaid-2.png');
  background-repeat:repeat;
  background-size:320px auto;
  color:var(--ink);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica Neue,Arial;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:900px;margin:0 auto;padding:28px 18px}
.crumb{margin-bottom:14px;font-size:14px}
.panel{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
}
h1{font-size:34px;line-height:1.2;margin:0 0 8px}
h2{font-size:21px;margin:22px 0 8px}
p{margin:0 0 12px}
ul{margin:0 0 12px 20px}
li{margin-bottom:6px}
.meta{color:var(--muted);font-size:14px}
.source-list a{word-break:break-word}
.entry-image{
  margin:16px 0 18px;
}
.entry-image img{
  display:block;
  width:min(100%, 320px);
  height:auto;
  margin:0 auto;
  box-sizing:border-box;
  border-radius:12px;
  border:1px solid var(--border);
}
.entry-image figcaption{
  margin-top:8px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}
.tag{
  display:inline-block;
  background:transparent;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  padding:3px 10px;
  margin-right:8px;
  font-size:12px;
}
.footer{
  color:var(--muted);
  margin-top:22px;
  font-size:13px;
}
@media (max-width:700px){
  h1{font-size:28px}
}
