document.addEventListener("DOMContentLoaded", function () {
document.querySelectorAll(".clickable-card").forEach(function(card) {
// find the first link inside the card
const link = card.querySelector("a[href]");
if (!link) return;
card.style.cursor = "pointer";
card.addEventListener("click", function (e) {
// allow normal clicks on links
if (e.target.closest("a")) return;
window.location.href = link.href;
});
});
});