window.addEventListener('load', function() {
// 1. Находим все обертки Reels
const embeds = document.querySelectorAll('[data-s9e-mediaembed="reel"]');
embeds.forEach(function(container) {
// 2. Ищем внутренний div, у которого стоит padding-bottom
const wrapper = container.querySelector('div[style*="padding-bottom"]');
const iframe = container.querySelector('iframe');
if (wrapper && iframe) {
// 3. Убираем ограничитель высоты
wrapper.style.paddingBottom = '0';
wrapper.style.height = 'auto';
wrapper.style.overflow = 'visible';
// 4. Выводим iframe из абсолютного позиционирования
// iframe.style.position = 'relative';
// iframe.style.height = '850px'; // Задаем базовую высоту
// iframe.style.width = '100%';
}
});
});