Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Blog Post Card</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center items-center min-h-screen p-6 antialiased"> <div class="max-w-md w-full group cursor-pointer"> <!-- Card Container --> <div class="bg-white rounded-[3rem] overflow-hidden border border-slate-100 shadow-sm hover:shadow-2xl hover:shadow-slate-200/50 hover:-translate-y-2 transition-all duration-500"> <!-- Image Area --> <div class="aspect-[16/10] overflow-hidden relative"> <img src="https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=800&q=80" alt="Neural Network" class="h-full w-full object-cover group-hover:scale-110 transition-transform duration-700"> <div class="absolute top-6 left-6"> <span class="px-4 py-1.5 bg-white/90 backdrop-blur text-slate-900 text-[10px] font-black uppercase tracking-widest rounded-full shadow-sm">Neural Architecture</span> </div> </div> <!-- Content Area --> <div class="p-10 space-y-6"> <div class="flex items-center gap-3 text-[10px] font-black text-slate-400 uppercase tracking-[0.2em] leading-none"> <span>March 12, 2026</span> <span class="h-1 w-1 bg-slate-200 rounded-full"></span> <span>8 min read</span> </div> <h3 class="text-2xl font-black text-slate-900 tracking-tight leading-tight group-hover:text-indigo-600 transition-colors">The Future of Multi-Cluster Synchronization Protocols</h3> <p class="text-slate-500 line-clamp-3 leading-relaxed">Exploring the shift from traditional mesh topologies to highly adaptive "spectral" alignment systems in global distributed networks.</p> <!-- Author --> <div class="pt-6 border-t border-slate-50 flex items-center justify-between"> <div class="flex items-center gap-3"> <div class="h-10 w-10 rounded-xl bg-indigo-50 border border-indigo-100 overflow-hidden"> <img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?w=100&h=100&fit=crop" class="h-full w-full object-cover"> </div> <div> <p class="text-xs font-bold text-slate-900">Sarah Jenkins</p> <p class="text-[9px] font-black text-slate-400 uppercase tracking-widest leading-none">Senior Architect</p> </div> </div> <div class="h-10 w-10 rounded-full bg-slate-50 flex items-center justify-center text-slate-400 group-hover:bg-indigo-600 group-hover:text-white transition-all"> <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M17 8l4 4m0 0l-4 4m4-4H3" /></svg> </div> </div> </div> </div> </div> </body> </html>