@media (max-width: 1050px) {
	header {
		height: 65vh !important;
	}

	#postInfo {
		justify-content: flex-start !important;
		padding: 25% 30px;
	}

	#headerControls > * {
		padding: 0 calc(28% - 24%) !important;
	}

	header h1 {
		font-size: 2rem !important;
	}

	header h2 {
		font-size: 1rem !important;
	}

	header p {
		font-size: 1.3rem;
	}

	header button:first-of-type {
		margin-bottom: 5px;
	}
}

header {
	height: 65vh;
	background-color: black;
	position: relative;
	padding: 0;
	overflow: hidden;
}

header > div > * {
	animation: none !important;
}

div.post {
	position: relative;
}

div.post > .postBg {
	width: 100%;
	flex-grow: 1;
	justify-content: flex-start;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;	
	z-index: -2;
	transition: all 0.3s cubic-bezier(.11,.86,.14,.97);
}

div.post > .postBg img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

header:hover > #headerControls:not(:hover) ~ #bg,
header:active > #headerControls:not(:hover) ~ #bg {
	transform: scale(1.05);
}

.postInfo {
	height: 100%;
	display: flex;
	justify-content: center;
	text-shadow: 0 5px 10px #00000020;
	flex-direction: column;
	align-items: center;
	width: 100%;
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 0 15%;
	box-sizing: border-box;
	background: linear-gradient(to bottom, #00000090, #00000040 50%), linear-gradient(to top, var(--background-color), transparent 80%);
}

.postInfo a:first-of-type {
	height: 100%;
	width: 100%;
	z-index: 3;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

header > div h3 {
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	color: var(--brand-color);
	margin-bottom: 0;
}

header h1 {
	font-size: 3.5rem;
	margin: 10px 0;
}

header h2 {
	font-size: 1.5rem;
}

#headerScroller {
	height: 100%;
	width: 100%;
	overflow-y: hidden;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	display: flex;
	scrollbar-width: none;
}

#headerScroller > * {
	scroll-snap-align: center;
	width: 100svw;
	min-width: 100svw;
	max-width: 100svw;
	animation: none !important;
}

#pagesIndicator {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	margin-bottom: 20px;
	top: 100px;
	left: 0;
	right: 0;
}

#pagesIndicator div {
	background-color: #FFFFFF20;
	border-radius: 50px;
	width: 30px;
	height: 10px;
	margin-right: 5px;
	cursor: pointer;
	transition: all 0.1s ease;
	z-index: 5;
	box-shadow: 0 3px 10px #00000030;
}

#pagesIndicator div:hover, #pagesIndicator div:active {
	background-color: #FFFFFF50;
}

#pagesIndicator div.active {
	width: 60px;
	background-color: var(--brand-color);
}


#headerControls {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	height: 100%;
	z-index: 5;
	pointer-events: none;
	gap: 80%;
}
  
#headerControls > * {
	margin: 0;
	border-radius: 0;
	outline: none !important;
	background: none !important;
	opacity: 0.5;
	cursor: pointer;
	transform: none !important;
	pointer-events: all;
	display: flex;
	align-items: center;
	animation: none !important;
}
  
#headerControls > *:hover,  #headerControls > *:active {
	opacity: 1;
}
  
#headerControls > *::after {
	display: none !important;
}
  
#headerControls > *:first-of-type {
	justify-content: end;
}
  
#headerControls > *:last-of-type {
	justify-content: start;
}

#headerControls > * > svg {
	transition: all 0.1s ease;
	text-shadow: 0 5px 10px #00000020;
}

#headerControls > *:first-of-type:active:not(:disabled) > svg {
	transform: translateX(-20px);
}

#headerControls > *:last-of-type:active:not(:disabled) > svg {
	transform: translateX(20px);
}