.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.post-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease;display:flex;flex-direction:column}.post-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}.post-card-media{display:block;aspect-ratio:16/10;overflow:hidden;background:var(--blue-bg)}.post-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}.post-card:hover .post-card-media img{transform:scale(1.05)}.post-card-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--blue)}.post-card-placeholder svg{width:54px;height:54px}.post-card-body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}.post-card-meta{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-bottom:10px}.post-card-chips,.post-card-date{display:inline-flex;align-items:center;gap:6px}.post-card-date{font-size:.8rem;color:var(--text-soft)}.post-card-date svg{width:15px;height:15px}.post-card-chips{flex-wrap:wrap}.post-card-cat,.post-card-level{font-size:.75rem;font-weight:600;padding:4px 12px;border-radius:999px}.post-card-cat{color:var(--purple);background:var(--purple-bg)}.post-card-level{color:var(--orange);background:var(--orange-bg)}.post-card-level:hover{color:var(--orange);opacity:.8}.post-card-title{font-size:1.08rem;margin-bottom:8px}.post-card-title a{color:var(--ink)}.post-card-title a:hover{color:var(--purple)}.post-card-excerpt{color:var(--text-soft);font-size:.92rem;flex:1}.post-card-link{display:inline-flex;align-items:center;gap:6px;font-weight:600;font-size:.9rem;margin-top:14px}.post-card-link svg{width:16px;height:16px}@media (max-width:980px){.blog-grid{grid-template-columns:1fr 1fr}}@media (max-width:640px){.blog-grid{grid-template-columns:1fr}}