no header here
// Card image overlay on mobile only - Card.html
var overlay = document.querySelectorAll('.card .img-overlay');
if ( overlay.length ) {
if ( viewportWidth < navbarBreakpointWidth ) {
overlay.forEach(function(ol) {
ol.classList.add('card-img-overlay');
});
}
}