.sp-site-header {
	border-bottom: 1px solid var(--sp-component-header-border);
	color: var(--sp-component-header-text);
	background: var(--sp-component-header-bg);
}

.sp-site-header__bar {
	display: grid;
	gap: 1rem;
	min-height: 4rem;
	padding: 0;
}

.sp-site-header__brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.sp-site-header__brand .custom-logo {
	width: auto;
	height: 3.5rem;
	max-width: none;
}

.sp-site-header__brand .sp-site-brand-link {
	color: var(--sp-color-text-strong);
	font-family: var(--sp-type-family-heading);
	font-size: var(--sp-type-size-brand);
	text-decoration: none;
}

.sp-site-header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	min-width: 0;
	position: relative;
}

.sp-site-header__nav > .sp-primary-navigation {
	flex: 0 1 auto;
	min-width: 0;
	order: 1;
}

.sp-site-header__nav > .wp-block-buttons,
.sp-site-header__nav > .sp-search-toggle,
.sp-site-header__nav > *:not(.sp-primary-navigation) {
	flex-shrink: 0;
}

.sp-site-header__nav > .wp-block-buttons {
	order: 2;
	margin-left: 0;
}

.sp-site-header__nav > .sp-search-toggle {
	order: 3;
}

.sp-site-header__nav .wp-block-button,
.sp-site-header__nav .wp-block-button__link {
	flex-shrink: 0;
}

.sp-site-header__nav .wp-block-button__link,
.sp-search-toggle {
	white-space: nowrap;
}

.sp-site-header__nav .wp-block-button__link {
	padding: 0.5rem 0.75rem;
	border: 0;
	border-radius: 0.375rem;
	background: var(--sp-component-header-cta-bg);
	color: var(--sp-component-header-cta-text);
	font-size: 1rem;
	font-weight: 600;
	line-height: 0.875rem;
	box-shadow: none;
	transition: opacity 180ms ease, border-radius 180ms ease;
}

.sp-site-header__nav .wp-block-button__link:hover,
.sp-site-header__nav .wp-block-button__link:focus-visible {
	transform: none;
	opacity: 0.8;
	border-radius: 0.5rem;
	color: var(--sp-component-header-cta-text);
	outline: none;
}

.sp-search-toggle {
	min-height: 0;
	padding: 0;
	gap: 0;
	background: transparent;
	border: 0;
	border-radius: var(--sp-layout-radius-sm);
	color: var(--sp-color-text-strong);
}

.sp-search-toggle:hover,
.sp-search-toggle:focus-visible {
	background: var(--sp-color-layer-hover);
	color: var(--sp-color-text-strong);
}

.sp-search-toggle__icon {
	width: 1.25rem;
	height: 1.25rem;
}

.sp-search-toggle__icon svg {
	width: 100%;
	height: 100%;
}

.sp-search-toggle > span:not(.sp-search-toggle__icon) {
	display: none;
}

.sp-mega-menu {
	position: relative;
}

.sp-mega-menu__desktop {
	display: block;
}

.sp-mega-menu__top-level {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	margin: 0;
	padding: 0;
}

.sp-mega-menu__item {
	position: relative;
}

.sp-mega-menu__trigger,
.sp-mega-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sp-color-text-strong);
	font: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 180ms ease;
}

.sp-mega-menu__trigger:hover,
.sp-mega-menu__trigger:focus-visible,
.sp-mega-menu__link:hover,
.sp-mega-menu__link:focus-visible,
.sp-mega-menu__item.is-open > .sp-mega-menu__trigger {
	color: var(--sp-color-text-strong);
	opacity: 0.8;
	outline: none;
}

.sp-mega-menu__trigger svg,
.sp-mega-menu__group-link svg,
.sp-mega-menu__mobile-link svg,
.sp-mega-menu__card-title svg,
.sp-mega-menu__mobile-toggle svg,
.sp-mega-menu__mobile-back svg,
.sp-mega-menu__mobile-close svg {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
}

.sp-mega-menu__item.is-open > .sp-mega-menu__trigger svg {
	transform: rotate(180deg);
}

.sp-mega-menu__panel {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	width: min(48rem, calc(100vw - 2rem));
	z-index: 30;
}

.sp-mega-menu__panel::before {
	content: "";
	position: absolute;
	top: -0.375rem;
	left: var(--sp-panel-arrow-offset, 50%);
	width: 0.75rem;
	height: 0.75rem;
	background: var(--sp-component-mega-menu-panel-bg);
	border-radius: 2px 0 0 0;
	box-shadow: var(--sp-component-mega-menu-panel-arrow-shadow);
	transform: translateX(-50%) rotate(45deg);
}

.sp-mega-menu__panel-inner {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2.5rem;
	border: 0;
	border-radius: 0.75rem;
	background: var(--sp-component-mega-menu-panel-bg);
	color: var(--sp-component-mega-menu-panel-text);
	box-shadow: var(--sp-component-mega-menu-panel-shadow);
}

.sp-mega-menu__panel-groups {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.sp-mega-menu__panel-parent {
	font-family: var(--sp-type-family-sans);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--sp-component-mega-menu-panel-text);
}

.sp-mega-menu__group {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-content: stretch;
}

.sp-mega-menu__group-heading {
	margin: 0;
	font-family: var(--sp-type-family-sans);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--sp-component-mega-menu-panel-text);
}

.sp-mega-menu__group-link,
.sp-mega-menu__group-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--sp-component-mega-menu-panel-text);
	text-decoration: none;
}

.sp-mega-menu__group-link::after,
.sp-mega-menu__group-title::after {
	content: "";
	flex: 1;
	order: 3;
	border-bottom: 1px dashed var(--sp-component-mega-menu-panel-divider);
}

.sp-mega-menu__group-link svg {
	order: 2;
	opacity: 0;
	transform: translateX(-10px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.sp-mega-menu__group-link:hover svg,
.sp-mega-menu__group-link:focus-visible svg {
	opacity: 1;
	transform: translateX(0);
}

.sp-mega-menu__group-link:focus-visible {
	outline: none;
}

.sp-mega-menu__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.sp-mega-menu__card {
	display: flex;
	flex: 0 0 17.5rem;
	gap: 0.625rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sp-component-mega-menu-panel-text);
	text-decoration: none;
	transition: none;
}

.sp-mega-menu__card:hover,
.sp-mega-menu__card:focus-visible {
	background: transparent;
	transform: none;
	outline: none;
}

.sp-mega-menu__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0.5rem;
	border-radius: 0.375rem;
	background: var(--sp-component-mega-menu-icon-bg);
	overflow: hidden;
}

.sp-mega-menu__card-icon-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-mega-menu__card-content {
	display: grid;
	gap: 0.25rem;
}

.sp-mega-menu__card-title {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--sp-component-mega-menu-panel-text);
}

.sp-mega-menu__card-title svg {
	opacity: 0;
	transform: translateX(-10px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.sp-mega-menu__card:hover .sp-mega-menu__card-title svg,
.sp-mega-menu__card:focus-visible .sp-mega-menu__card-title svg {
	opacity: 1;
	transform: translateX(0);
}

.sp-mega-menu__card-description {
	color: var(--sp-component-mega-menu-panel-muted);
	font-size: 0.875rem;
	line-height: 1.35;
}

.sp-mega-menu__card:hover .sp-mega-menu__card-description,
.sp-mega-menu__card:focus-visible .sp-mega-menu__card-description {
	color: var(--sp-component-mega-menu-panel-text);
}

.sp-mega-menu__mobile {
	display: none;
}

.sp-mega-menu__mobile-toggle,
.sp-mega-menu__mobile-back,
.sp-mega-menu__mobile-close {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--sp-color-text-strong);
	font: inherit;
	font-weight: 500;
	cursor: pointer;
}

.sp-mega-menu__mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.sp-mega-menu__mobile-drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.sp-mega-menu__mobile-scrim {
	position: absolute;
	inset: 0;
	background: transparent;
	opacity: 0;
	transition: opacity 220ms ease;
}

.sp-mega-menu__mobile-drawer.is-open .sp-mega-menu__mobile-scrim {
	opacity: 1;
}

.sp-mega-menu__mobile-panel {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	width: 100%;
	padding: 0;
	background: var(--sp-color-layer-2);
	color: var(--sp-color-text-strong);
	overflow: hidden;
	transform: translateY(0.75rem);
	transition: transform 220ms ease;
}

.sp-mega-menu__mobile-drawer.is-open .sp-mega-menu__mobile-panel {
	transform: translateY(0);
}

.sp-mega-menu__mobile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 4rem;
	padding: 0 1rem 0 0.5rem;
	border-bottom: 1px solid var(--sp-color-border-subtle);
}

.sp-mega-menu__mobile-back {
	font-size: 1rem;
}

.sp-mega-menu__mobile-header .sp-mega-menu__mobile-back[hidden] {
	display: none;
}

.sp-mega-menu__mobile-back svg {
	width: 1.25rem;
	height: 1.25rem;
}

.sp-mega-menu__mobile-close {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sp-mega-menu__mobile-close svg {
	width: 1.5rem;
	height: 1.5rem;
}

.sp-mega-menu__mobile-brand {
	display: flex;
	flex: 1;
	justify-content: flex-start;
	opacity: 1;
	visibility: visible;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.sp-mega-menu__mobile-brand .custom-logo-link,
.sp-mega-menu__mobile-brand-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
}

.sp-mega-menu__mobile-brand img {
	height: 3.5rem;
	width: auto;
}

.sp-mega-menu__mobile-brand-fallback {
	color: var(--sp-color-text-strong);
	font-family: var(--wp--preset--font-family--heading);
	font-size: 1rem;
	text-decoration: none;
}

.sp-mega-menu__mobile-body {
	position: relative;
	overflow: hidden;
	padding: 0 1rem 1.5rem;
}

.sp-mega-menu__mobile-level {
	position: absolute;
	inset: 0;
	display: grid;
	align-content: start;
	gap: 1rem;
	padding: 0 0.75rem;
	overflow-y: auto;
	transform: translateX(2rem);
	opacity: 0;
	pointer-events: none;
	transition: transform 220ms ease, opacity 220ms ease;
}

.sp-mega-menu__mobile-level.is-active {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}

.sp-mega-menu__mobile-level.is-before {
	transform: translateX(-1.5rem);
	opacity: 0;
	pointer-events: none;
}

.sp-mega-menu__mobile-level.is-after {
	transform: translateX(2rem);
	opacity: 0;
	pointer-events: none;
}

.sp-mega-menu__mobile-level--branch {
	padding-top: 1.5rem;
}

.sp-mega-menu__mobile-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	padding: 1.1rem 0;
	border: 0;
	border-bottom: 1px dashed var(--sp-color-border-subtle);
	border-radius: 0;
	background: transparent;
	color: var(--sp-color-text-strong);
	font: inherit;
	font-weight: 500;
	font-size: 1rem;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.sp-mega-menu__mobile-link:hover {
	opacity: 0.8;
}

.sp-mega-menu__mobile-link.is-detailed {
	align-items: flex-start;
	padding: 0.75rem;
	border: 0;
	border-radius: 0.5rem;
	background: transparent;
	transition: background-color 0.2s ease;
}

.sp-mega-menu__mobile-link.is-detailed:hover,
.sp-mega-menu__mobile-link.is-detailed:focus-visible,
.sp-mega-menu__mobile-link.is-detailed:active {
	background: var(--sp-color-layer-hover);
	outline: none;
}

.sp-mega-menu__mobile-link-copy {
	display: grid;
	gap: 0.28rem;
	flex: 1;
	min-width: 0;
}

.sp-mega-menu__mobile-link-copy strong {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
}

.sp-mega-menu__mobile-link-copy span {
	color: var(--sp-color-text-muted);
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.35;
}

.sp-mega-menu__mobile-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-top: 0.15rem;
	border-radius: 0.5rem;
	background: var(--sp-component-mega-menu-icon-bg);
	overflow: hidden;
}

.sp-mega-menu__mobile-icon-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-mega-menu__mobile-list {
	list-style: none;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
}

.sp-mega-menu__mobile-item:last-child .sp-mega-menu__mobile-link {
	border-bottom: 0;
}

.sp-mega-menu__mobile-section-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.sp-mega-menu__mobile-section {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--sp-color-border-subtle);
}

.sp-mega-menu__mobile-section:first-child {
	padding-top: 0;
}

.sp-mega-menu__mobile-section:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.sp-mega-menu__mobile-section-header {
	margin-bottom: 1rem;
}

.sp-mega-menu__mobile-section-title,
.sp-mega-menu__mobile-section-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--sp-color-text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.03125rem;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.sp-mega-menu__mobile-sublist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
}

.sp-mega-menu__mobile-subitem {
	padding: 0;
}

.sp-mega-menu__mobile-footer {
	padding-top: 1.5rem;
	margin-top: auto;
	border-top: 1px solid var(--sp-color-border-subtle);
}

.sp-mega-menu__mobile-footer .sp-mega-menu__mobile-login {
	width: 100%;
}

.sp-mega-menu__mobile-footer .wp-block-button__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	background: var(--sp-component-header-cta-bg);
	color: var(--sp-component-header-cta-text);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 180ms ease, opacity 180ms ease;
}

.sp-mega-menu__mobile-footer .wp-block-button__link:hover,
.sp-mega-menu__mobile-footer .wp-block-button__link:focus-visible {
	transform: translateY(-2px);
	opacity: 0.9;
	color: var(--sp-component-header-cta-text);
	outline: none;
}

.sp-mega-menu__mobile-drawer.is-sublevel .sp-mega-menu__mobile-brand {
	opacity: 0;
	visibility: hidden;
}

.sp-site-header__utility {
	border-top: 1px solid var(--sp-component-header-border);
	border-bottom: 1px solid var(--sp-component-header-border);
	color: var(--sp-component-header-text);
	background: var(--sp-component-header-utility-bg);
}

.sp-site-header__utility-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.25rem 0;
}

.sp-site-header__utility-copy {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--sp-color-text-strong);
}

.sp-site-header:has(.sp-site-header__breadcrumbs) {
	border-bottom: 0;
}

.sp-site-header__breadcrumbs {
	background: var(--sp-color-layer-canvas);
}

.sp-site-header__breadcrumbs-inner {
	padding: 0.45rem 0;
}

.sp-breadcrumbs {
	color: var(--sp-color-text-muted);
	font-size: var(--sp-type-size-meta);
	line-height: 1.4;
}

.sp-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sp-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.sp-breadcrumbs__separator {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	margin: 0 0.45rem;
	color: var(--sp-color-text-subtle);
}

.sp-breadcrumbs__separator .sp-icon,
.sp-breadcrumbs__separator svg {
	width: 0.85rem;
	height: 0.85rem;
	stroke-width: 2;
}

.sp-breadcrumbs__link {
	color: var(--sp-color-text-muted);
	font-weight: 400;
	text-decoration: none;
}

.sp-breadcrumbs__link:hover,
.sp-breadcrumbs__link:focus-visible {
	color: var(--sp-color-link-hover);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	outline: none;
}

.sp-breadcrumbs__current {
	color: var(--sp-color-text-muted);
}

@media (max-width: 640px) {
	.sp-site-header__breadcrumbs-inner {
		padding-block: 0.35rem;
	}

	.sp-breadcrumbs {
		font-size: 0.95rem;
		overflow: hidden;
	}

	.sp-breadcrumbs__list {
		flex-wrap: nowrap;
		overflow: hidden;
	}

	.sp-breadcrumbs__item {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.sp-breadcrumbs__item:last-child {
		flex: 1 1 auto;
		min-width: 0;
	}

	.sp-breadcrumbs__link {
		display: block;
		white-space: nowrap;
	}

	.sp-breadcrumbs__current {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

[data-theme="dark"] .sp-site-header__brand .custom-logo,
[data-theme="dark"] .sp-mega-menu__mobile-brand img {
	filter: brightness(0) invert(1);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) .sp-site-header__brand .custom-logo,
	:root:not([data-theme]) .sp-mega-menu__mobile-brand img,
	[data-theme="southernpartners-default"] .sp-site-header__brand .custom-logo,
	[data-theme="southernpartners-default"] .sp-mega-menu__mobile-brand img {
		filter: brightness(0) invert(1);
	}
}

.sp-site-footer {
	background: var(--sp-component-footer-bg);
	color: var(--sp-component-footer-text);
	overflow: clip;
}

.sp-site-footer__content {
	display: grid;
	gap: var(--sp-space-3);
	padding: var(--sp-space-6) 0 var(--sp-space-3);
}

.sp-site-footer__main {
	display: grid;
	gap: var(--sp-space-4);
	align-items: start;
}

.sp-site-footer__summary {
	display: grid;
	gap: var(--sp-space-2);
	max-width: 34rem;
}

.sp-site-footer__heading {
	margin: 0;
	font-size: var(--sp-type-size-label);
	font-weight: 700;
	letter-spacing: var(--sp-type-letter-spacing-label);
	text-transform: uppercase;
}

.sp-site-footer__heading {
	color: var(--sp-component-footer-subtle);
}

.sp-site-footer__brand {
	width: fit-content;
	max-width: 100%;
}

.sp-site-footer__brand .custom-logo,
.sp-site-footer__brand .wp-block-site-logo img {
	width: auto;
	height: 2.75rem;
	max-width: min(100%, 16rem);
	filter: brightness(0) invert(1);
}

.sp-site-footer__copy {
	margin: 0;
	max-width: 36rem;
	color: var(--sp-component-footer-muted);
}

.sp-site-footer__link-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	gap: var(--sp-space-3);
}

.sp-site-footer__column {
	display: grid;
	gap: 0.85rem;
	align-content: start;
}

.sp-site-footer__list,
.sp-footer-menu__list {
	list-style: none;
	display: grid;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
}

.sp-footer-menu__list {
	gap: 0.6rem;
}

.sp-site-footer__link,
.sp-footer-menu__link {
	color: var(--sp-component-footer-link);
	font-size: var(--sp-type-size-meta);
	font-weight: 400;
	text-decoration: none;
	line-height: var(--sp-type-line-height-copy);
}

.sp-site-footer__link--emphasis {
	font-weight: 500;
}

.sp-site-footer__link:hover,
.sp-site-footer__link:focus-visible,
.sp-footer-menu__link:hover,
.sp-footer-menu__link:focus-visible {
	color: var(--sp-component-footer-link-hover);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	outline: none;
}

.sp-site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-space-1) var(--sp-space-3);
	padding-top: var(--sp-space-3);
	border-top: 1px solid var(--sp-component-footer-border);
	color: var(--sp-component-footer-subtle);
	font-size: var(--sp-type-size-meta);
}

.sp-site-footer__bottom p,
.sp-site-footer__legal {
	margin: 0;
}

.sp-site-footer__legal-link {
	color: inherit;
	font-size: inherit;
}

@media (min-width: 760px) {
	.sp-site-footer__main {
		grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.6fr);
	}
}

.sp-home-hero {
	padding: var(--sp-space-6) 0 var(--sp-space-5);
	border-bottom: 1px solid var(--sp-color-border-subtle);
}

.sp-home-front {
	--sp-home-hero-bg: color-mix(in srgb, var(--sp-color-layer-brand-start) 72%, var(--sp-color-layer-brand-end));
	--sp-home-hero-panel: rgb(255 255 255 / 0.13);
	--sp-home-hero-border: rgb(255 255 255 / 0.2);
	--sp-home-hero-shadow: 0 2rem 4rem rgb(0 0 0 / 0.22);
	--sp-home-section-padding-block: clamp(var(--sp-space-5), 6vw, calc(var(--sp-space-6) + var(--sp-space-3)));
	gap: 0;
	padding-block: 0;
}

.sp-home-banner {
	border-block: 1px solid color-mix(in srgb, var(--sp-ref-color-primary-300) 70%, var(--sp-ref-color-white));
	background: var(--sp-ref-color-primary-300);
	color: var(--sp-ref-color-primary-900);
}

.wp-site-blocks .sp-home-banner__inner.alignwide {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.85rem;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: none;
	padding: 0.85rem max(1rem, calc(var(--sp-layout-content-gutter) / 2));
	text-align: center;
}

.sp-home-banner p {
	margin: 0;
	font-size: clamp(0.95rem, 0.9rem + 0.16vw, 1.05rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
}

.sp-home-banner__link {
	color: inherit;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-thickness: 0.12em;
}

.sp-home-banner__link:hover,
.sp-home-banner__link:focus-visible {
	color: color-mix(in srgb, currentColor 82%, transparent);
}

.sp-home-front-hero {
	position: relative;
	overflow: clip;
	padding: clamp(3rem, 6vw, 5rem) 0;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 0.14), transparent 42%),
		var(--sp-home-hero-bg);
	color: var(--sp-color-text-inverse);
}

.sp-home-front-hero__shader {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0.86;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.sp-home-front-hero__shader {
		display: none;
	}
}

.wp-site-blocks .sp-home-front-hero__inner.alignwide {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(calc(100% - var(--sp-layout-content-gutter)), var(--sp-layout-hero-width));
	margin-inline: auto;
	gap: clamp(var(--sp-space-4), 4vw, var(--sp-space-6));
	align-items: center;
}

.sp-home-front-hero__copy {
	display: grid;
	gap: clamp(var(--sp-space-3), 3vw, var(--sp-space-4));
	min-width: 0;
	max-width: 39rem;
}

.sp-home-front-hero h1,
.sp-home-front-hero p {
	margin: 0;
}

.sp-home-front-hero h1 {
	color: var(--sp-color-text-inverse);
	font-size: clamp(3rem, 6.2vw, 5.6rem);
	line-height: 0.98;
	text-wrap: balance;
}

.sp-home-front-hero__copy > p {
	max-width: 36rem;
	color: var(--sp-color-text-inverse-muted);
	font-size: clamp(1.05rem, 0.98rem + 0.34vw, 1.25rem);
	line-height: 1.45;
	text-wrap: balance;
}

.sp-home-front-hero .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
}

.sp-home-front-hero .wp-block-button,
.sp-home-front-hero .wp-block-button .wp-block-button__link {
	min-width: 0;
}

.sp-home-front-hero .wp-block-button .wp-block-button__link {
	border-color: var(--sp-ref-color-white);
	background: var(--sp-ref-color-white);
	color: var(--sp-ref-color-primary-900);
	box-shadow: 0 0.75rem 1.75rem rgb(0 0 0 / 0.18);
}

.sp-home-front-hero .wp-block-button .wp-block-button__link:hover,
.sp-home-front-hero .wp-block-button .wp-block-button__link:focus-visible {
	border-color: var(--sp-ref-color-primary-50);
	background: var(--sp-ref-color-primary-50);
	color: var(--sp-ref-color-primary-900);
}

.sp-home-front-hero .wp-block-button.is-style-sp-ghost .wp-block-button__link {
	border-color: rgb(255 255 255 / 0.72);
	background: rgb(255 255 255 / 0.12);
	color: var(--sp-color-text-inverse);
	box-shadow: none;
}

.sp-home-front-hero .wp-block-button.is-style-sp-ghost .wp-block-button__link:hover,
.sp-home-front-hero .wp-block-button.is-style-sp-ghost .wp-block-button__link:focus-visible {
	border-color: var(--sp-ref-color-white);
	background: var(--sp-ref-color-white);
	color: var(--sp-ref-color-primary-900);
}

.sp-home-front-hero .wp-block-button .wp-block-button__link:active,
.sp-home-front-hero .wp-block-button.is-style-sp-ghost .wp-block-button__link:active {
	border-color: var(--sp-ref-color-primary-300);
	background: var(--sp-ref-color-primary-300);
	color: var(--sp-ref-color-primary-900);
}

.sp-home-front-hero__media {
	min-width: 0;
}

.sp-home-front-hero__slider {
	width: 100%;
	max-width: 100%;
	padding: 0;
	border: 0;
	border-radius: var(--sp-layout-radius-xl);
	background: transparent;
	box-shadow: 0 1.5rem 3rem rgb(0 0 0 / 0.18);
	backdrop-filter: none;
}

.sp-home-front-hero__slider.wp-block-southernpartners-theme-slider.sp-slider.splide.is-initialized .sp-slider__track,
.sp-home-front-hero__placeholder {
	aspect-ratio: 16 / 10;
	border-radius: var(--sp-layout-radius-xl);
}

.sp-home-front-hero__slider.wp-block-southernpartners-theme-slider.sp-slider.splide.is-initialized .sp-slider__image {
	height: 100%;
}

.sp-home-front-hero__placeholder {
	display: grid;
	place-items: center;
	padding: var(--sp-space-4);
	border: 1px dashed var(--sp-home-hero-border);
	background: var(--sp-home-hero-panel);
	color: var(--sp-color-text-inverse-muted);
	text-align: center;
}

.sp-home-section-heading {
	display: grid;
	gap: var(--sp-space-1);
	max-width: 52rem;
}

.sp-home-section-heading > * {
	margin: 0;
}

.sp-home-section-heading h2 {
	font-size: var(--sp-type-size-heading-1);
}

.sp-home-pillars,
.sp-home-videos {
	margin-block-start: 0;
	padding-block: var(--sp-home-section-padding-block);
}

.sp-home-pillars .sp-home-section-heading {
	width: min(calc(100% - var(--sp-layout-content-gutter)), var(--sp-layout-wide-width));
	max-width: none;
	margin-inline: auto;
	justify-items: center;
	text-align: center;
}

.sp-home-pillars .sp-home-section-heading h2 {
	max-width: 21ch;
	font-family: var(--sp-type-family-display);
	font-size: var(--sp-type-size-display);
	line-height: var(--sp-type-line-height-tight);
	text-wrap: balance;
}

.sp-home-pillars__grid {
	display: grid;
	gap: var(--sp-space-3);
	margin-block-start: var(--sp-space-4);
}

.sp-home-pillar-card {
	display: grid;
	gap: var(--sp-space-2);
	align-content: start;
	min-height: 100%;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-2);
	color: var(--sp-color-text-primary);
	text-decoration: none;
	transition:
		background-color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		border-color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		box-shadow var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-pillar-card:hover,
.sp-home-pillar-card:focus-visible {
	border-color: var(--sp-color-border-selected);
	background: var(--sp-color-layer-selected);
	color: var(--sp-color-text-primary);
	text-decoration: none;
	transform: translateY(-0.18rem);
	box-shadow: 0 1rem 2rem var(--sp-ref-color-ink-alpha-10);
}

.sp-home-pillar-card__icon {
	display: inline-grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-selected);
	color: var(--sp-color-text-accent);
}

.sp-home-pillar-card__title {
	color: var(--sp-color-text-strong);
	font-family: var(--sp-type-family-heading);
	font-size: var(--sp-type-size-heading-3);
	line-height: var(--sp-type-line-height-tight);
}

.sp-home-pillar-card__summary {
	color: var(--sp-color-text-muted);
	line-height: 1.55;
}

.sp-home-pillar-card__cta {
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	margin-block-start: auto;
	color: var(--sp-color-link-default);
	font-weight: 700;
}

.sp-home-videos .sp-home-section-heading {
	width: min(calc(100% - var(--sp-layout-content-gutter)), var(--sp-layout-wide-width));
	max-width: none;
	margin-inline: auto;
	justify-items: center;
	text-align: center;
}

.sp-home-videos .sp-home-section-heading h2 {
	max-width: 21ch;
	font-family: var(--sp-type-family-display);
	font-size: var(--sp-type-size-display);
	line-height: var(--sp-type-line-height-tight);
}

.sp-home-videos {
	overflow: hidden;
	background: var(--sp-color-layer-canvas);
}

.sp-home-stories-stage {
	position: relative;
	--sp-home-story-card-width: min(50rem, calc(100% - (var(--sp-space-5) * 2)));
	width: 100%;
	margin-block-start: var(--sp-space-5);
	padding-block-end: var(--sp-space-1);
	overflow: hidden;
}

.sp-home-stories-stage::before,
.sp-home-stories-stage::after {
	content: "";
	position: absolute;
	z-index: 4;
	top: 0;
	bottom: 0;
	width: max(2rem, 7vw);
	pointer-events: none;
}

.sp-home-stories-stage::before {
	left: 0;
	background: linear-gradient(to right, var(--sp-color-layer-canvas), transparent);
}

.sp-home-stories-stage::after {
	right: 0;
	background: linear-gradient(to left, var(--sp-color-layer-canvas), transparent);
}

.sp-home-stories-rail {
	display: flex;
	gap: var(--sp-space-3);
	width: 100%;
	overflow-x: auto;
	padding: var(--sp-space-2) max(var(--sp-space-3), calc((100% - var(--sp-home-story-card-width)) / 2)) var(--sp-space-2);
	scroll-padding-inline: max(var(--sp-space-3), calc((100% - var(--sp-home-story-card-width)) / 2));
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.sp-home-stories-rail::-webkit-scrollbar {
	display: none;
}

.sp-home-stories-rail:focus-visible {
	outline: none;
}

.sp-home-stories-rail:focus-visible .sp-home-story-card.is-active .sp-home-video-card__media {
	outline: 3px solid var(--sp-color-focus-ring);
	outline-offset: 4px;
}

.sp-home-story-card {
	display: grid;
	gap: var(--sp-space-2);
	align-content: start;
	flex: 0 0 auto;
	width: var(--sp-home-story-card-width);
	min-width: 0;
	scroll-snap-align: center;
	transition:
		opacity var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-videos.is-enhanced .sp-home-story-card {
	opacity: 0.4;
	transform: scale(0.9);
	transition:
		opacity var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-videos.is-enhanced .sp-home-story-card.is-visible {
	opacity: 0.4;
	transform: scale(0.9);
}

.sp-home-videos.is-enhanced .sp-home-story-card.is-active {
	opacity: 1;
	transform: scale(1);
}

.sp-home-video-card__media {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-thumbnail);
}

.sp-home-video-card__poster,
.sp-home-video-card__embed,
.sp-home-video-card__placeholder {
	position: absolute;
	inset: 0;
}

.sp-home-video-card__poster {
	z-index: 1;
	overflow: hidden;
	background: var(--sp-color-layer-thumbnail);
	transition:
		opacity var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-video-card__embed {
	z-index: 0;
	background: var(--sp-ref-color-gray-950);
}

.sp-home-video-card__media.is-playing .sp-home-video-card__poster {
	opacity: 0;
	pointer-events: none;
	transform: scale(1.02);
}

.sp-home-video-card__media.is-playing .sp-home-video-card__embed {
	z-index: 2;
}

.sp-home-video-card__media iframe,
.sp-home-video-card__media video,
.sp-home-video-card__poster img,
.sp-home-video-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.sp-home-video-card__media iframe,
.sp-home-video-card__media video {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.sp-home-video-card__media:has(> video) .sp-home-video-card__poster {
	display: none;
}

.sp-home-video-card__poster::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgb(0 0 0 / 0.24), transparent 42%),
		linear-gradient(0deg, rgb(0 0 0 / 0.32), transparent 45%);
	pointer-events: none;
}

.sp-home-story-card:not(.sp-home-story-card--featured):not(.is-active) .sp-home-video-card__poster::before {
	background:
		linear-gradient(180deg, rgb(0 0 0 / 0.16), transparent 42%),
		linear-gradient(0deg, rgb(0 0 0 / 0.18), transparent 45%),
		rgb(255 255 255 / 0.44);
}

.sp-home-video-card__placeholder {
	display: grid;
	place-items: center;
	gap: 0.5rem;
	padding: var(--sp-space-3);
	color: var(--sp-color-text-muted);
	text-align: center;
}

.sp-home-video-card__play {
	position: absolute;
	z-index: 3;
	--sp-home-video-play-icon-size: 1.2rem;
	--sp-home-video-play-inset: var(--sp-space-3);
	--sp-home-video-play-size: 3rem;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sp-color-action-primary-text);
	cursor: pointer;
	box-shadow: none;
	transition:
		outline-color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-video-card__play::before {
	content: "";
	position: absolute;
	inset: auto auto var(--sp-home-video-play-inset) var(--sp-home-video-play-inset);
	width: var(--sp-home-video-play-size);
	height: var(--sp-home-video-play-size);
	border-radius: 999px;
	background: var(--sp-color-action-primary-bg);
	box-shadow: 0 0.4rem 1rem rgb(0 0 0 / 0.2);
	transition:
		background-color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		box-shadow var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-video-card__play .sp-icon {
	position: absolute;
	inset: auto auto calc(var(--sp-home-video-play-inset) + ((var(--sp-home-video-play-size) - var(--sp-home-video-play-icon-size)) / 2)) calc(var(--sp-home-video-play-inset) + ((var(--sp-home-video-play-size) - var(--sp-home-video-play-icon-size)) / 2));
	width: var(--sp-home-video-play-icon-size);
	height: var(--sp-home-video-play-icon-size);
	fill: currentColor;
	stroke-width: 2.25;
	transition: transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-video-card__play:hover,
.sp-home-video-card__play:focus-visible,
.sp-home-video-card__media:hover .sp-home-video-card__play,
.sp-home-video-card__media:focus-within .sp-home-video-card__play {
	background: transparent;
	box-shadow: none;
}

.sp-home-video-card__play:hover::before,
.sp-home-video-card__play:focus-visible::before,
.sp-home-video-card__media:hover .sp-home-video-card__play::before,
.sp-home-video-card__media:focus-within .sp-home-video-card__play::before {
	background: var(--sp-color-action-primary-hover-bg);
	transform: translateY(-0.18rem) scale(1.04);
	box-shadow: 0 0.7rem 1.4rem rgb(0 0 0 / 0.22);
}

.sp-home-video-card__play:hover .sp-icon,
.sp-home-video-card__play:focus-visible .sp-icon,
.sp-home-video-card__media:hover .sp-home-video-card__play .sp-icon,
.sp-home-video-card__media:focus-within .sp-home-video-card__play .sp-icon {
	transform: translateY(-0.18rem) scale(1.04);
}

.sp-home-video-card__play:focus-visible {
	outline: 3px solid var(--sp-color-focus-ring);
	outline-offset: -6px;
}

.sp-home-video-card__media:hover .sp-home-video-card__poster img,
.sp-home-video-card__media:focus-within .sp-home-video-card__poster img {
	transform: scale(1.035);
}

.sp-home-video-card__poster img {
	transition: transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-video-card__noscript-link {
	position: absolute;
	inset: auto var(--sp-space-3) var(--sp-space-3) auto;
	z-index: 3;
	color: var(--sp-color-text-inverse);
}

.sp-home-story-card__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--sp-space-2);
	align-items: start;
	opacity: 1;
}

.sp-home-story-card__body > *,
.sp-home-story-card__copy > * {
	margin: 0;
}

.sp-home-story-card__copy {
	display: grid;
	gap: var(--sp-space-2);
}

.sp-home-story-card__quote {
	color: var(--sp-color-text-strong);
	font-size: var(--sp-type-size-body-lg);
	font-weight: 600;
	line-height: 1.35;
}

.sp-home-story-card:not(.sp-home-story-card--featured) .sp-home-story-card__quote {
	color: var(--sp-color-text-muted);
}

.sp-home-story-card__attribution {
	color: var(--sp-color-text-muted);
	font-size: var(--sp-type-size-meta);
}

.sp-home-story-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.75rem;
	padding: 0.7rem 1rem;
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-color-action-primary-bg);
	color: var(--sp-color-action-primary-text);
	font-weight: 700;
	text-decoration: none;
	transition:
		background-color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-home-story-card__button:hover,
.sp-home-story-card__button:focus-visible {
	background: var(--sp-color-action-primary-hover-bg);
	color: var(--sp-color-action-primary-text);
	text-decoration: none;
}

.sp-home-closing-cta {
	display: grid;
	gap: var(--sp-space-3);
	align-items: center;
	margin-block: var(--sp-home-section-padding-block);
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: var(--sp-layout-radius-lg);
	background: var(--sp-color-layer-selected);
}

.sp-home-closing-cta > div:first-child {
	display: grid;
	gap: var(--sp-space-1);
	max-width: 48rem;
}

.sp-home-closing-cta h2,
.sp-home-closing-cta p {
	margin: 0;
}

.sp-home-closing-cta h2 {
	font-size: var(--sp-type-size-heading-1);
}

.sp-home-closing-cta > .wp-block-buttons {
	margin: 0;
}

.sp-hero-pattern {
	padding: 0;
	background: transparent;
	color: inherit;
}

.sp-site-main > .sp-hero-pattern {
	padding-block: var(--wp--preset--spacing--16, var(--sp-layout-page-padding-block));
}

.sp-site-main > .alignfull.is-style-default,
.sp-site-main > :where(.alignfull, .alignwide):has(> .sp-hero-pattern) {
	padding-block: var(--wp--preset--spacing--16, var(--sp-layout-page-padding-block));
}

.sp-hero-pattern__inner {
	display: grid;
	gap: var(--sp-space-4);
	align-items: center;
}

.sp-hero-pattern__content {
	display: grid;
	gap: var(--sp-space-2);
	max-width: 48rem;
}

.sp-hero-pattern__content > * {
	margin-block: 0;
}

.sp-hero-pattern__content .wp-block-buttons {
	margin-top: var(--sp-space-1);
}

.sp-hero-pattern__media {
	display: grid;
	align-content: center;
	min-width: 0;
}

.sp-hero-pattern__image,
.sp-hero-pattern__media .wp-block-image,
.sp-hero-pattern__media .wp-block-southernpartners-theme-slider {
	width: 100%;
	margin: 0;
}

.sp-hero-pattern__media .wp-block-image img,
.sp-hero-pattern__media .sp-slider__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--sp-layout-radius-lg);
	background: var(--sp-color-layer-1);
}

.sp-hero-pattern__media .wp-block-southernpartners-theme-slider.sp-slider.splide.is-initialized .sp-slider__track {
	aspect-ratio: 4 / 3;
}

.sp-hero-pattern--text .sp-hero-pattern__inner {
	justify-items: start;
}

.sp-home-hero__body,
.sp-service-shell__body {
	display: grid;
	gap: var(--sp-space-3);
}

.sp-home-hero__aside {
	display: grid;
	gap: var(--sp-space-2);
}

.sp-card-grid {
	display: grid;
	gap: var(--sp-space-3);
}

.sp-feature-grid {
	display: grid;
	gap: var(--sp-space-3);
}

.sp-feature-grid__items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
	gap: var(--sp-space-3);
}

.sp-feature-grid__item {
	display: grid;
	gap: var(--sp-space-2);
	align-content: start;
	padding: var(--sp-space-1);
}

.sp-icon-block {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--sp-icon-block-size, 2.5rem);
	height: var(--sp-icon-block-size, 2.5rem);
	color: var(--sp-pattern-accent, var(--sp-color-text-accent));
}

.sp-icon-block .sp-icon-block__svg {
	display: block;
	width: 100%;
	height: 100%;
}

.sp-feature-grid__icon.wp-block-southernpartners-theme-icon,
.sp-feature-grid__icon.sp-icon-block {
	margin: 0;
	width: var(--sp-icon-block-size, 2.5rem);
	height: var(--sp-icon-block-size, 2.5rem);
}

.sp-feature-grid__item .wp-block-heading {
	margin: 0;
	color: var(--sp-pattern-text-strong, inherit);
	font-size: var(--sp-type-size-heading-4);
}

.sp-feature-grid__item p {
	margin: 0;
	color: var(--sp-pattern-text-muted, var(--sp-color-text-muted));
	font-size: var(--sp-type-size-body);
	text-wrap: balance;
}

.sp-ida-section {
	padding-block: clamp(var(--sp-space-5), 6vw, var(--sp-space-6));
}

.sp-ida-poster-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, var(--sp-ref-color-primary-900) 0%, var(--sp-ref-color-primary-700) 34%, transparent 66%),
		linear-gradient(135deg, var(--sp-ref-color-primary-900), var(--sp-ref-color-primary-600));
	color: var(--sp-color-text-inverse);
}

.sp-ida-poster-hero::before {
	position: absolute;
	content: "";
	pointer-events: none;
}

.sp-ida-poster-hero::before {
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, color-mix(in srgb, var(--sp-ref-color-primary-900) 100%, transparent) 0%, color-mix(in srgb, var(--sp-ref-color-primary-900) 96%, transparent) 40%, color-mix(in srgb, var(--sp-ref-color-primary-700) 72%, transparent) 52%, color-mix(in srgb, var(--sp-ref-color-white) 44%, transparent) 60%, transparent 72%),
		linear-gradient(180deg, color-mix(in srgb, var(--sp-ref-color-black) 10%, transparent), transparent 46%);
}

.sp-ida-poster-hero__inner {
	position: relative;
	display: grid;
	align-items: stretch;
	min-height: 43rem;
}

.sp-ida-poster-hero__media {
	position: absolute;
	inset: 0 calc(50% - 50vw) 0 30%;
	z-index: 0;
	margin: 0;
}

.sp-ida-poster-hero__media img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: left center;
}

.sp-ida-poster-hero__content {
	position: relative;
	z-index: 3;
	display: grid;
	align-content: center;
	gap: var(--sp-space-3);
	max-width: 51rem;
	padding-block: var(--sp-space-7);
}

.sp-ida-poster-hero .sp-eyebrow {
	color: var(--sp-ref-color-primary-300);
}

.sp-ida-poster-hero__headline {
	max-width: 48rem;
	margin: 0;
	color: var(--sp-color-text-inverse);
	font-family: var(--sp-type-family-heading);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.92;
	text-wrap: balance;
}

.sp-ida-poster-hero__headline > span {
	display: block;
}

.sp-ida-poster-hero__headline-accent {
	position: relative;
	width: fit-content;
	color: var(--sp-ref-color-accent-500, #fdb71a);
	font-size: 5rem;
	text-shadow: 0.28rem 0.24rem 0 color-mix(in srgb, var(--sp-ref-color-black) 34%, transparent);
}

.sp-ida-poster-hero__headline-mark {
	display: inline-block;
	text-decoration: underline;
	text-decoration-thickness: 0.07em;
	text-underline-offset: 0.08em;
}

.sp-ida-poster-hero__headline-main {
	max-width: 47rem;
	margin-top: var(--sp-space-2);
	font-size: 3.65rem;
	line-height: 1.02;
	text-shadow: 0.24rem 0.2rem 0 color-mix(in srgb, var(--sp-ref-color-black) 36%, transparent);
}

.sp-ida-poster-hero__tagline {
	max-width: 43rem;
	margin: var(--sp-space-2) 0 0;
	padding-top: 0.625rem;
	border-top: 0.22rem solid color-mix(in srgb, var(--sp-ref-color-white) 92%, transparent);
	color: var(--sp-color-text-inverse);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.1;
	text-shadow: 0.18rem 0.16rem 0 color-mix(in srgb, var(--sp-ref-color-black) 34%, transparent);
}

.sp-ida-poster-hero__intro {
	max-width: 43rem;
	margin: 0;
	color: color-mix(in srgb, var(--sp-ref-color-white) 90%, transparent);
	font-size: var(--sp-type-size-body-lg);
}

.sp-ida-poster-hero .wp-block-buttons {
	margin-top: var(--sp-space-2);
}

.sp-ida-poster-hero .wp-block-button.is-style-sp-ghost .wp-block-button__link {
	border-color: color-mix(in srgb, var(--sp-ref-color-white) 74%, transparent);
	color: var(--sp-color-text-inverse);
}

.sp-ida-match-band {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at bottom, #071e3a 0%, #044464 25%, var(--sp-ref-color-primary-500) 50%, #044464 74%, #071e3a 100%);
	background-position: 50% 50%;
	background-size: 400% 400%;
	color: var(--sp-color-text-inverse);
	animation: sp-ida-mesh-gradient 28s ease-in-out infinite alternate;
}

.sp-ida-match-band::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--sp-ref-color-white) 20%, transparent), transparent 26rem),
		radial-gradient(circle at 82% 74%, color-mix(in srgb, var(--sp-ref-color-primary-300) 28%, transparent), transparent 30rem),
		linear-gradient(170deg, transparent 58%, color-mix(in srgb, var(--sp-ref-color-white) 12%, transparent) 58% 64%, transparent 64%),
		linear-gradient(176deg, transparent 70%, color-mix(in srgb, var(--sp-ref-color-black) 20%, transparent) 70% 78%, transparent 78%);
	content: "";
	mix-blend-mode: screen;
	opacity: 0.72;
	pointer-events: none;
}

.sp-ida-match-band::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, color-mix(in srgb, var(--sp-ref-color-black) 12%, transparent), transparent 34%),
		linear-gradient(0deg, color-mix(in srgb, var(--sp-ref-color-black) 18%, transparent), transparent 42%);
	content: "";
	pointer-events: none;
}

.sp-ida-match-band > * {
	position: relative;
	z-index: 2;
}

.sp-ida-match-panel {
	position: relative;
	padding: var(--sp-space-6) var(--sp-space-4) var(--sp-space-5);
	border: 2px solid color-mix(in srgb, var(--sp-ref-color-white) 82%, transparent);
	border-radius: 4.75rem 0 4.75rem 0;
	box-shadow:
		inset 0 1px 0 color-mix(in srgb, var(--sp-ref-color-white) 30%, transparent),
		0 1.5rem 3rem color-mix(in srgb, var(--sp-ref-color-black) 16%, transparent);
}

.sp-ida-match-heading {
	display: flex;
	justify-content: center;
	margin-bottom: var(--sp-space-6);
}

.sp-ida-match-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 28rem);
	margin: 0;
	padding: var(--sp-space-3) var(--sp-space-5);
	background: #fdb71a;
	color: var(--sp-ref-color-primary-900);
	font-size: var(--sp-type-size-heading-2);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	box-shadow: 0 1rem 1.8rem color-mix(in srgb, var(--sp-ref-color-black) 16%, transparent);
}

.sp-ida-match-grid {
	display: grid;
	gap: var(--sp-space-4);
	padding: 0;
}

.sp-ida-match-row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--sp-space-4);
	align-items: center;
	padding-inline: var(--sp-space-3);
}

.sp-ida-match-card {
	position: relative;
	display: grid;
	gap: 0.25rem;
	align-content: center;
	min-height: 10rem;
	margin: 0;
	padding: var(--sp-space-3);
	border: 4px solid var(--sp-ref-color-white);
	border-radius: 1.4rem 0 1.4rem 0;
	background: var(--sp-ref-color-white);
	color: var(--sp-ref-color-primary-900);
	box-shadow:
		0.34rem 0.42rem 0 color-mix(in srgb, var(--sp-ref-color-white) 42%, transparent),
		0.55rem 0.62rem 0 color-mix(in srgb, var(--sp-ref-color-black) 24%, transparent),
		0 1.25rem 2.2rem color-mix(in srgb, var(--sp-ref-color-black) 16%, transparent);
	text-align: center;
	overflow: hidden;
}

.sp-ida-match-card::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--sp-ref-color-white) 42%, transparent), transparent 44%),
		radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--sp-ref-color-white) 38%, transparent), transparent 9rem);
	content: "";
	pointer-events: none;
}

.sp-ida-match-card > * {
	position: relative;
	z-index: 1;
}

.sp-ida-match-card--save {
	background:
		linear-gradient(90deg, #c04655 0%, #ef8696 50%, #c04655 100%);
	color: var(--sp-color-text-inverse);
}

.sp-ida-match-card--match {
	background: #ccedfd;
}

.sp-ida-match-card--total {
	background: #fdb71a;
}

.sp-ida-match-label,
.sp-ida-match-value,
.sp-ida-match-operator {
	margin: 0;
}

.sp-ida-match-label {
	color: currentcolor;
	font-size: var(--sp-type-size-heading-4);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.1;
	text-transform: uppercase;
}

.sp-ida-match-value {
	color: currentcolor;
	font-family: var(--sp-type-family-display);
	font-size: var(--sp-type-size-display);
	font-weight: 900;
	line-height: 1;
}

.sp-ida-match-operator {
	align-self: center;
	justify-self: center;
	color: var(--sp-color-text-inverse);
	font-family: var(--sp-type-family-heading);
	font-size: var(--sp-type-size-heading-1);
	font-weight: 900;
	line-height: 1;
	text-shadow: 0.22rem 0.18rem 0 color-mix(in srgb, var(--sp-ref-color-black) 24%, transparent);
}

.sp-ida-match-operator::before {
	content: "";
}

.sp-ida-match-operator--plus::before {
	content: "+";
}

.sp-ida-match-operator--equals::before {
	content: "=";
}

.sp-ida-match-or {
	margin: 0;
	color: var(--sp-color-text-inverse);
	font-family: var(--sp-type-family-heading);
	font-size: var(--sp-type-size-heading-2);
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-shadow: 0.2rem 0.16rem 0 color-mix(in srgb, var(--sp-ref-color-black) 24%, transparent);
	text-transform: uppercase;
}

@keyframes sp-ida-mesh-gradient {
	0% {
		background-position: 8% 50%;
	}

	45% {
		background-position: 92% 48%;
	}

	100% {
		background-position: 50% 62%;
	}
}

.sp-ida-process-stage {
	background: var(--sp-ref-color-primary-900);
	color: var(--sp-color-text-inverse);
}

.sp-ida-process-stage .sp-eyebrow {
	color: var(--sp-ref-color-primary-300);
}

.sp-ida-process-stage .wp-block-heading,
.sp-ida-process-stage > .wp-block-group > .wp-block-group > p {
	color: var(--sp-color-text-inverse);
}

.sp-ida-process-stage > .wp-block-group > .wp-block-group:first-child {
	max-width: 58rem;
	margin-inline: auto;
	text-align: center;
}

.sp-ida-process-stage > .wp-block-group > .wp-block-group:first-child .wp-block-heading {
	font-size: clamp(var(--sp-type-size-heading-2), 5vw, 3.45rem);
}

.sp-ida-step-grid {
	display: grid;
	gap: var(--sp-space-4);
	max-width: 70rem;
	margin-inline: auto;
}

.sp-ida-flow-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: var(--sp-space-1) var(--sp-space-2);
	align-content: start;
	min-height: 5.75rem;
	padding: 1.35rem 1.55rem;
	border: 1px solid color-mix(in srgb, var(--sp-ref-color-primary-300) 30%, var(--sp-ref-color-gray-300));
	border-radius: var(--sp-layout-radius-md);
	background: linear-gradient(180deg, var(--sp-ref-color-white), color-mix(in srgb, var(--sp-ref-color-white) 92%, var(--sp-ref-color-primary-50)));
	color: var(--sp-ref-color-primary-900);
	box-shadow: 0 0.9rem 1.8rem color-mix(in srgb, var(--sp-ref-color-black) 13%, transparent);
}

.sp-ida-flow-card > * {
	margin-block: 0;
}

.sp-ida-flow-card > :not(.sp-meta-chip) {
	grid-column: 2;
}

.sp-ida-flow-card .sp-meta-chip {
	display: grid;
	grid-row: 1 / span 3;
	align-self: start;
	align-items: center;
	justify-content: center;
	min-width: 3.1rem;
	min-height: 3.1rem;
	padding: 0.32rem 0.45rem;
	border: 1px solid color-mix(in srgb, var(--sp-ref-color-primary-500) 28%, transparent);
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-ref-color-primary-50);
	color: var(--sp-ref-color-primary-700);
	font-size: var(--sp-type-size-meta);
	font-weight: 650;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.sp-ida-flow-card .sp-meta-chip span,
.sp-ida-flow-card .sp-meta-chip strong {
	display: block;
}

.sp-ida-flow-card .sp-meta-chip strong {
	color: var(--sp-ref-color-primary-700);
	font-size: var(--sp-type-size-heading-5);
	font-weight: 800;
	line-height: 0.95;
}

.sp-ida-flow-card .wp-block-heading {
	color: var(--sp-ref-color-primary-900);
	font-size: var(--sp-type-size-heading-5);
}

.sp-ida-flow-card p,
.sp-ida-flow-card li {
	color: color-mix(in srgb, var(--sp-ref-color-primary-900) 82%, var(--sp-ref-color-gray-700));
	font-size: var(--sp-type-size-body);
	line-height: var(--sp-type-line-height-copy);
}

.sp-ida-flow-card .wp-block-list.is-style-sp-styled {
	counter-reset: sp-ida-documents;
	display: grid;
	gap: 0.5rem;
	grid-column: 1 / -1;
	margin-top: var(--sp-space-2);
	padding: 0;
	list-style: none;
}

.sp-ida-flow-card .wp-block-list.is-style-sp-styled > li {
	counter-increment: sp-ida-documents;
	position: relative;
	padding: 0.75rem 0.85rem 0.75rem 3rem;
	border: 1px solid color-mix(in srgb, var(--sp-ref-color-primary-300) 28%, var(--sp-ref-color-gray-200));
	border-radius: var(--sp-layout-radius-sm);
	background: color-mix(in srgb, var(--sp-ref-color-white) 90%, var(--sp-ref-color-primary-50));
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--sp-ref-color-white) 56%, transparent);
}

.sp-ida-flow-card .wp-block-list.is-style-sp-styled > li::before {
	position: absolute;
	top: 0.65rem;
	left: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 999px;
	background: var(--sp-ref-color-primary-50);
	color: var(--sp-ref-color-primary-700);
	content: counter(sp-ida-documents);
	font-size: var(--sp-type-size-label);
	font-weight: 900;
	mask: none;
	-webkit-mask: none;
}

.sp-ida-uses .sp-feature-grid__items {
	align-items: start;
}

.sp-ida-uses > .wp-block-group:first-child {
	max-width: 52rem;
	margin-inline: auto;
	text-align: center;
}

.sp-ida-uses .sp-feature-grid__item {
	justify-items: start;
	padding: 0;
	text-align: left;
}

.sp-ida-uses .sp-feature-grid__icon {
	--sp-icon-block-size: 3rem;
	color: var(--sp-ref-color-primary-700);
}

.sp-ida-uses .sp-feature-grid__item .wp-block-heading {
	color: var(--sp-ref-color-primary-900);
}

.sp-ida-uses .sp-feature-grid__item p {
	max-width: 20rem;
}

.sp-ida-form-stage .program-container {
	max-width: 58rem;
	margin-inline: auto;
	padding: var(--sp-space-3);
	border: 1px solid var(--sp-ref-color-brand-border-strong);
	border-radius: var(--sp-layout-radius-lg);
	background: color-mix(in srgb, var(--sp-ref-color-white) 8%, transparent);
	box-shadow: inset 0 1px 0 color-mix(in srgb, var(--sp-ref-color-white) 25%, transparent);
}

.sp-ida-form-stage .sp-content-flow > .wp-block-group:first-child {
	max-width: 70rem;
	margin-inline: auto;
	text-align: center;
}

.sp-ida-form-note {
	max-width: 58rem;
	margin-inline: auto;
	text-align: center;
}

.sp-ida-questions {
	max-width: 56rem;
}

.sp-ida-questions .wp-block-heading a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

@media (max-width: 64rem) {
	.sp-ida-poster-hero__inner {
		min-height: 38rem;
	}

	.sp-ida-poster-hero__media {
		left: 22%;
	}

	.sp-ida-poster-hero__content {
		max-width: 44rem;
	}

	.sp-ida-poster-hero__headline-accent {
		font-size: 4rem;
	}

	.sp-ida-poster-hero__headline-main {
		font-size: 2.85rem;
	}

	.sp-ida-poster-hero__tagline {
		font-size: 1.7rem;
	}
}

@media (min-width: 42.501rem) and (max-width: 53.6875rem) {
	.sp-ida-match-panel {
		padding-inline: var(--sp-space-3);
	}

	.sp-ida-match-row {
		grid-template-columns: minmax(0, 1fr) 1rem minmax(0, 1fr) 1rem minmax(0, 1fr);
		gap: var(--sp-space-2);
		padding-inline: 0;
	}

	.sp-ida-match-card {
		min-height: 8rem;
		padding: var(--sp-space-2);
		border-radius: 1.1rem 0 1.1rem 0;
	}

	.sp-ida-match-label {
		font-size: var(--sp-type-size-body-small);
		line-height: 1.05;
	}

	.sp-ida-match-value {
		font-size: clamp(2rem, 5vw, 2.8rem);
		white-space: nowrap;
	}

	.sp-ida-match-operator {
		font-size: var(--sp-type-size-heading-3);
	}
}

@media (max-width: 42.5rem) {
	.sp-ida-poster-hero::before {
		background:
			linear-gradient(180deg, color-mix(in srgb, var(--sp-ref-color-primary-900) 94%, transparent) 0%, color-mix(in srgb, var(--sp-ref-color-primary-900) 88%, transparent) 58%, color-mix(in srgb, var(--sp-ref-color-primary-700) 72%, transparent) 100%),
			linear-gradient(90deg, color-mix(in srgb, var(--sp-ref-color-primary-900) 74%, transparent), color-mix(in srgb, var(--sp-ref-color-primary-900) 54%, transparent));
	}

	.sp-ida-poster-hero__media {
		inset: 0 calc(50% - 50vw);
	}

	.sp-ida-poster-hero__media img {
		object-position: 34% center;
	}

	.sp-ida-poster-hero__inner {
		min-height: 38rem;
	}

	.sp-ida-poster-hero__content {
		max-width: none;
		padding-block: var(--sp-space-5);
	}

	.sp-ida-poster-hero__headline-accent {
		font-size: 2.85rem;
		text-shadow: 0.16rem 0.14rem 0 color-mix(in srgb, var(--sp-ref-color-black) 34%, transparent);
	}

	.sp-ida-poster-hero__headline-main {
		font-size: 2.15rem;
		text-shadow: 0.14rem 0.12rem 0 color-mix(in srgb, var(--sp-ref-color-black) 36%, transparent);
	}

	.sp-ida-poster-hero__tagline {
		font-size: 1.35rem;
	}

	.sp-ida-match-panel {
		padding: var(--sp-space-4) 0.75rem;
		border-radius: 2.5rem 0 2.5rem 0;
	}

	.sp-ida-match-heading {
		margin-bottom: var(--sp-space-3);
	}

	.sp-ida-match-title {
		min-width: 0;
		width: min(100%, 13rem);
		padding: 0.8rem;
		font-size: var(--sp-type-size-heading-6);
	}

	.sp-ida-match-row {
		grid-template-columns: minmax(0, 1fr) 0.75rem minmax(0, 1fr) 0.75rem minmax(0, 1fr);
		gap: 0.45rem;
		padding-inline: 0;
	}

	.sp-ida-match-card {
		justify-self: stretch;
		min-height: 4.9rem;
		width: auto;
		padding: 0.5rem 0.35rem;
		border-width: 2px;
		border-radius: 0.75rem 0 0.75rem 0;
		box-shadow:
			0.16rem 0.18rem 0 color-mix(in srgb, var(--sp-ref-color-white) 42%, transparent),
			0.26rem 0.3rem 0 color-mix(in srgb, var(--sp-ref-color-black) 24%, transparent),
			0 0.65rem 1.1rem color-mix(in srgb, var(--sp-ref-color-black) 14%, transparent);
	}

	.sp-ida-match-label {
		font-size: 0.56rem;
		line-height: 1.05;
	}

	.sp-ida-match-value {
		font-size: clamp(1.12rem, 5.7vw, 1.45rem);
		white-space: nowrap;
	}

	.sp-ida-match-operator {
		font-size: var(--sp-type-size-heading-5);
		text-shadow: 0.1rem 0.08rem 0 color-mix(in srgb, var(--sp-ref-color-black) 24%, transparent);
	}

	.sp-ida-match-or {
		font-size: var(--sp-type-size-heading-5);
		text-shadow: 0.1rem 0.08rem 0 color-mix(in srgb, var(--sp-ref-color-black) 24%, transparent);
	}

	.sp-ida-match-grid {
		padding: 0;
	}

	.sp-ida-form-stage .program-container {
		padding: var(--sp-space-2);
	}

	.sp-ida-flow-card {
		grid-template-columns: minmax(0, 1fr);
		padding: var(--sp-space-3);
	}

	.sp-ida-flow-card > :not(.sp-meta-chip) {
		grid-column: auto;
	}

	.sp-ida-flow-card .sp-meta-chip {
		grid-row: auto;
		justify-self: start;
	}
}

.sp-resource-archive-hero {
	display: grid;
	gap: var(--sp-space-3);
	align-items: end;
	padding-bottom: var(--sp-space-3);
}

.sp-resource-archive-hero__copy {
	display: grid;
	gap: var(--sp-space-1);
}

.sp-resource-archive-hero__copy .wp-block-query-title {
	margin: 0;
}

.sp-resource-archive-hero__copy p {
	max-width: 48rem;
}

.sp-resource-topic-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.sp-resource-topic-links__link {
	display: inline-flex;
	gap: 0.45rem;
	align-items: center;
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-color-layer-3);
	color: var(--sp-color-text-strong);
	font-size: var(--sp-type-size-meta);
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.sp-resource-topic-links__link:hover,
.sp-resource-topic-links__link:focus-visible {
	border-color: var(--sp-color-action-primary-bg);
	color: var(--sp-color-text-accent);
	outline: none;
}

.sp-resource-topic-links__count {
	color: var(--sp-color-text-muted);
	font-weight: 500;
}

.sp-dropdown {
	position: relative;
	width: 100%;
}

.sp-dropdown__native,
.sp-dropdown__button {
	width: 100%;
	min-height: 2.75rem;
	border: 1px solid var(--sp-color-border-strong);
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-color-layer-input);
	color: var(--sp-color-text-strong);
	font: inherit;
}

.sp-dropdown__native {
	padding: 0.55rem 2rem 0.55rem 0.7rem;
}

.sp-dropdown__button,
.sp-dropdown__menu {
	display: none;
}

.sp-dropdown.is-enhanced .sp-dropdown__native {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.sp-dropdown.is-enhanced .sp-dropdown__button {
	display: flex;
	gap: 0.6rem;
	align-items: center;
	justify-content: space-between;
	padding: 0.55rem 0.65rem 0.55rem 0.8rem;
	cursor: pointer;
}

.sp-dropdown__button-text {
	display: inline-flex;
	gap: 0.3rem;
	align-items: baseline;
	min-width: 0;
	white-space: nowrap;
}

.sp-dropdown__prefix {
	flex: 0 0 auto;
	color: var(--sp-color-text-muted);
	font-weight: 700;
}

.sp-dropdown.is-open .sp-dropdown__button {
	border-color: var(--sp-color-border-selected);
}

.sp-dropdown__button:focus-visible,
.sp-dropdown__native:focus-visible,
.sp-dropdown__option:focus-visible {
	outline: 2px solid var(--sp-color-focus-ring);
	outline-offset: 2px;
}

.sp-dropdown__value {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sp-dropdown__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	color: var(--sp-color-text-accent);
	transition: transform var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-dropdown.is-open .sp-dropdown__icon {
	transform: rotate(180deg);
}

.sp-dropdown__menu {
	position: absolute;
	z-index: 20;
	inset: calc(100% + 0.25rem) 0 auto;
	gap: 0.25rem;
	max-height: min(18rem, 60vh);
	overflow: auto;
	padding: 0.35rem;
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-color-layer-2);
}

.sp-dropdown.is-open .sp-dropdown__menu {
	display: grid;
}

.sp-dropdown__option {
	display: grid;
	grid-template-columns: 1rem minmax(0, 1fr);
	gap: 0.55rem;
	align-items: center;
	width: 100%;
	min-height: 2.35rem;
	padding: 0.45rem 0.55rem;
	border: 0;
	border-radius: var(--sp-layout-radius-sm);
	background: transparent;
	color: var(--sp-color-text-strong);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.sp-dropdown__option:hover,
.sp-dropdown__option:focus-visible {
	background: var(--sp-color-layer-1);
}

.sp-dropdown__option.is-selected {
	background: var(--sp-color-layer-selected);
	color: var(--sp-color-text-strong);
	font-weight: 700;
}

.sp-dropdown__check {
	display: inline-flex;
	color: var(--sp-color-text-accent);
	opacity: 0;
}

.sp-dropdown__option.is-selected .sp-dropdown__check {
	opacity: 1;
}

.sp-dropdown__option-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sp-dropdown--inline {
	width: auto;
	max-width: 100%;
}

.sp-dropdown--inline .sp-dropdown__native,
.sp-dropdown--inline .sp-dropdown__button {
	width: auto;
	min-height: 2.25rem;
	border-color: transparent;
	background: transparent;
}

.sp-dropdown--inline .sp-dropdown__native {
	padding-block: 0.3rem;
	padding-inline: 0 1.75rem;
}

.sp-dropdown--inline.is-enhanced .sp-dropdown__button {
	justify-content: flex-start;
	padding: 0.3rem 0;
}

.sp-dropdown--inline.is-open .sp-dropdown__button {
	border-color: transparent;
}

.sp-dropdown--inline .sp-dropdown__menu {
	inset-inline: auto 0;
	min-width: min(14rem, calc(100vw - (var(--sp-layout-content-gutter) * 2)));
}

.sp-resource-archive-shell,
.sp-resource-single-shell {
	max-width: calc(100vw - var(--sp-layout-content-gutter));
}

.sp-resource-library {
	container-type: inline-size;
}

.sp-resource-library__layout {
	display: grid;
	align-items: start;
}

.sp-resource-detail {
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-2);
}

.sp-resource-library__search {
	display: grid;
	gap: 0.55rem;
}

.sp-resource-library__search label,
.sp-resource-library__sort-label {
	color: var(--sp-color-text-strong);
	font-size: var(--sp-type-size-meta);
	font-weight: 700;
	line-height: 1.2;
}

.sp-resource-library__search-row {
	display: grid;
	gap: 0.5rem;
}

.sp-resource-library__search-row input {
	width: 100%;
	min-height: 2.75rem;
	border: 1px solid var(--sp-color-border-strong);
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-color-layer-input);
	color: var(--sp-color-text-strong);
	font: inherit;
}

.sp-resource-library__search-row input {
	padding: 0.65rem 0.8rem;
}

.sp-resource-library__search-row input:focus-visible,
.sp-resource-result-card__title a:focus-visible,
.sp-resource-detail a:focus-visible {
	outline: 2px solid var(--sp-color-focus-ring);
	outline-offset: 2px;
}

.sp-resource-library__search-row button,
.sp-resource-library__sort > button {
	min-height: 2.75rem;
	border: 0;
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-color-action-primary-bg);
	color: var(--sp-color-action-primary-text);
	font: inherit;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
}

.sp-resource-library__search-row button {
	padding: 0.65rem 1rem;
}

.sp-resource-library__sort > button {
	padding: 0.55rem 0.8rem;
}

.sp-resource-library__search-row button:hover,
.sp-resource-library__sort > button:hover {
	background: var(--sp-color-action-primary-hover-bg);
}

.sp-resource-library__results {
	display: grid;
	gap: var(--sp-space-2);
}

.sp-resource-library__toolbar {
	display: grid;
	gap: var(--sp-space-2);
	align-items: end;
	padding-bottom: var(--sp-space-2);
	border-bottom: 1px solid var(--sp-color-border-subtle);
}

.sp-resource-library__summary {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem var(--sp-space-2);
	align-items: center;
	justify-content: space-between;
}

.sp-resource-library__count {
	margin: 0;
	color: var(--sp-color-text-muted);
	font-size: var(--sp-type-size-meta);
}

.sp-resource-library__sort {
	display: grid;
	justify-items: start;
	margin-inline-start: auto;
	color: var(--sp-color-text-strong);
	font-size: var(--sp-type-size-meta);
}

.sp-resource-library__list {
	display: grid;
	gap: 0;
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-canvas);
	overflow: hidden;
}

.sp-resource-related__grid {
	display: grid;
	gap: var(--sp-space-3);
}

.sp-resource-result-card {
	display: grid;
	gap: 0.4rem;
	padding: 1rem var(--sp-space-3);
	background: transparent;
}

.sp-resource-result-card + .sp-resource-result-card {
	border-top: 1px solid var(--sp-color-border-subtle);
}

.sp-resource-result-card__title {
	margin: 0;
	font-size: var(--sp-type-size-heading-5);
	line-height: var(--sp-type-line-height-heading);
}

.sp-resource-result-card__title a {
	color: var(--sp-color-text-strong);
	text-decoration: none;
}

.sp-resource-result-card__title a:hover {
	color: var(--sp-color-text-accent);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.sp-resource-result-card__excerpt {
	margin: 0;
	color: var(--sp-color-text-muted);
	font-size: var(--sp-type-size-meta);
}

.sp-resource-library__pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sp-resource-library__pagination .page-numbers a,
.sp-resource-library__pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.35rem;
	min-height: 2.35rem;
	padding: 0.35rem 0.65rem;
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-sm);
	text-decoration: none;
}

.sp-resource-library__pagination .page-numbers .current {
	border-color: var(--sp-color-border-selected);
	background: var(--sp-color-layer-selected);
	color: var(--sp-color-text-strong);
	font-weight: 700;
}

.sp-resource-library__empty {
	display: grid;
	gap: var(--sp-space-2);
	padding: var(--sp-space-4);
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-1);
}

.sp-resource-library__empty h2,
.sp-resource-library__empty p {
	margin: 0;
}

.sp-resource-library__empty p {
	color: var(--sp-color-text-muted);
}

.sp-resource-single__layout {
	display: grid;
	gap: var(--sp-space-4);
	align-items: start;
}

.sp-resource-single__content {
	min-width: 0;
}

.sp-resource-detail {
	display: grid;
	gap: var(--sp-space-3);
	padding: var(--sp-space-3);
}

.sp-resource-detail h2,
.sp-resource-detail dl,
.sp-resource-detail dd {
	margin: 0;
}

.sp-resource-detail h2 {
	font-size: var(--sp-type-size-heading-4);
}

.sp-resource-detail dl {
	display: grid;
	gap: var(--sp-space-2);
}

.sp-resource-detail dl > div {
	display: grid;
	gap: 0.2rem;
	padding-bottom: var(--sp-space-2);
	border-bottom: 1px solid var(--sp-color-border-subtle);
}

.sp-resource-detail dt {
	color: var(--sp-color-text-muted);
	font-size: var(--sp-type-size-label);
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: var(--sp-type-letter-spacing-label);
}

.sp-resource-detail dd {
	color: var(--sp-color-text-strong);
	font-weight: 600;
}

.sp-resource-detail dd a {
	color: var(--sp-color-text-accent);
	text-decoration: none;
}

.sp-resource-detail dd a:hover,
.sp-resource-detail dd a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.sp-resource-detail__download {
	justify-content: center;
	text-align: center;
}

.sp-resource-detail__back {
	justify-self: start;
	color: var(--sp-color-text-accent);
	font-weight: 700;
	text-decoration: none;
}

.sp-resource-related {
	display: grid;
	gap: var(--sp-space-3);
	padding-top: var(--sp-space-4);
	border-top: 1px solid var(--sp-color-border-subtle);
}

.sp-resource-related__header {
	display: grid;
	gap: 0.4rem;
}

.sp-resource-related__header h2,
.sp-resource-related__header p {
	margin: 0;
}

.sp-service-card,
.sp-proof-card,
.sp-list-panel,
.sp-query-card,
.sp-story-card,
.sp-resource-card {
	height: 100%;
	display: grid;
	gap: var(--sp-space-1);
	align-content: start;
}

.sp-resource-card {
	padding: var(--sp-space-3);
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-2);
}

.sp-service-card .wp-block-heading,
.sp-query-card .wp-block-post-title {
	margin: 0;
	font-size: 1.35rem;
}

.sp-resource-card .wp-block-post-title {
	margin: 0;
	font-size: 1.35rem;
	line-height: var(--sp-type-line-height-heading);
}

.sp-resource-card .wp-block-post-title a {
	color: var(--sp-color-text-strong);
	text-decoration: none;
}

.sp-resource-card .wp-block-post-title a:hover,
.sp-resource-card .wp-block-post-title a:focus-visible {
	color: var(--sp-color-text-accent);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	outline: none;
}

.sp-resource-card__meta {
	gap: 0.5rem;
	margin: 0;
}

.sp-resource-card__topics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
	color: var(--sp-color-text-muted);
	font-size: var(--sp-type-size-meta);
	line-height: 1.2;
}

.sp-resource-card__topics a {
	color: inherit;
	text-decoration: none;
}

.sp-resource-card__topics a:hover,
.sp-resource-card__topics a:focus-visible {
	color: var(--sp-color-text-accent);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	outline: none;
}

.sp-resource-card .wp-block-post-excerpt {
	margin: 0;
	color: var(--sp-color-text-muted);
}

.sp-resource-card .wp-block-post-excerpt__excerpt {
	margin: 0;
}

.sp-resource-card__link {
	align-self: end;
	justify-self: start;
	margin-top: var(--sp-space-1);
	color: var(--sp-color-text-accent);
	font-weight: 700;
	text-decoration: none;
}

.sp-resource-card__link:hover,
.sp-resource-card__link:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.18em;
	outline: none;
}

.sp-resource-download {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-space-1);
	align-items: center;
	margin-block: var(--sp-space-2);
}

.sp-resource-download--card {
	justify-self: start;
	margin: 0;
	padding: 0.2rem 0.55rem;
	border-radius: var(--sp-layout-radius-sm);
	background: var(--sp-color-layer-1);
	color: var(--sp-color-text-accent);
	font-size: var(--sp-type-size-meta);
	font-weight: 700;
	line-height: 1.2;
}

.sp-resource-card__meta .sp-resource-download--card {
	margin: 0;
}

.sp-resource-download__meta {
	margin: 0;
	color: var(--sp-color-text-muted);
	font-size: var(--sp-type-size-meta);
}

.sp-resource-download__button {
	display: inline-flex;
	align-items: center;
}

.sp-service-card p,
.sp-proof-card p,
.sp-list-panel p,
.sp-query-card .wp-block-post-excerpt,
.sp-entry-shell__lede,
.sp-empty-state p {
	color: var(--sp-pattern-text-muted, var(--sp-color-text-muted));
}

.sp-resource-empty-state {
	padding: var(--sp-space-4);
	border: 1px solid var(--sp-color-border-subtle);
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-1);
}

.sp-resource-empty-state .wp-block-heading,
.sp-resource-empty-state p {
	margin: 0;
}

.sp-list-panel ul,
.sp-link-list {
	margin: 0;
	padding-left: 1rem;
}

.wp-block-group.sp-link-list {
	padding-left: 0;
}

.sp-link-list li + li {
	margin-top: 0.5rem;
}

.sp-link-list p {
	margin: 0;
}

.sp-link-list p + p {
	margin-top: 0.5rem;
}

.sp-entry-shell__header {
	display: grid;
	gap: var(--sp-space-1);
	margin-bottom: var(--sp-space-3);
}

.sp-entry-shell__lede {
	margin: 0;
	max-width: 48rem;
	font-size: var(--sp-type-size-body-lg);
}

.sp-query-card .wp-block-post-featured-image,
.sp-entry-shell .wp-block-post-featured-image {
	margin: 0;
}

.sp-404-shell {
	--sp-404-card-bg: var(--sp-color-layer-canvas);
	--sp-404-text: var(--sp-color-text-strong);
	--sp-404-muted: var(--sp-color-text-muted);
	--sp-404-border: var(--sp-color-border-subtle);
	--sp-404-hover: var(--sp-color-layer-selected);
	--sp-404-icon-bg: var(--sp-color-layer-selected);
	--sp-404-accent: var(--sp-color-text-accent);
	--sp-404-card-width: 40rem;
	--sp-404-result-media-width: 7.5rem;
	width: 100%;
	max-width: none;
	min-height: auto;
	margin-block: 0;
	padding: 0;
	background: transparent;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.sp-404-shell__inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-space-4);
	width: min(100%, var(--sp-404-card-width));
	margin-inline: auto;
	margin-top: 0;
	padding: var(--sp-space-4);
	border: 1px solid var(--sp-404-border);
	border-radius: var(--sp-layout-radius-xl);
	background: var(--sp-404-card-bg);
	box-shadow: var(--sp-layout-shadow-card);
}

.sp-404-shell__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sp-ref-space-3);
	max-width: none;
}

.sp-404-shell__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: calc(var(--sp-space-5) + var(--sp-ref-space-2));
	height: calc(var(--sp-space-5) + var(--sp-ref-space-2));
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-404-icon-bg);
	color: var(--sp-404-accent);
}

.sp-404-shell__header h1,
.sp-404-shell__header p {
	margin: 0;
}

.sp-404-shell__header h1 {
	color: var(--sp-404-text);
	font-size: var(--sp-type-size-heading-3);
	font-weight: 800;
	line-height: var(--sp-type-line-height-copy);
}

.sp-404-shell__header p {
	color: var(--sp-404-muted);
	font-size: var(--sp-type-size-body) !important;
	line-height: var(--sp-type-line-height-body);
}

.sp-404-shell__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-ref-space-3);
}

.sp-404-shell__actions .wp-block-button__link {
	font-size: var(--sp-type-size-meta);
	font-weight: 700;
	line-height: var(--sp-type-line-height-copy);
}

.sp-404-shell__utility {
	display: flex;
	flex-direction: column;
	gap: var(--sp-space-3);
}

.sp-404-nav {
	display: flex;
	flex-direction: column;
	gap: var(--sp-ref-space-2);
}

.sp-404-nav h2 {
	margin: 0;
	color: var(--sp-404-muted);
	font-family: var(--sp-type-family-sans);
	font-size: var(--sp-type-size-label);
	font-weight: 600;
	letter-spacing: var(--sp-type-letter-spacing-label);
	line-height: var(--sp-type-line-height-tight);
	text-transform: uppercase;
}

.sp-404-nav__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--sp-ref-space-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.sp-404-nav__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--sp-ref-space-2);
	min-height: calc(var(--sp-space-6) + var(--sp-space-1));
	padding: var(--sp-space-2) calc(var(--sp-ref-space-2) + var(--sp-ref-space-1));
	border: 0;
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-1);
	color: var(--sp-404-text);
	font-size: var(--sp-type-size-meta);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition:
		background-color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-404-nav__link:hover,
.sp-404-nav__link:focus-visible {
	background: var(--sp-404-hover);
	color: var(--sp-404-accent);
	outline: none;
}

.sp-404-search {
	display: flex;
	flex-direction: column;
	gap: var(--sp-ref-space-2);
}

.sp-404-search__form {
	display: flex;
	align-items: center;
	gap: var(--sp-ref-space-3);
	height: var(--sp-space-5);
	margin: 0;
	padding: var(--sp-ref-space-3) calc(var(--sp-space-2) + var(--sp-ref-space-1));
	border: 1px solid var(--sp-component-search-overlay-border);
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-component-search-input-bg);
	box-shadow: var(--sp-component-search-input-shadow);
	transition:
		border-color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard),
		box-shadow var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-404-search__form:focus-within {
	border-color: var(--sp-component-search-input-focus-border);
	box-shadow: var(--sp-component-search-input-focus-shadow);
}

.sp-404-search__icon {
	display: inline-flex;
	flex: 0 0 auto;
	color: var(--sp-404-muted);
	transition: color var(--sp-motion-duration-standard) var(--sp-motion-ease-standard);
}

.sp-404-search__form:focus-within .sp-404-search__icon {
	color: var(--sp-404-text);
}

.sp-404-search__icon svg {
	width: var(--sp-type-size-body-lg);
	height: var(--sp-type-size-body-lg);
}

input.sp-404-search__input[type="search"] {
	appearance: none;
	-webkit-appearance: none;
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--sp-404-text);
	font-family: var(--sp-type-family-sans);
	font-size: var(--sp-type-size-body);
	font-weight: 500;
	line-height: var(--sp-type-line-height-copy);
}

input.sp-404-search__input[type="search"]:hover,
input.sp-404-search__input[type="search"]:focus {
	border: 0;
	background: transparent;
	outline: 0;
	box-shadow: none;
}

input.sp-404-search__input[type="search"]::-webkit-search-decoration,
input.sp-404-search__input[type="search"]::-webkit-search-cancel-button,
input.sp-404-search__input[type="search"]::-webkit-search-results-button,
input.sp-404-search__input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

input.sp-404-search__input[type="search"]::placeholder {
	color: var(--sp-404-muted);
	opacity: 1;
}

.sp-404-search__meta {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: calc(var(--sp-ref-space-2) + var(--sp-ref-space-1));
	flex: 0 0 auto;
	margin-left: auto;
	padding-left: var(--sp-ref-space-3);
}

.sp-404-search__status {
	min-height: 1em;
	color: var(--sp-404-muted);
	font-size: var(--sp-type-size-meta);
	font-weight: 500;
	white-space: nowrap;
}

.sp-404-search__spinner {
	width: var(--sp-type-size-body-lg);
	height: var(--sp-type-size-body-lg);
	border: 2px solid var(--sp-color-spinner-track);
	border-top-color: var(--sp-color-spinner-head);
	border-radius: 999px;
	animation: sp-404-spin 640ms linear infinite;
}

@keyframes sp-404-spin {
	to {
		transform: rotate(1turn);
	}
}

.sp-404-search__results {
	overflow: hidden;
	padding: var(--sp-ref-space-1);
	border: 1px solid var(--sp-404-border);
	border-radius: var(--sp-layout-radius-lg);
	background: var(--sp-color-layer-canvas);
	box-shadow: var(--sp-ref-shadow-search-results);
}

.sp-404-search__results-list {
	max-height: calc(var(--sp-space-6) * 5.9375);
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--sp-ref-color-search-ink-alpha-18) transparent;
}

.sp-404-search-result__link {
	display: grid;
	grid-template-columns: var(--sp-404-result-media-width) minmax(0, 1fr);
	align-items: start;
	gap: calc(var(--sp-ref-space-3) + var(--sp-ref-space-1));
	padding: var(--sp-ref-space-3);
	border-radius: var(--sp-layout-radius-md);
	color: inherit;
	text-decoration: none;
	transition: background-color var(--sp-motion-duration-fast) var(--sp-motion-ease-standard);
}

.sp-404-search-result__link:hover,
.sp-404-search-result__link:focus-visible,
.sp-404-search-result.is-active .sp-404-search-result__link {
	background: var(--sp-404-hover);
	color: inherit;
	outline: none;
}

.sp-404-search-result__media {
	display: grid;
	place-items: center;
	width: var(--sp-404-result-media-width);
	aspect-ratio: 16 / 9;
	border-radius: var(--sp-layout-radius-md);
	background: var(--sp-color-layer-thumbnail);
	overflow: hidden;
}

.sp-404-search-result__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-404-search-result__media[data-placeholder="true"] img {
	width: var(--sp-type-size-heading-4);
	height: var(--sp-type-size-heading-4);
	opacity: 0.45;
	object-fit: contain;
}

.sp-404-search-result__content {
	display: flex;
	flex-direction: column;
	gap: var(--sp-ref-space-1);
	min-width: 0;
}

.sp-404-search-result__title {
	font-family: var(--sp-type-family-heading);
	color: var(--sp-404-text);
	font-size: var(--sp-type-size-heading-6);
	font-weight: 800;
	line-height: var(--sp-type-line-height-copy);
}

.sp-404-search-result__meta,
.sp-404-search-result--empty {
	color: var(--sp-404-muted);
	font-size: var(--sp-type-size-label);
	line-height: var(--sp-type-line-height-tight);
}

.sp-404-search-result__excerpt {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--sp-404-muted);
	font-size: var(--sp-type-size-meta);
	line-height: var(--sp-type-line-height-body);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.sp-404-search-result--empty {
	padding: var(--sp-space-3) !important;
	text-align: center;
	font-size: var(--sp-type-size-body);
}

@media (min-width: 860px) {
	.sp-site-header__bar {
		grid-template-columns: minmax(0, auto) minmax(0, 1fr);
		align-items: center;
	}

	.sp-site-header__nav {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		justify-content: end;
		align-items: center;
	}

	.sp-site-header__nav > .wp-block-buttons {
		justify-self: end;
	}

	.sp-home-hero__body,
	.sp-service-shell__body {
		grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.9fr);
	}

	.sp-home-pillars__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sp-home-videos.is-enhanced .sp-home-stories-stage {
		--sp-home-story-card-width: min(50rem, calc(100% - (var(--sp-space-5) * 2)));
		padding-block: 0 var(--sp-space-1);
		cursor: grab;
	}

	.sp-home-videos.is-enhanced .sp-home-stories-stage:active {
		cursor: grabbing;
	}

	.sp-home-videos.is-enhanced .sp-home-stories-rail {
		gap: var(--sp-space-3);
		padding-inline: max(var(--sp-space-4), calc((100% - var(--sp-home-story-card-width)) / 2));
		scroll-padding-inline: max(var(--sp-space-4), calc((100% - var(--sp-home-story-card-width)) / 2));
	}

	.sp-home-stories-stage::before,
	.sp-home-stories-stage::after {
		width: max(3rem, 9vw);
	}

	.sp-home-closing-cta {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.sp-hero-pattern--image-right .sp-hero-pattern__inner,
	.sp-hero-pattern--slider-right .sp-hero-pattern__inner {
		grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
	}

	.sp-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sp-ida-match-row {
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
	}
}

@media (min-width: 1080px) {
	.sp-home-front-hero__inner {
		grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.95fr);
	}

}

@media (min-width: 80rem) {
	.sp-resource-library__search-row {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.sp-resource-related__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sp-resource-single__layout {
		grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
	}
}

@media (min-width: 1200px) {
	.sp-home-front-hero__inner {
		grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
		column-gap: clamp(var(--sp-space-5), 5vw, calc(var(--sp-space-6) + var(--sp-space-3)));
	}

	.sp-home-front-hero__copy {
		max-width: none;
	}

	.sp-home-front-hero__media {
		width: 100%;
	}
}

@media (min-width: 1120px) {
	.sp-home-story-card__body {
		gap: var(--sp-space-3);
	}

	.sp-home-story-card__button {
		justify-self: start;
		width: fit-content;
		white-space: nowrap;
	}
}

@media (min-width: 1040px) {
	.sp-feature-grid__items {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.sp-ida-match-band {
		animation: none;
	}

	.sp-home-videos.is-enhanced .sp-home-story-card,
	.sp-home-videos.is-enhanced .sp-home-story-card.is-visible,
	.sp-home-video-card__poster,
	.sp-home-video-card__poster img,
	.sp-home-video-card__play,
	.sp-home-video-card__play::before,
	.sp-home-video-card__play .sp-icon,
	.sp-home-stories-rail {
		transition: none;
	}

	.sp-home-videos.is-enhanced .sp-home-story-card,
	.sp-home-videos.is-enhanced .sp-home-story-card.is-visible,
	.sp-home-video-card__poster,
	.sp-home-video-card__poster img,
	.sp-home-video-card__play,
	.sp-home-video-card__play::before,
	.sp-home-video-card__play .sp-icon {
		transform: none;
	}
}

@media (max-width: 860px) {
	.sp-home-stories-stage,
	.sp-home-videos.is-enhanced .sp-home-stories-stage {
		--sp-home-story-card-width: min(42rem, calc(100% - (var(--sp-space-4) * 2)));
	}

	.sp-home-videos.is-enhanced .sp-home-stories-rail {
		gap: var(--sp-space-3);
	}

	.sp-home-stories-stage::before,
	.sp-home-stories-stage::after {
		width: var(--sp-space-2);
		opacity: 0.78;
	}
}

@media (max-width: 1280px) {
	.sp-home-videos.is-enhanced .sp-home-story-card,
	.sp-home-videos.is-enhanced .sp-home-story-card.is-visible,
	.sp-home-videos.is-enhanced .sp-home-story-card.is-active {
		transform: none;
	}
}

@media (max-width: 980px) {
	.wp-site-blocks .sp-site-header__bar {
		width: 100%;
		max-width: none;
		margin: 0;
	}

	.sp-site-header__bar {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		min-height: 4rem;
		padding: 0 1rem 0 0.5rem;
	}

	.sp-site-header__brand .custom-logo {
		width: auto;
		height: 3.5rem;
		max-width: none;
	}

	.sp-site-header__nav {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 0;
	}

	.sp-mega-menu__desktop {
		display: none;
	}

	.sp-mega-menu__mobile {
		display: block;
	}

	.sp-site-header__nav > .wp-block-buttons {
		display: none;
	}

	.sp-site-header__nav > .sp-primary-navigation {
		flex: 0 0 auto;
		order: 2;
	}

	.sp-site-header__nav > .sp-search-toggle {
		min-height: 0;
		padding: 0;
		background: transparent;
		border: 0;
		order: 1;
	}

	.sp-search-toggle > span:not(.sp-search-toggle__icon) {
		display: none;
	}

	.sp-search-toggle__icon {
		width: 1.5rem;
		height: 1.5rem;
	}

	.sp-search-toggle__icon svg,
	.sp-mega-menu__mobile-toggle svg {
		width: 1.5rem;
		height: 1.5rem;
	}

	.sp-search-toggle,
	.sp-mega-menu__mobile-toggle,
	.sp-mega-menu__mobile-close {
		display: inline-flex;
		flex: 0 0 2.5rem;
		align-items: center;
		justify-content: center;
		width: 2.5rem;
		height: 2.5rem;
		border: 0;
		border-radius: 0;
		background: transparent;
	}

	.wp-site-blocks .sp-site-header__utility-inner {
		width: 100%;
		max-width: none;
		margin: 0;
	}

	.sp-site-header__utility-inner {
		flex-wrap: nowrap;
		justify-content: space-between;
		padding: 0.5rem;
		gap: 0.75rem;
		min-height: 2.25rem;
	}

	.sp-site-header__utility-copy {
		flex: 1 1 auto;
		text-align: left;
		font-size: 0.875rem;
		font-weight: 500;
		line-height: 1.2;
	}

	.sp-site-header__utility .sp-language-segmented-control {
		margin-left: auto;
		flex: 0 0 auto;
		width: auto;
	}
}

@media (max-width: 782px) {
	.admin-bar .sp-mega-menu__mobile-drawer {
		inset: 46px 0 0;
	}
}

@media (min-width: 783px) and (max-width: 980px) {
	.admin-bar .sp-mega-menu__mobile-drawer {
		inset: 32px 0 0;
	}
}

@media (max-width: 580px) {
	.sp-site-header__utility-inner,
	.sp-404-shell__actions {
		flex-direction: column;
	}

	.sp-404-shell {
		min-height: auto;
		padding: 0;
	}

	.sp-404-shell__inner {
		width: min(100%, var(--sp-404-card-width));
		margin-top: 0;
		padding: var(--sp-space-3);
		gap: calc(var(--sp-space-3) + var(--sp-ref-space-1));
	}

	.sp-404-shell__header h1 {
		font-size: var(--sp-type-size-heading-4);
	}

	.sp-404-search__form {
		height: calc(var(--sp-space-4) + var(--sp-ref-space-3));
		gap: var(--sp-ref-space-2);
		padding: calc(var(--sp-ref-space-2) + var(--sp-ref-space-1)) calc(var(--sp-ref-space-3) + var(--sp-ref-space-1));
		border-radius: var(--sp-layout-radius-md);
	}

	.sp-404-search__meta {
		gap: var(--sp-ref-space-2);
		padding-left: var(--sp-ref-space-2);
	}

	.sp-404-search__status {
		max-width: calc(var(--sp-space-6) * 2.125);
		font-size: var(--sp-type-size-label);
		white-space: normal;
		text-align: right;
	}

	.sp-404-search__results {
		border-radius: var(--sp-layout-radius-lg);
	}

	.sp-404-search__results-list {
		max-height: calc(var(--sp-space-6) * 7);
	}

	.sp-404-search-result__link {
		grid-template-columns: 1fr;
		gap: calc(var(--sp-ref-space-2) + var(--sp-ref-space-1));
	}

	.sp-404-search-result__media {
		width: 100%;
	}

	.sp-404-nav__list {
		grid-template-columns: 1fr;
	}

	.sp-404-nav__link {
		flex-direction: row;
		justify-content: flex-start;
		min-height: 0;
		padding: calc(var(--sp-ref-space-2) + var(--sp-ref-space-1)) calc(var(--sp-ref-space-3) + var(--sp-ref-space-1));
		text-align: left;
	}

	.sp-home-front-hero .wp-block-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.sp-home-front-hero .wp-block-button {
		display: block;
		width: 100%;
	}

	.sp-home-front-hero .wp-block-button .wp-block-button__link {
		display: block;
		width: 100%;
		text-align: center;
	}

	.sp-site-header__utility-inner {
		align-items: center;
		text-align: center;
	}

	.sp-404-shell__actions {
		align-items: stretch;
	}

	.sp-site-header__utility-copy {
		text-align: center;
	}

	.sp-site-header__utility .sp-language-segmented-control {
		margin-left: 0;
		width: 100%;
	}
}
