/* ── BLOG OVERVIEW ── */
.filter-bar{background:var(--white);border-bottom:1px solid var(--border);padding:.875rem 2rem;position:sticky;top:68px;z-index:50;}
.filter-inner{max-width:1200px;margin:0 auto;display:flex;gap:.5rem;flex-wrap:wrap;}
.filter-btn{background:transparent;border:1.5px solid var(--border);color:var(--text-muted);padding:.4rem 1rem;border-radius:20px;font-family:'Montserrat',sans-serif;font-size:.75rem;font-weight:600;cursor:pointer;transition:all .2s;}
.filter-btn:hover,.filter-btn.active{background:var(--blue);border-color:var(--blue);color:#fff;}
.blog-layout{max-width:1200px;margin:0 auto;padding:3rem 2rem 5rem;display:grid;grid-template-columns:1fr 300px;gap:3rem;}
.featured-card{display:grid;grid-template-columns:1fr 1fr;border-radius:12px;overflow:hidden;border:1.5px solid var(--border);text-decoration:none;color:inherit;margin-bottom:2.5rem;transition:box-shadow .25s,border-color .25s;}
.featured-card:hover{box-shadow:0 16px 48px rgba(26,107,255,.12);border-color:var(--blue);}
.featured-img{background:var(--blue);display:flex;align-items:center;justify-content:center;position:relative;min-height:200px;}
.featured-img svg{width:64px;height:64px;stroke:rgba(255,255,255,.3);}
.featured-badge{position:absolute;top:1rem;left:1rem;background:var(--accent);color:#fff;font-size:.65rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:.3rem .7rem;border-radius:20px;}
.featured-body{padding:2rem;}
.featured-cat{font-size:.7rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--blue);margin-bottom:.6rem;}
.featured-body h2{font-family:'Source Serif 4',Georgia,serif;font-size:1.35rem;font-weight:300;color:var(--text);margin-bottom:.75rem;line-height:1.3;}
.featured-body p{font-size:.82rem;color:var(--text-muted);line-height:1.7;margin-bottom:1.25rem;}
.featured-meta{display:flex;align-items:center;gap:.6rem;font-size:.72rem;color:var(--text-muted);flex-wrap:wrap;}
.meta-dot{width:3px;height:3px;border-radius:50%;background:var(--text-muted);}
.read-link{color:var(--blue);font-weight:700;margin-left:auto;}
.articles-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.article-card{border:1.5px solid var(--border);border-radius:10px;overflow:hidden;text-decoration:none;color:inherit;transition:all .25s;display:block;}
.article-card:hover{box-shadow:0 8px 32px rgba(26,107,255,.1);border-color:var(--blue);transform:translateY(-2px);}
.article-img{background:var(--blue-pale);height:110px;display:flex;align-items:center;justify-content:center;}
.card-body{padding:1.25rem;}
.article-cat{font-size:.68rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:.5rem;}
.card-body h3{font-size:.88rem;font-weight:700;color:var(--text);margin-bottom:.5rem;line-height:1.35;}
.card-body p{font-size:.78rem;color:var(--text-muted);line-height:1.6;margin-bottom:.9rem;}
.card-footer{display:flex;justify-content:space-between;align-items:center;font-size:.72rem;color:var(--text-muted);}
.cat-list{list-style:none;}
.cat-list li{padding:.5rem 0;border-bottom:1px solid var(--border);}
.cat-list li:last-child{border-bottom:none;}
.cat-list a{font-size:.82rem;font-weight:600;color:var(--text);text-decoration:none;display:flex;justify-content:space-between;}
.cat-badge{background:var(--blue-pale);color:var(--blue);font-size:.7rem;font-weight:700;padding:.15rem .5rem;border-radius:20px;}
@media(max-width:960px){.blog-layout{grid-template-columns:1fr;}}
@media(max-width:640px){.featured-card{grid-template-columns:1fr;}.featured-img{min-height:120px;}.articles-grid{grid-template-columns:1fr;}}
