/**
 * Travel Tours — page layout (sticky footer fix)
 */

html {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	margin: 0;
}

.site-header {
	flex-shrink: 0;
}

.site-main {
	flex: 1 0 auto;
	width: 100%;
}

.site-footer {
	flex-shrink: 0;
	width: 100%;
}

/* Remove arbitrary min-height that caused awkward gaps */
.site-main {
	min-height: 0;
}
