/* Minimal stylesheet inspired by digdrivediy layout and readability */
:root{--accent:#e25822;--bg:#ffffff;--muted:#666;--maxw:1000px}
*{box-sizing:border-box}body{font-family:Inter,Segoe UI,Arial,Helvetica,sans-serif;margin:0;color:#222;background:var(--bg);line-height:1.6}
.container{max-width:var(--maxw);margin:0 auto;padding:1rem}
.site-header{background:#111;color:#fff}
.nav-row{display:flex;align-items:center;justify-content:space-between;padding:1rem}
.site-title{font-size:1.25rem;margin:0}
nav a{color:#ddd;margin-left:1rem;text-decoration:none}
.hero{background:linear-gradient(135deg,#f6f6f6,#fff);padding:3rem 0;text-align:center;border-bottom:1px solid #eee}
.hero h2{font-size:2rem;margin:.2rem 0}
.btn{display:inline-block;background:var(--accent);color:#fff;padding:.6rem 1rem;border-radius:4px;text-decoration:none}
.latest-posts h3{margin-top:1rem}
.posts-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}
.post-card{background:#fff;border:1px solid #eee;padding:1rem;border-radius:6px}
.post-card a{color:inherit;text-decoration:none}
.post-card h4{margin:.2rem 0}
.meta{color:var(--muted);font-size:.9rem}
.site-footer{background:#f8f8f8;padding:1rem;margin-top:2rem;text-align:center;color:#333;border-top:1px solid #eee}

/* Thumbnail and responsive image rules */
.post-thumb{width:100%;max-width:200px;height:120px;object-fit:cover;display:block;margin-bottom:0.5rem;border-radius:6px}
.post-card .post-thumb{float:left;margin-right:0.75rem}
.post-content img{max-width:100%;height:auto}
.post-card .excerpt{max-height:6.5rem;overflow:hidden}
.post-card .excerpt img{max-width:100%;height:auto;display:block}

@media (max-width:600px){.nav-row{flex-direction:column;align-items:flex-start}.hero h2{font-size:1.4rem}}