// Show the pop-up when the trigger button is clicked
document.querySelector('.popup-trigger').addEventListener('click', function() {
document.querySelector('.sqs-slice-gallery-item.content-fill').classList.add('show');
});
// Close the pop-up when the close button is clicked
document.querySelector('.popup-close').addEventListener('click', function() {
document.querySelector('.sqs-slice-gallery-item.content-fill').classList.remove('show');
});