/**
 * Footer Hug Window Bottom
 */

/* Make all parents minimum fill the window height */
html,
body,
#page-container,
#et-boc,
#et-main-area {
	height: 100%;
}

/* Accommodate the WP admin bar */
html:has( body.admin-bar ) {
	height: calc( 100% - 32px );
}

/* Grow the content area to push the footer down to the window edge */
#et-main-area {
	display: flex;
	flex-direction: column;
}

#main-content {
	flex-grow: 1;
}
