<article class="bg-white rounded-2xl overflow-hidden border border-gray-100 shadow-sm card-hover">
  <div class="relative" style="height:140px">
    <% if (post.imageCover) { %>
      <img src="<%= post.imageCover %>" alt="" class="absolute inset-0 w-full h-full object-cover" />
    <% } else { %>
      <div class="absolute inset-0" style="background:linear-gradient(135deg,#4490d3,#8065f8)"></div>
    <% } %>
    <span class="absolute top-3 right-3 text-[9px] font-bold uppercase tracking-wider px-2.5 py-1 rounded-full text-white" style="background:rgba(0,0,0,.3)"><%= catLabel %></span>
  </div>
  <div class="p-5">
    <h3 class="font-bold text-navy text-sm leading-snug mb-2">
      <a href="/blog/<%= post.slug %>" class="hover:text-purple transition-colors"><%= post.name %></a>
    </h3>
    <div class="flex items-center justify-between">
      <p class="text-[10px] text-gray-400"><%= post.author || 'Analytics Grade Team' %> · <%= readMin %> min</p>
      <a href="/blog/<%= post.slug %>" class="text-xs font-semibold text-purple hover:underline">Read →</a>
    </div>
  </div>
</article>
