
/* DealDark Categories 1.2.1: Post-card thumbnails show full image */
.post-cards{display:flex;flex-direction:column;gap:16px;padding:22px 0 28px;}
.post-card{display:flex;gap:16px;background:var(--surface, #111827);border:1px solid rgba(255,255,255,.06);border-radius:14px;overflow:hidden;}
.post-card .thumb{width:180px;min-height:120px;background:#0f172a;display:flex;align-items:center;justify-content:center;}
.post-card .thumb img{width:100%;height:100%;object-fit:contain;object-position:center;background:#0f172a;}
.post-card .body{padding:14px 16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.post-card .meta{font-size:12px;color:var(--muted, #9fb7e9);display:flex;gap:8px;align-items:center;flex-wrap:wrap;}
.post-card .title a{color:var(--text, #e6efff);font-weight:700;font-size:18px;text-decoration:none;}
.post-card .title a:hover{text-decoration:underline;}
.post-card .excerpt{color:var(--muted, #9fb7e9);line-height:1.45;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;max-height:calc(1.45em*3);}
.post-card .btn{display:inline-block;background:var(--accent, #3b82f6);color:var(--accent-contrast, #ffffff);padding:10px 14px;border-radius:10px;font-weight:600;text-decoration:none;}
.post-card .btn:hover{filter:brightness(1.05);text-decoration:none;}
@media (max-width:720px){
  .post-card{flex-direction:column}
  .post-card .thumb{width:100%;height:200px}
  .post-card .thumb img{object-fit:contain;}
}
