<article class="bg-white rounded-2xl border border-gray-100 shadow-sm card-hover flex overflow-hidden">
  <div class="<%= imgClass %> shrink-0 relative" style="width:120px;min-height:120px">
    <% if (post.imageCover) { %>
      <img src="<%= post.imageCover %>" alt="" class="absolute inset-0 w-full h-full object-cover" />
    <% } %>
  </div>
  <div class="flex-1 p-5 flex flex-col justify-between min-w-0">
    <div>
      <div class="flex items-center gap-2 mb-2">
        <span class="text-[9px] font-bold uppercase tracking-wider px-2 py-0.5 rounded-full text-white" style="background:#8065f8"><%= catLabel %></span>
      </div>
      <h3 class="font-bold text-navy text-sm leading-snug mb-1.5">
        <a href="/blog/<%= post.slug %>" class="hover:text-purple transition-colors"><%= post.name %></a>
      </h3>
      <% if (post.description) { %>
        <p class="text-xs text-gray-500 leading-relaxed line-clamp-2"><%= post.description %></p>
      <% } %>
    </div>
    <div class="flex items-center justify-between mt-3">
      <div class="flex items-center gap-1.5">
        <div class="w-5 h-5 rounded-full flex items-center justify-center text-white" style="font-size:7px;font-weight:700;background:#13b3b4"><%= initials %></div>
        <p style="font-size:10px" class="text-gray-500"><%= post.author || 'Analytics Grade Team' %> · <%= dateStr %></p>
      </div>
      <a href="/blog/<%= post.slug %>" class="text-xs font-semibold text-purple hover:underline">Read →</a>
    </div>
  </div>
</article>
