.skulpt-header {
	position: relative;
	isolation: isolate;
}
.skulpt-header > .background {
	position: absolute; top: 0; left: 0; z-index: -1;
	height: 100%; width: 100%;
	
	background-color: #000;
}
.skulpt-header > .content-wrapper {
	display: flex; height: calc(90vh - var(--wp-admin--admin-bar--height, 0px)); min-height: 500px;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	
	text-align: center;
	text-transform: uppercase;
	color: #FFF;
}
.skulpt-header > .content-wrapper > .title {
	max-width: 500px;
	margin: 0;
	
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 4px;
}
.skulpt-header > .content-wrapper > .hook {
	max-width: 500px;
	
	font-size: 36px;
	font-weight: 400;
}
@media (min-width: 900px) {
	.skulpt-header > .content-wrapper {
		row-gap: 15px;
		padding: 100px 0;
	}
	.skulpt-header > .content-wrapper > .title { font-size: 18px; }
	.skulpt-header > .content-wrapper > .hook  { font-size: 36px; }
}
@media (max-width: 899.99px) {
	.skulpt-header > .content-wrapper {
		row-gap: 10px;
		padding: 75px 0;
	}
	.skulpt-header > .content-wrapper > .title { font-size: 16px; }
	.skulpt-header > .content-wrapper > .hook  { font-size: 20px; }
}