document.addEventListener('DOMContentLoaded', function() {
const imageLinks = document.querySelectorAll('.image-link-item');
imageLinks.forEach(item => {
item.addEventListener('mouseover', function() {
this.classList.add('is-hovered');
});
item.addEventListener('mouseout', function() {
this.classList.remove('is-hovered');
});
});
});
