const ARTICLES = [ { tag: "Markets", title: "The case for boring portfolios in 2026", read: "8 min", date: "12 May 2026", tone: "cream", image: "https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1000&q=80" }, { tag: "Tax", title: "Old regime vs new regime: a worked example for ₹40L CTC", read: "6 min", date: "04 May 2026", tone: "green", image: "https://images.unsplash.com/photo-1554224155-1696413565d3?w=1000&q=80" }, { tag: "Behaviour", title: "Why your friend's stock tip is more expensive than it looks", read: "5 min", date: "27 Apr 2026", tone: "green-dark", image: "https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=1000&q=80" }, ]; const Insights = () => { return (

Plain English. No jargon tax.

All writing
{ARTICLES.map((a, i) => (
e.currentTarget.querySelector(".ins-img").style.transform = "scale(1.02)"} onMouseLeave={e => e.currentTarget.querySelector(".ins-img").style.transform = "scale(1)"}>
{a.tag} {a.read}

{a.title}

{a.date}
))}
); }; window.Insights = Insights;