.landing-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 1;
	background-color: var(--color-base);
	z-index: 11;
	transition: opacity 1000ms;
	cursor: pointer;
}

.no-animation .landing-bg {
	display: none;
}

.landing-bg.hide {
	opacity: 0;
	pointer-events: none;
} 

.landing p {
	margin: 0 auto !important;
}

.landing { 
	position: relative;
	backface-visibility: hidden;
	color: black;
	margin-top: 0;
	display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 75vh;
	transition: min-height 1000ms;
	z-index: 12;
	cursor: pointer;
}

.no-animation .landing {
	min-height: 0;
	z-index: 3;
	cursor: auto;
}

.landing u {
	color: white;
	text-decoration: none;
	transition: color 1000ms;
}

.no-animation .landing u {
	color: black;
}

.landing.hide {
	cursor: auto;
	min-height: 0;
}

.landing.shiftZ {
	z-index: 3;
}

.landing.hide u {
	color: black;
}

.block-type-homepage-heading h1 {
	margin: 3rem 0;
}

.block-type-slideshow {
  margin: 0 2rem;
}

.block-type-slideshow .image-component {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.slideshow-wrapper.diptych {
	display: flex;
	gap: 1.25rem;
} 

@media only screen and (max-width: 768px) {

	.landing-bg {
		pointer-events: none;
		opacity: 0;
	}

	.landing u {
		color: black;
	}

	.landing,
	.landing.hide {
		height: auto;
		min-height: 0;
	}

	.landing .grid {
		column-gap: 0;
		margin: 2rem 0;
	} 

}