// source --> https://solarssk.com/wp-content/themes/ein-des-ein/template-parts/blocks/cards-image-title/block.js?ver=6.8.2 
document.addEventListener("DOMContentLoaded", function () {
    const cards = document.querySelectorAll(".card-fx");

    cards.forEach((card) => {
        card.addEventListener("click", function () {
            if (window.innerWidth < 992) {
                cards.forEach((c) => {
                    if (c !== card) c.classList.remove("active");
                });
                card.classList.toggle("active");
            }
        });
    });
});