:root{
    --navy:#1E3A8A;
    --accent:#D97706;
    --light:#F3F4F6;
    --muted:#6B7280;
    --max:1100px;
}
body{margin:0;font-family:Inter,Arial,sans-serif;color:#111827;line-height:1.6}
a{text-decoration:none;color:var(--navy)}
.container{max-width:var(--max);margin:0 auto;padding:1.5rem}
.site-header{background:var(--navy);color:#fff}
.header-inner{display:flex;justify-content:space-between;align-items:center}
.brand{font-weight:800;color:#fff}
.main-nav a{color:#E8EEF8;margin-left:1.2rem;font-weight:600}
.hero{background:var(--light);padding:2.5rem 0;text-align:center}
.hero h1{margin:0;font-size:2rem;color:var(--navy)}
.hero .lead{color:var(--muted);margin-top:.5rem}
.section{padding:2.5rem 0}
.posts-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}
.post{background:#fff;border:1px solid #eee;border-radius:8px;padding:1rem;display:flex;flex-direction:column}
.post img{width:100%;height:auto;border-radius:6px}
.post h2{margin:.8rem 0;font-size:1.3rem}
.post .meta{color:var(--muted);font-size:.9rem;margin-top:-.4rem}
.excerpt{flex-grow:1;color:#374151}
.readmore{margin-top:.6rem;font-weight:600;color:var(--accent)}
.pagination{text-align:center;margin-top:2rem}
.pagination a{margin:0 .5rem;color:var(--navy);font-weight:600}
.site-footer{background:#0f172a;color:#fff;text-align:center;padding:1.2rem}
/* Blog Layout */
.post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: var(--navy);
}

.post-title a {
    text-decoration: none;
    color: inherit;
}

.post-meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.8rem;
}

.post-meta .category {
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.post-excerpt {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1rem;
}

.btn-link {
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 900px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
