/*
Theme Name: default-kmo
Author: d.anashkin
Author URI: https://github.com/VB51RU
Theme URI: https://github.com/VB51RU/default-kmo
Tags: full-site-editing, block-patterns
Text Domain: default-kmo
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.0
Version: 2026.3.10
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
html, body {
    height: 100%; /* важно для работы процентных высот */
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* можно и 100%, но vh удобнее */
}

.site-content {
    flex: 1 0 auto; /* растягивается, занимая всё доступное место */
}

.site-footer {
    flex-shrink: 0; /* футер не сжимается */
}