:root {
  --bg: #0f1410;
  --surface: #1a2218;
  --text: #e8efe4;
  --muted: #9aab96;
  --accent: #7cb87a;
  --accent-soft: #2d4a2c;
  --border: #2a3528;
  --header-bg: rgba(15, 20, 16, 0.92);
  --footer-bg: rgba(15, 20, 16, 0.92);
  --font: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', system-ui, sans-serif;
  --heading-font: Georgia, 'Times New Roman', serif;
  --max: 760px;
  --radius: 12px;
  --font-size: 17px;
  --line-height: 1.75;
  --heading-weight: 700;
}
body {
  font-family: var(--font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  background: radial-gradient(ellipse at top, #1a2618, #0f1410);
  color: var(--text);
}
h1, h2, h3, h4, .brand { font-family: var(--heading-font); font-weight: var(--heading-weight); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px);
}
.site-header.banner {
  min-height: 280px;
  background-image: none;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: none;
}
.site-header.banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  
}
.site-header.banner .header-inner { position: relative; z-index: 1; }
.site-header.minimal .brand { font-size: 1.25rem; }
.site-header.centered { text-align: center; }
.site-header.centered .header-inner { justify-content: center !important; flex-direction: column; gap: 0.25rem; }
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--border); }
.hero {
  
  
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
  border-radius: var(--radius);
  padding: 2rem 0 1rem;
}
.hero h1 { font-size: 2.6rem; margin: 0 0 0.5rem; }
.hero p { color: var(--muted); font-family: var(--sans); max-width: 36rem; margin: 0 auto; }
.post-list.layout-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; list-style: none; padding: 0; }
.post-list.layout-grid li { border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; background: var(--surface); }
.post-list.layout-magazine li:first-child { grid-column: 1 / -1; font-size: 1.1rem; }
.post-list.layout-magazine { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; list-style: none; padding: 0; }
.post-card { border-radius: var(--radius); overflow: hidden; }
.post-card.style-bordered { border: 1px solid var(--border); padding: 1rem; background: var(--surface); }
.post-card.style-elevated { border: 1px solid var(--border); padding: 1rem; background: var(--surface); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.post-card img { width: 100%; height: 160px; object-fit: cover; border-radius: calc(var(--radius) - 4px); margin-bottom: 0.75rem; }
.post-list li { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.logo-img { max-height: 48px; width: auto; }
.nav-links { display: flex; gap: 1.25rem; font-family: var(--sans); font-size: 0.9rem; flex-wrap: wrap; }
.nav-links a { color: var(--text); text-decoration: none; opacity: 0.85; }
.nav-links a:hover { color: var(--accent); opacity: 1; }
.social-links { display: flex; gap: 1rem; margin-top: 0.75rem; }
.social-links a { font-family: var(--sans); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.5rem; }
.footer-links a { color: var(--muted); font-family: var(--sans); font-size: 0.9rem; }
.post-intro { color: var(--muted); font-family: var(--sans); margin-bottom: 2rem; max-width: 40rem; margin-left: auto; margin-right: auto; text-align: center; }
article.post .content img { max-width: 100%; border-radius: var(--radius); }