if (window.matchMedia("(max-width: 576px)").matches) {
const panel = document.querySelector(".top-panel");
const main = document.querySelector(".main-block");
const allPageHeight = document.documentElement.clientHeight; //получаем высоту всего видимого экрана
main.style.minHeight = `${allPageHeight - panel.clientHeight}px`; //вычитаем высоту верхней панели от всего экрана
}