/*
Theme Name: Paramount Beauty Academy
Description: Child theme based on the Ollie WP theme
Author: TJ Noel
Template: ollie
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paramount-beauty-academy
*/




/*
** Sticky Footer Layout
** Keeps the footer at the bottom of short pages
*/

html,
body {
	min-height: 100%;
}

body {
	min-height: 100dvh;
}

/*
** WordPress / Ollie site wrapper
** This wrapper contains the header, main, and footer.
*/
body .wp-site-blocks {
	min-height: 100dvh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: minmax(0, 1fr);
}

/*
** Main content area
** Targets any main element directly inside .wp-site-blocks,
** whether or not the page template adds a custom class like .site-content.
*/
body .wp-site-blocks > main {
	min-width: 0;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/*
** Header and footer cleanup
*/
body .wp-site-blocks > header,
body .wp-site-blocks > footer {
	min-width: 0;
}

/*
** Fallback for browsers that do not fully support dvh
*/
@supports not (height: 100dvh) {
	body,
	body .wp-site-blocks {
		min-height: 100vh;
	}
}