document.addEventListener('DOMContentLoaded', function () {
// Run only on the homepage
if (!document.body.classList.contains('home')) {
return;
}
document.querySelectorAll('.hide-if-empty').forEach(function(container) {
// Look for loop items inside this container
const items = container.querySelectorAll('.e-loop-item');
if (items.length === 0) {
container.style.display = 'none';
}
});
});