Powrót na górę
document.addEventListener('DOMContentLoaded', function () {
const img = document.querySelector(
'.tutor-course-details-page .tutor-course-thumbnail img'
);
if (!img) return;
const fullSrc = img.src.replace(/-\d+x\d+(\.\w+)$/, '$1');
img.src = fullSrc;
img.removeAttribute('srcset');
img.removeAttribute('sizes');
});