.blog-section{padding:0 5%}
.blog-inner{max-width:1200px;margin:0 auto}
.blog-grid{margin-bottom:80px;display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.blog-card{display:flex;flex-direction:column;background:#fff;border:1.5px solid #e5e7eb;border-radius:20px;overflow:hidden;text-decoration:none;color:inherit;transition:border-color .2s,box-shadow .2s,transform .2s}
.blog-card:hover{border-color:color-mix(in srgb,var(--p,#7c3aed) 35%,transparent);box-shadow:0 8px 32px color-mix(in srgb,var(--p,#7c3aed) 10%,transparent);transform:translateY(-3px)}
.blog-card-img{width:100%;overflow:hidden;background:#f4f2f9;flex-shrink:0;position:relative;height:190px;}
.blog-card-img img{width:100%;height:100%;object-fit:contain;display:block;transition:transform .4s}
.blog-card:hover .blog-card-img img{transform:scale(1.04)}
.blog-card-img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#fff;opacity:.3}
.blog-card-img-placeholder i{width:40px;height:40px}
.blog-card-body{padding:22px 24px 24px;flex:1;display:flex;flex-direction:column}
.blog-card-meta{margin-bottom:10px;display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.blog-card-date,.blog-card-read{display:inline-flex;align-items:center;gap:5px;font-size:.75rem;color:#9ca3af;font-weight:500}
.blog-meta-icon{width:12px;height:12px}
.blog-card-title{margin-bottom:10px;font-size:1.05rem;font-weight:800;color:#111827;line-height:1.4;font-family:'Bricolage Grotesque',sans-serif}
.blog-card-excerpt{margin-bottom:18px;font-size:.87rem;color:#6b7280;line-height:1.65;flex:1}
.blog-card-link{margin-top:auto;display:inline-flex;align-items:center;gap:5px;font-size:.83rem;font-weight:700;color:var(--p,#7c3aed);transition:gap .2s}
.blog-card:hover .blog-card-link{gap:8px}
.blog-link-icon{width:13px;height:13px}
.blog-empty{padding:60px 20px;margin-bottom:60px;text-align:center}
.blog-empty-icon{margin:0 auto 20px;width:64px;height:64px;border-radius:20px;background:var(--p-soft,#f5f3ff);color:var(--p,#7c3aed);display:flex;align-items:center;justify-content:center}
.blog-empty-icon i{width:28px;height:28px}
.blog-empty h3{margin-bottom:8px;font-size:1.1rem;font-weight:800;color:#111827}
.blog-empty p{font-size:.9rem;color:#6b7280}
@media(max-width:1024px){
.blog-grid{grid-template-columns:repeat(2,1fr);gap:20px}
}
@media(max-width:768px){
.blog-section{padding:40px 4% 0}
.blog-grid{margin-bottom:48px;grid-template-columns:1fr;gap:16px}
.blog-card-body{padding:18px 20px 20px}
}
@media(max-width:540px){
.blog-section{padding:28px 4% 0}
.blog-card-body{padding:16px}
.blog-card-title{font-size:.97rem}
.blog-card-excerpt{margin-bottom:14px;font-size:.84rem}
.blog-empty{padding:40px 16px;margin-bottom:40px}
}


/* ═══════════════════════════════════════════════════════════════════════
   DARK THEME SUPPORT FOR BLOG PAGES
   Applied via: html[data-theme="dark"]
═══════════════════════════════════════════════════════════════════════ */
html[data-theme="dark"] .blog-card{background:#1C1C1C!important;border-color:#2A2A2A!important}
html[data-theme="dark"] .blog-card:hover{border-color:color-mix(in srgb,var(--p,#7c3aed) 35%,transparent)!important;box-shadow:0 8px 32px color-mix(in srgb,var(--p,#7c3aed) 10%,transparent)!important}
html[data-theme="dark"] .blog-card-meta{color:#A0A0A0!important}
html[data-theme="dark"] .blog-card-title{color:#EDEDED!important}
html[data-theme="dark"] .blog-card-excerpt{color:#A0A0A0!important}
html[data-theme="dark"] .blog-card-link{color:var(--p,#7c3aed)!important}
html[data-theme="dark"] .blog-empty-icon{background:var(--p-light,#ede9fe)!important;color:var(--p,#7c3aed)!important}
html[data-theme="dark"] .blog-empty h3{color:#EDEDED!important}
html[data-theme="dark"] .blog-empty p{color:#A0A0A0!important}



