<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
function wrapImageWithLink() {
const listItems = $('section[data-section-id="6993a8dd53bebe34dd73d371"] .list-item');
listItems.each(function() {
const img = $(this).find('.slide-media-container img');
const link = $(this).find('.list-item-content__button-container a');
if (img.length && link.length) {
const newLink = $('<a>').attr('href', link.attr('href'));
img.before(newLink);
newLink.append(img);
}
});
}
wrapImageWithLink();
});
</script>
<style>
section[data-section-id="6993a8dd53bebe34dd73d371"] .list-item-content__button-container {
display: none;
}
</style>