.hero h1 span background: #0b2b3b; color: white; font-size: 1.4rem; padding: 0.2rem 0.8rem; border-radius: 60px; background: linear-gradient(120deg, #1e4668, #0f2c44); box-shadow: 0 2px 6px rgba(0,0,0,0.1);
// Helper: format date nicely or return "Recent" function formatDisplayDate(dateString) if (dateString && dateString.trim() !== '') try const dateObj = new Date(dateString); if (!isNaN(dateObj.getTime())) return dateObj.toLocaleDateString('en-US', year: 'numeric', month: 'short', day: 'numeric' ); catch(e) /* fallback */ return dateString; // if no date provided, generate a default "current date" const today = new Date(); return today.toLocaleDateString('en-US', year: 'numeric', month: 'short', day: 'numeric' ); .hero h1 span background: #0b2b3b
.post-title font-size: 1.7rem; font-weight: 700; color: #0b2b3f; line-height: 1.3; margin-bottom: 0.5rem; word-break: break-word; padding: 0.2rem 0.8rem