.jc-centered-hero{
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: min(var(--jc-wide-width, 1280px), calc(100vw - (var(--jc-site-gutter, 80px) * 2)));
	min-height: 360px;
	overflow: visible;
	padding: 0;
	position: relative;
	width: 100%;
	z-index: 1;
}

.entry-content > .jc-centered-hero.alignwide{
	max-width: min(var(--jc-wide-width, 1280px), calc(100vw - (var(--jc-site-gutter, 80px) * 2)));
}

.jc-centered-hero.alignfull{
	max-width: none;
	padding-left: var(--jc-site-gutter, 80px);
	padding-right: var(--jc-site-gutter, 80px);
}

.jc-centered-hero::before{
	content: none;
}

.jc-centered-hero__background-picture{
	bottom: 0;
	left: calc((100vw - 100%) / -2);
	pointer-events: none;
	position: absolute;
	right: calc((100vw - 100%) / -2);
	top: 0;
	z-index: -1;
}

.jc-centered-hero__background{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	inset: 0;
	mix-blend-mode: screen;
	object-fit: cover;
	opacity: .88;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.jc-centered-hero__inner{
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 760px;
	position: relative;
	text-align: center;
	transform: translateY(-64px);
	width: 100%;
	z-index: 1;
}

.jc-centered-hero__kicker{
	color: #aeb3b1;
	font-family: "JetBrains Mono", Monaco, Consolas, "Andale Mono", monospace;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.jc-centered-hero__title{
	color: var(--font-light-color);
	font-size: clamp(42px, 4.2vw, 56px);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
	max-width: 760px;
}

.jc-centered-hero__title span{
	color: var(--secondary-light-color);
	display: block;
}

.jc-centered-hero__text{
	color: rgba(242, 240, 235, .74);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-top: 32px;
	max-width: 610px;
	text-shadow: 0 1px 18px rgba(0, 0, 0, .72);
	width: 100%;
}

.jc-centered-hero__text--left{
	text-align: left;
}

.jc-centered-hero__text--center{
	text-align: center;
}

.jc-centered-hero__text--right{
	text-align: right;
}

.jc-centered-hero__text p,
.jc-centered-hero__text ul,
.jc-centered-hero__text ol{
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0 0 14px;
}

.jc-centered-hero__text p:last-child,
.jc-centered-hero__text ul:last-child,
.jc-centered-hero__text ol:last-child{
	margin-bottom: 0;
}

.jc-centered-hero__text ul,
.jc-centered-hero__text ol{
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	padding-left: 0;
	text-align: left;
}

.jc-centered-hero__text ol{
	counter-reset: jc-centered-hero-list;
}

.jc-centered-hero__text li{
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding-left: 24px;
	position: relative;
}

.jc-centered-hero__text ul li::before{
	background: var(--secondary-light-color);
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: .5em;
	width: 8px;
}

.jc-centered-hero__text ol li{
	counter-increment: jc-centered-hero-list;
	padding-left: 34px;
}

.jc-centered-hero__text ol li::before{
	color: var(--secondary-light-color);
	content: counter(jc-centered-hero-list, decimal-leading-zero);
	font-family: "JetBrains Mono", Monaco, Consolas, "Andale Mono", monospace;
	font-size: .78em;
	left: 0;
	line-height: inherit;
	position: absolute;
	top: 0;
}

.jc-centered-hero__text a{
	color: var(--secondary-light-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.jc-centered-hero__actions{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 20px;
	justify-content: center;
	margin-top: 42px;
}

.jc-centered-hero__button{
	align-items: center;
	border-radius: 8px;
	color: var(--font-light-color);
	display: inline-flex;
	font-size: 16px;
	font-weight: 600;
	gap: 8px;
	justify-content: center;
	line-height: 24px;
	min-height: 50px;
	padding: 12px 24px;
	text-decoration: none;
	transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.jc-centered-hero__button:hover,
.jc-centered-hero__button:focus{
	color: #fff;
	transform: translateY(-1px);
}

.jc-centered-hero__button img{
	display: none;
}

.jc-centered-hero__button--primary::after{
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	height: 8px;
	margin-left: 4px;
	transform: rotate(45deg);
	width: 8px;
}

.jc-centered-hero__button--primary{
	background-image: linear-gradient(77deg, rgba(0, 139, 97, .05) 0%, rgba(0, 241, 169, .16) 100%);
	border: 1px solid rgba(0, 139, 97, .36);
	box-shadow: 0 0 12px rgba(0, 241, 169, .16);
}

.jc-centered-hero__button--primary:hover,
.jc-centered-hero__button--primary:focus{
	border-color: rgba(0, 241, 169, .72);
	box-shadow: 0 0 18px rgba(0, 241, 169, .22);
}

.jc-centered-hero__button--secondary{
	background: transparent;
	border: 1px solid rgba(242, 240, 235, .2);
}

.jc-centered-hero__button--secondary:hover,
.jc-centered-hero__button--secondary:focus{
	border-color: rgba(242, 240, 235, .42);
}

@media (max-width: 720px){
	.jc-centered-hero{
		min-height: 340px;
		max-width: calc(100vw - 40px);
		padding: 0;
	}

	.jc-centered-hero__inner{
		max-width: 100%;
		transform: translateY(-44px);
	}

	.jc-centered-hero__kicker{
		font-size: 13px;
		margin-bottom: 20px;
	}

	.jc-centered-hero__title{
		font-size: 32px;
		line-height: 36px;
	}

	.jc-centered-hero__text{
		font-size: 14px;
		line-height: 1.45;
		margin-top: 24px;
	}

	.jc-centered-hero__actions{
		align-items: stretch;
		flex-direction: column;
		margin-top: 34px;
		width: 100%;
	}
}
