/* ── ADDITIONS FOR BLOG CARD PREVIEWS ── */

.post-card {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}
.post-card:last-of-type { border-bottom: none; }
.post-card-image {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  background: #f5f5f5;
}
.post-card-body { flex: 1; min-width: 0; }
.post-card-date { font-size: 12px; color: #999; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.post-card-title { font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.post-card-title a { color: #000; text-decoration: none; }
.post-card-title a:hover { text-decoration: underline; }
.post-card-excerpt { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 8px; }
.post-card-tag { display: inline-block; font-size: 11px; color: #666; background: #f0f0f0; padding: 2px 10px; border-radius: 12px; }
.post-card-readmore { font-size: 13px; display: inline-block; margin-top: 8px; color: #000; font-weight: bold; border-bottom: 1px solid #000; text-decoration: none; }
.post-card-readmore:hover { color: #555; border-bottom-color: #555; }

@media (max-width: 600px) {
  .post-card { flex-direction: column; }
  .post-card-image { width: 100%; height: 180px; }
}
