/* Custom fixes for the static rebuild: eliminate the dead black space
   below short pages by pinning the footer to the bottom of the viewport,
   and let the homepage hero fill the full viewport so its background
   image never runs out before the window does. */
#page-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
#et-main-area {
	flex: 1 0 auto;
}
#main-footer {
	flex-shrink: 0;
}
/* Homepage age-gate hero: fill the viewport so the background image
   always covers the full window height. */
.et_pb_section_0.et_pb_section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
