main::before {
	content: none;
}

.hero {
	position: relative;
	margin: 0 auto;
	padding: 4em 0;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	max-width: 40rem;
	line-height: 1;
}

.hero::before {
	content: ' ';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100vw;
	left: calc(50% - 50vw);
	z-index: -1;
	background: #a6228e;
	background: 
		url(/wp-content/themes/lupusresearch/assets/images/hero-202506-bg1.webp) no-repeat,
		linear-gradient(155.4deg, rgba(91, 48, 145, 1) 0%, 20.16%, rgba(166, 35, 142, 1) 36%, 64.16%, rgba(217, 48, 87, 1) 100%);
	background-size: 
		168vw auto, 
		auto;
	background-position: 
		calc(50% + 10vw), 
		center;
}

@media (max-width: 320px) {
	.hero::before {
		left: 0;
	}
}

.hero p {
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 1rem;
}

.hero .lead-in {
	display: block;
	font-size: clamp(1em, 4vw, 1.5em);
	font-weight: 100;
}

.hero .main-copy {
	display: block;
	font-size: clamp(2em, 8vw, 3em);
	text-wrap: balance;
}

.hero em {
	display: block;
	font-size: clamp(2em, 8vw, 3em);
	font-style: normal;
	font-weight: 100;
}

.hero a {
	text-decoration: none;
	color: #fff;
	font-size: clamp(1em, 3vw, 1.2em);
	font-weight: 600;
	border: solid 3px #fff;
	border-radius: 1.5em;
	padding: 0.5em 2em;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.18em;
	transition: 
		background-color 0.4s,
	 	color 0.4s;
	align-self: center;
}

.hero a::after {
	content: "\00a0>";
}

.hero a:hover,
.hero a:focus-visible {
	background-color: #fff;
	color: #5d2c87;
}

@media (min-width: 50rem) {
	.hero {
		height: clamp(14.5em, 27vw, 18em);
	}

	.hero::before {
		background: 
			url(/wp-content/themes/lupusresearch/assets/images/hero-202506-bg3.webp) no-repeat,
			url(/wp-content/themes/lupusresearch/assets/images/hero-202506-bg2.webp) no-repeat,
			url(/wp-content/themes/lupusresearch/assets/images/hero-202506-bg4.webp) no-repeat,
			url(/wp-content/themes/lupusresearch/assets/images/hero-202506-bg1.webp) no-repeat,
			linear-gradient(155.4deg, rgba(91, 48, 145, 1) 18%, 30%, rgba(166, 35, 142, 1) 40%, 75%, rgba(217, 48, 87, 1) 90%);
		background-image:
			image-set(
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg3.webp') 1x,
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg3-big.webp') 2x
			),
			image-set(
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg2.webp') 1x,
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg2-big.webp') 2x
			),
			image-set(
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg4.webp') 1x,
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg4-big.webp') 2x
			),
			image-set(
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg1.webp') 1x,
				url('/wp-content/themes/lupusresearch/assets/images/hero-202506-bg1-big.webp') 2x
			),
			linear-gradient(155.4deg, rgba(91, 48, 145, 1) 18%, 30%, rgba(166, 35, 142, 1) 40%, 75%, rgba(217, 48, 87, 1) 90%);
		background-size: 
			clamp(12em, 22vw, 16em) auto,
			clamp(13em, 24vw, 18em) auto,	
			clamp(19em, 36vw, 25em) auto,
			100em, 
			auto;
		background-position: 
			right calc(50% - clamp(23em, 44vw, 32em)) top calc(50% - clamp(3em, 5vw, 6em)),
			right calc(50% - clamp(17em, 32vw, 25em)) bottom calc(50% - clamp(8em, 15vw, 10em)),
			left calc(50% - clamp(21em, 40vw, 31em)) top calc(50% - 2em),
			calc(50% + 9em),
			center;
	}
}

.direction-bar {
	background-color: rgb(var(--color-magenta));
	color: rgb(var(--color-white));
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem;
	margin-bottom: 2rem;
}

.direction-bar a {
	color: rgb(var(--color-white));
	text-decoration: none;
	text-align: center;
	flex: 1 0 calc(100% - 2rem);
	padding: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	transition: all 0.2s;
	border-radius: 2em;
}

.direction-bar a:hover,
.direction-bar a:focus-visible {
	background-color: rgb(var(--color-white));
	color: rgb(var(--color-purple));
}

.direction-bar a span {
	display: block;
	text-wrap: balance;
	flex: 1 0 100%;
}

.direction-bar span.main {
	font-weight: 700;
}

.direction-bar span.desc {
	font-size: 0.75em;
}

@media (min-width: 20em) {
	.direction-bar a {
		flex: 1 0 calc(50% - 2rem);
	}	
}

@media (min-width: 50em) {
	.direction-bar a {
		flex: 1 0 calc(25% - 3rem);
	}	
}

.block-basic {
	margin: 0 auto 4rem;
}