/*
Theme Name: Nextera Benefits Alliance
Theme URI: https://nextera.dreamhosters.com/
Author: Nextera Benefits Alliance
Description: A Gutenberg-first block theme for Nextera Benefits Alliance.
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.8.7
Text Domain: nextera-health-alliance
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Shared design tokens. Typography and colors originate in theme.json. */
:root {
	--nextera-header-height: 110px;
	--nextera-type-display: var(--wp--preset--font-size--hero);
	--nextera-type-section: var(--wp--preset--font-size--section-heading);
	--nextera-type-cta: var(--wp--preset--font-size--section-title);
	--nextera-type-subsection: var(--wp--preset--font-size--subsection-title);
	--nextera-type-card: 22px;
	--nextera-type-body-lg: var(--wp--preset--font-size--body-large);
	--nextera-type-body-md: var(--wp--preset--font-size--body-medium);
	--nextera-type-body: var(--wp--preset--font-size--body);
	--nextera-type-small: var(--wp--preset--font-size--small);
	--nextera-weight-regular: 400;
	--nextera-weight-medium: 500;
	--nextera-weight-bold: 700;
	--nextera-leading-display: 1.35;
	--nextera-leading-heading: 1.35;
	--nextera-leading-body: 1.6;
	--nextera-content-inset: 16px;
	--nextera-section-space: clamp(56px, 6vw, 72px);
	--nextera-hero-space: clamp(64px, 7vw, 88px);
	--nextera-hero-heading-gap: 24px;
	--nextera-button-pad-block: 12px;
	--nextera-button-pad-inline: 16px;
	--nextera-button-radius: 4px;
}

@media (max-width: 640px) {
	:root {
		--nextera-type-subsection: 25px;
		--nextera-type-card: 21px;
		--nextera-type-body-lg: 18px;
		--nextera-type-body-md: 17px;
		--nextera-section-space: 48px;
		--nextera-hero-space: 48px;
	}
}

@media (max-width: 900px) {
	:root {
		--nextera-header-height: 84px;
	}
}

html {
	scroll-behavior: smooth;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

b,
strong {
	font-weight: var(--nextera-weight-medium);
}

a {
	text-underline-offset: 0.18em;
}

:where(.wp-site-blocks) > * {
	margin-block-start: 0;
}

/* WordPress emits competing global flow margins as important utilities. */
.wp-site-blocks > main > * {
	margin-block-start: 0 !important;
}

.wp-site-blocks > main {
	margin-block-start: 0;
}

.wp-site-blocks > main > * + * {
	margin-block-start: -1px !important;
}

/* Keep top-level WordPress content blocks flush across every page. */
.wp-block-post-content > * + * {
	margin-block-start: -1px !important;
}

.enrichly-shell {
	position: relative;
}

.enrichly-shell::before,
.enrichly-shell::after {
	border-inline: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	content: "";
	inset-block: 0;
	pointer-events: none;
	position: absolute;
	width: min(100% - 32px, var(--wp--style--global--wide-size));
}

.enrichly-shell::before {
	left: 50%;
	transform: translateX(-50%);
}

.enrichly-shell::after {
	display: none;
}

#why-enrichly.enrichly-shell::before {
	display: none;
}

.enrichly-cta.enrichly-shell::before {
	border-color: var(--wp--preset--color--dark-border);
}

.enrichly-section {
	border-top: 1px solid var(--wp--preset--color--border);
	position: relative;
}

.enrichly-section > .wp-block-group,
.enrichly-section > .wp-block-columns {
	position: relative;
	z-index: 1;
}

.wp-site-blocks .enrichly-header {
	background-color: #08080f;
	border-bottom: 1px solid var(--wp--preset--color--dark-border);
	box-sizing: border-box;
	color: var(--wp--preset--color--white);
	height: 110px;
	min-height: 0;
	padding-block: 0;
	position: relative;
	z-index: 100;
}

.wp-site-blocks > header.wp-block-template-part {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0px);
	z-index: 100;
}

.enrichly-header__inner {
	box-sizing: border-box;
	height: 109px;
	min-height: 0;
	padding-inline: 16px;
}

.enrichly-logo img {
	display: block;
	height: auto;
	width: 110px;
}

.enrichly-header .wp-block-navigation {
	font-size: var(--wp--preset--font-size--small);
}

.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container {
	background-color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border);
	padding: 10px;
	z-index: 101;
}

.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	color: #08080f;
}

.enrichly-header .wp-block-navigation .wp-block-navigation-item__content,
.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-icon {
	color: var(--wp--preset--color--white);
}

.enrichly-header .wp-block-navigation__submenu-icon svg {
	stroke: currentColor;
}

.enrichly-header .enrichly-header__cta .wp-block-button.is-style-primary .wp-block-button__link {
	background-color: var(--wp--preset--color--white);
	color: #08080f;
}

.wp-block-button .wp-block-button__link {
	align-items: center;
	border-radius: var(--nextera-button-radius);
	box-sizing: border-box;
	display: inline-flex;
	font-size: var(--nextera-type-small);
	font-weight: var(--nextera-weight-medium);
	justify-content: center;
	line-height: 1.35;
	padding: var(--nextera-button-pad-block) var(--nextera-button-pad-inline);
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
	white-space: nowrap;
}

.wp-block-button.is-style-primary .wp-block-button__link,
.wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link {
	background-color: #08080f;
	border: 0;
	color: var(--wp--preset--color--white);
}

.enrichly-cta .wp-block-button.is-style-primary .wp-block-button__link,
.enrichly-footer .wp-block-button.is-style-primary .wp-block-button__link {
	background-color: var(--wp--preset--color--white);
	color: #08080f;
}

.wp-block-button.is-style-secondary .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid #08080f;
	color: #08080f;
}

.wp-block-button.is-style-primary .wp-block-button__link:hover,
.wp-block-button.is-style-primary .wp-block-button__link:focus-visible,
.wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link:focus-visible {
	opacity: 0.82;
}

.wp-block-button.is-style-secondary .wp-block-button__link:hover,
.wp-block-button.is-style-secondary .wp-block-button__link:focus-visible,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
	background: #08080f;
	color: var(--wp--preset--color--white);
}

.wp-block-button .wp-block-button__link:active {
	opacity: 0.7;
}

.wp-block-button .wp-block-button__link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.enrichly-hero {
	border-top: 0;
	box-sizing: border-box;
	height: 871px;
	padding-block: var(--nextera-hero-space) 32px;
}

.enrichly-hero > .wp-block-group.alignwide {
	margin-block-start: 0;
}

.enrichly-hero__copy,
.enrichly-section-heading {
	max-width: 828px;
}

.enrichly-hero .enrichly-hero__copy,
.enrichly-hero .enrichly-hero__summary {
	margin-left: 16px;
}

.enrichly-hero .enrichly-hero__copy .enrichly-eyebrow {
	color: var(--wp--preset--color--primary);
	letter-spacing: 0;
	margin-block: 0;
	text-transform: uppercase;
}

.enrichly-hero .enrichly-hero__copy .enrichly-eyebrow strong {
	color: var(--wp--preset--color--primary);
}

.enrichly-hero .enrichly-hero__title {
	color: var(--wp--preset--color--text);
	font-weight: 400;
	margin-block: 0;
}

.enrichly-hero .enrichly-hero__copy > .wp-block-buttons {
	margin-block-start: var(--nextera-hero-heading-gap);
}

.enrichly-hero__title strong,
.enrichly-leading strong {
	color: var(--wp--preset--color--ink);
	font-weight: 500;
}

.enrichly-hero .enrichly-hero__art {
	display: grid;
	grid-template-columns: minmax(0, 471fr) minmax(0, 276fr) minmax(0, 373fr);
	margin-top: clamp(44px, 5vw, 58px);
}

.enrichly-hero__art .wp-block-image {
	height: 319px;
	overflow: hidden;
}

.enrichly-hero__art img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.enrichly-hero .enrichly-hero__summary {
	margin-top: 32px;
	max-width: 828px;
}

.enrichly-star {
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.enrichly-card-grid {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	height: 260px;
}

.enrichly-card-grid > .wp-block-group {
	border-right: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	height: 260px;
	margin-block-start: 0;
	padding: 32px 16px;
}

.enrichly-card-grid > .wp-block-group:first-child {
	border-left: 1px solid var(--wp--preset--color--border);
}

.enrichly-card-grid .wp-block-image + .wp-block-heading,
.enrichly-card-grid .enrichly-ui-icon + .wp-block-heading {
	margin-block-start: 12px;
}

.enrichly-card-grid .wp-block-heading {
	margin-block-end: 0;
}

.enrichly-card-grid .wp-block-heading + p {
	margin-block-start: 16px;
}

.enrichly-icon {
	height: 48px;
	width: 48px;
}

.enrichly-icon img {
	height: 100%;
	width: 100%;
}

.enrichly-ui-icon {
	align-items: center;
	background: #B7C8D8;
	border-radius: 4px;
	color: var(--wp--preset--color--primary);
	display: inline-flex;
	flex: 0 0 48px;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.enrichly-ui-icon__svg {
	height: 26px;
	stroke-width: 1.8;
	width: 26px;
}

.enrichly-offerings {
	background: linear-gradient(105deg, rgba(74, 148, 136, 0.08), rgba(53, 92, 125, 0.05));
	box-sizing: border-box;
	height: 653px;
}

.enrichly-offerings__inner,
.enrichly-infrastructure__inner,
.enrichly-ichraos__inner,
.enrichly-success__inner {
	padding-block: 32px;
}

.enrichly-offerings__inner,
.enrichly-infrastructure__inner,
.enrichly-ichraos__inner,
.enrichly-success__inner,
.enrichly-footer__inner {
	box-sizing: border-box;
	padding-inline: 16px;
}

.enrichly-offerings__star {
	width: 82px;
}

.enrichly-offerings__star--one {
	left: calc(50% + 299px);
	top: 64px;
}

.enrichly-offerings__star--two {
	left: calc(50% - 479px);
	top: 157px;
}

.enrichly-offering-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	height: 412px;
	margin-top: 43px;
}

.enrichly-offering-card {
	display: flex;
	flex-direction: column;
	height: 379px;
	margin-block-start: 0;
}

.enrichly-offering-card:nth-child(3) {
	height: 412px;
}

.enrichly-offering-card .wp-block-image {
	border-radius: 4px;
	height: 205px;
	overflow: hidden;
}

.enrichly-offering-card .wp-block-image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.enrichly-offering-card:nth-child(1) .wp-block-image {
	background: var(--wp--preset--color--primary);
}

.enrichly-offering-card:nth-child(2) .wp-block-image {
	background: var(--wp--preset--color--aqua);
}

.enrichly-offering-card:nth-child(3) .wp-block-image {
	background: var(--wp--preset--color--navy);
}

.enrichly-offering-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-block-start: 0;
	padding-top: 16px;
}

.enrichly-offering-card__content > .wp-block-heading {
	margin-block: 0;
}

.enrichly-offering-card__content > .wp-block-heading + p {
	margin-block-start: 24px;
}

.enrichly-text-link {
	font-size: var(--wp--preset--font-size--small);
	font-weight: 500;
	margin-top: auto;
	text-decoration: none;
}

.enrichly-text-link::after {
	background: url("assets/icons/arrow.svg") center / contain no-repeat;
	content: "";
	display: inline-block;
	height: 8px;
	margin-left: 8px;
	width: 16px;
}

.enrichly-infrastructure {
	box-sizing: border-box;
	height: 581px;
	overflow: hidden;
}

.enrichly-infrastructure::after {
	background: url("assets/images/infrastructure-arc.svg") center bottom / 100% 100% no-repeat;
	bottom: 0;
	content: "";
	height: 402px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: min(1055px, calc(100% - 64px));
}

.enrichly-infrastructure__inner {
	position: relative;
	z-index: 1;
}

.enrichly-service-grid {
	display: grid;
	gap: 14px 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 26px;
}

.enrichly-service-card {
	align-items: flex-start;
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border);
	display: grid;
	gap: 18px;
	grid-template-columns: 48px 1fr;
	margin-block-start: 0;
	min-height: 135px;
	padding: 22px 16px;
}

.enrichly-service-card:nth-child(-n + 2) {
	height: 135px;
}

.enrichly-service-card:nth-child(n + 3) {
	height: 157px;
}

.enrichly-service-card .wp-block-heading {
	margin-block: 0;
}

.enrichly-service-card .wp-block-heading + p {
	margin-block-start: 8px;
}

.enrichly-service-card > .wp-block-group {
	margin: 0;
}

.enrichly-ichraos__visual {
	height: 369px;
	margin-top: 26px;
	overflow: hidden;
	pointer-events: none;
	position: relative;
	z-index: 1;
}

.enrichly-ichraos__visual img {
	display: block;
	height: auto;
	max-width: none;
	transform: translateX(-6.4%);
	width: 108%;
}

.enrichly-ichraos {
	box-sizing: border-box;
	height: 558px;
	overflow: hidden;
}

.enrichly-ichraos__inner > .wp-block-buttons {
	margin-block-start: 32px;
}

.enrichly-ichraos__inner > .enrichly-section-heading,
.enrichly-ichraos__inner > .wp-block-buttons {
	position: relative;
	z-index: 2;
}

.enrichly-success {
	background: linear-gradient(126deg, rgba(53, 92, 125, 0.04) 40%, rgba(53, 92, 125, 0.2) 100%);
	border-radius: 0;
	box-sizing: border-box;
	height: 560px;
	overflow: hidden;
}

.enrichly-success__inner {
	height: 560px;
	padding-bottom: 0;
}

.enrichly-success .enrichly-success__inner > .enrichly-leading {
	color: var(--wp--preset--color--text);
	font-size: 28px;
	font-weight: 400;
	line-height: 38px;
}

.enrichly-success .enrichly-success__inner > .enrichly-leading strong {
	color: var(--wp--preset--color--ink);
	font-weight: 500;
}

.enrichly-success__body {
	align-items: end;
	margin-top: 0;
}

.enrichly-quote {
	padding: 57px 18px 0;
	text-align: center;
}

.enrichly-success .enrichly-quote > p,
.enrichly-success .enrichly-quote > p strong {
	color: var(--wp--preset--color--primary);
	font-size: 18px;
	font-weight: 700;
}

.enrichly-success .enrichly-quote blockquote p {
	color: var(--wp--preset--color--ink);
	font-size: 28px;
	font-weight: 500;
}

.enrichly-success .enrichly-quote cite {
	color: var(--wp--preset--color--text);
	font-size: 18px;
	font-weight: 500;
}

.enrichly-success .enrichly-quote cite strong {
	color: var(--wp--preset--color--ink);
	font-weight: 500;
}

.enrichly-success__star {
	right: calc(50% - 578px);
	top: 229px;
	width: 131px;
}

.enrichly-success__portrait {
	align-self: end;
	height: 374px;
	overflow: hidden;
}

.enrichly-success__portrait img {
	height: 100%;
	object-fit: contain;
	object-position: bottom;
	transform: scaleX(-1);
	width: 100%;
}

.enrichly-pb-hero,
.enrichly-pb-section,
.enrichly-pb-agency,
.enrichly-pb-cta {
	border-top: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	position: relative;
}

.wp-site-blocks .enrichly-page > * + *,
.wp-site-blocks .enrichly-page .wp-block-post-content > * + *,
.wp-site-blocks .nextera-member-enablement .wp-block-post-content > * + *,
.wp-site-blocks .nextera-new-model-page .wp-block-post-content > * + *,
.wp-site-blocks .enrichly-pb-page > * + * {
	margin-block-start: -1px;
}

.wp-site-blocks .enrichly-ichra-page > * + * {
	margin-block-start: -1px;
}

.wp-site-blocks .enrichly-admin-page > * + *,
.wp-site-blocks .enrichly-ee-page > * + * {
	margin-block-start: -1px;
}

.enrichly-why-content {
	margin-block-start: 0;
}

.enrichly-why-section {
	border-top: 0;
	box-sizing: border-box;
}

.enrichly-why-section__inner {
	box-sizing: border-box;
	padding: 64px 16px 80px;
}

.enrichly-why-eyebrow {
	color: var(--wp--preset--color--primary);
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

.enrichly-why-heading {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-display);
	margin: 8px 0 0;
	max-width: 828px;
}

.enrichly-why-heading strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.enrichly-comparison-table {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border);
	margin: 48px 0 0;
	overflow-x: auto;
	width: 100%;
}

.enrichly-comparison-table table {
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	min-width: 840px;
	table-layout: fixed;
	width: 100%;
}

.enrichly-comparison-table th,
.enrichly-comparison-table td {
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--border);
	border-right: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	padding: 24px 28px;
	text-align: left;
	vertical-align: top;
}

.enrichly-comparison-table tr > :last-child {
	border-right: 0;
}

.enrichly-comparison-table thead {
	border-bottom: 0;
}

.enrichly-comparison-table tbody tr:last-child td {
	border-bottom: 0;
}

.enrichly-comparison-table thead th {
	background: rgba(53, 92, 125, 0.035);
	color: var(--wp--preset--color--ink);
	font-size: 18px;
	font-weight: 600;
}

.enrichly-comparison-table thead th:first-child {
	background: var(--wp--preset--color--white);
	width: 28%;
}

.enrichly-comparison-table thead th:nth-child(2) {
	color: var(--wp--preset--color--primary);
}

.enrichly-comparison-table tbody td {
	background: var(--wp--preset--color--white);
	color: var(--wp--preset--color--text);
	font-size: 16px;
	line-height: 1.5;
}

.enrichly-comparison-table tbody td:first-child {
	color: var(--wp--preset--color--ink);
	font-weight: 600;
}

.enrichly-comparison-table tbody td:last-child {
	background: rgba(53, 92, 125, 0.025);
}

.enrichly-partner-page {
	border-top: 0;
	box-sizing: border-box;
}

.enrichly-partner-page__inner {
	box-sizing: border-box;
	padding: 64px 16px 80px;
}

.enrichly-partner-eyebrow {
	color: var(--wp--preset--color--primary);
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

.enrichly-partner-heading {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-display);
	margin: 8px 0 0;
	max-width: 828px;
}

.enrichly-partner-heading strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.enrichly-partner-form-wrap {
	background: linear-gradient(105deg, rgba(74, 148, 136, 0.055), rgba(53, 92, 125, 0.06));
	border: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	margin-top: 48px;
	padding: 32px;
}

.enrichly-partner-form__notice {
	border: 1px solid currentColor;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 24px;
	padding: 16px;
}

.enrichly-partner-form__notice--success {
	background: rgba(74, 148, 136, 0.08);
	color: #2B625A;
}

.enrichly-partner-form__notice--error {
	background: rgba(169, 45, 45, 0.06);
	color: #922f2f;
}

.enrichly-contact-details {
	border-bottom: 1px solid var(--wp--preset--color--border);
	display: grid;
	gap: 24px 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 32px;
	padding-bottom: 32px;
}

.enrichly-contact-details__item h2 {
	color: var(--wp--preset--color--ink);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0 0 12px;
}

.enrichly-contact-details__item address,
.enrichly-contact-details__item p {
	color: var(--wp--preset--color--text);
	font-size: 16px;
	font-style: normal;
	line-height: 1.55;
	margin: 0;
}

.enrichly-contact-details__item p + p {
	margin-top: 8px;
}

.enrichly-contact-details__item a {
	color: var(--wp--preset--color--primary);
	font-weight: 600;
}

.enrichly-partner-form__grid {
	display: grid;
	gap: 24px 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enrichly-partner-field {
	margin: 0;
}

.enrichly-partner-field--full {
	grid-column: 1 / -1;
}

.enrichly-partner-field label {
	color: var(--wp--preset--color--ink);
	display: block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 8px;
}

.enrichly-partner-field input,
.enrichly-partner-field select,
.enrichly-partner-field textarea {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 4px;
	box-sizing: border-box;
	color: var(--wp--preset--color--ink);
	font: inherit;
	font-size: 16px;
	line-height: 1.4;
	padding: 13px 14px;
	width: 100%;
}

.enrichly-partner-field input,
.enrichly-partner-field select {
	height: 52px;
}

.enrichly-partner-field select {
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2318192f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-position: right 24px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 56px;
}

.enrichly-partner-field textarea {
	min-height: 140px;
	resize: vertical;
}

.enrichly-partner-field input:focus,
.enrichly-partner-field select:focus,
.enrichly-partner-field textarea:focus {
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 2px rgba(53, 92, 125, 0.16);
	outline: 0;
}

.enrichly-partner-form__honeypot {
	height: 1px;
	left: -10000px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.enrichly-partner-form__submit {
	background: var(--wp--preset--color--primary);
	border: 0;
	border-radius: 4px;
	color: var(--wp--preset--color--white);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	margin-top: 24px;
	padding: 14px 18px;
}

.enrichly-partner-form__submit:hover,
.enrichly-partner-form__submit:focus-visible {
	opacity: 0.82;
}

.enrichly-partner-form__submit:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

.nextera-contact-page {
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.wp-site-blocks .nextera-contact-page .wp-block-post-content > * + * {
	margin-block-start: -1px;
}

.nextera-contact-page .enrichly-partner-page__inner {
	padding-block: var(--nextera-hero-space) 80px;
}

.nextera-contact-page .enrichly-partner-heading {
	margin-top: 0;
	max-width: 980px;
}

.nextera-contact-page .enrichly-partner-form-wrap {
	background: var(--wp--preset--color--primary-lightest);
	margin-top: var(--nextera-section-gap, 48px);
}

.nextera-contact-page .enrichly-partner-form__submit {
	background: #08080f;
	border: 1px solid #08080f;
	font-size: 16px;
	padding: 14px 20px;
}

.nextera-contact-page .enrichly-partner-form__submit:hover,
.nextera-contact-page .enrichly-partner-form__submit:focus-visible {
	background: var(--wp--preset--color--white);
	color: #08080f;
	opacity: 1;
}

.nextera-contact-page .enrichly-partner-form__submit:focus-visible {
	outline-color: #08080f;
}

.wp-site-blocks .nextera-faq-page .wp-block-post-content > * + * {
	margin-block-start: -1px;
}

.nextera-faq-hero {
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-faq-hero__inner {
	box-sizing: border-box;
	padding: var(--nextera-hero-space) var(--nextera-content-inset);
}

.nextera-faq-hero h1 {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-display);
	margin: 0;
	max-width: 980px;
}

.nextera-faq-list {
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-faq-list__inner {
	border-left: 1px solid var(--wp--preset--color--border);
	border-right: 1px solid var(--wp--preset--color--border);
}

.nextera-faq-item {
	border-bottom: 1px solid var(--wp--preset--color--border);
	margin: 0;
}

.nextera-faq-item:last-child {
	border-bottom: 0;
}

.nextera-faq-item[open] {
	background: var(--wp--preset--color--primary-lightest);
}

.nextera-faq-item summary {
	color: var(--wp--preset--color--ink);
	cursor: pointer;
	font-size: var(--nextera-type-card);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-heading);
	list-style: none;
	padding: 28px 72px 28px 32px;
	position: relative;
}

.nextera-faq-item summary::-webkit-details-marker {
	display: none;
}

.nextera-faq-item summary::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	height: 10px;
	position: absolute;
	right: 34px;
	top: 31px;
	transform: rotate(45deg);
	transition: transform 180ms ease, top 180ms ease;
	width: 10px;
}

.nextera-faq-item[open] summary::after {
	top: 36px;
	transform: rotate(225deg);
}

.nextera-faq-item summary:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: -4px;
}

.nextera-faq-item > p {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-md);
	line-height: var(--nextera-leading-body);
	margin: 0;
	max-width: 920px;
	padding: 0 72px 28px 32px;
}

.nextera-faq-item > p + p {
	margin-top: -12px;
}

.nextera-faq-item > ul {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-md);
	line-height: var(--nextera-leading-body);
	margin: 0;
	padding: 0 72px 28px 56px;
}

.nextera-faq-item > ul + p {
	margin-top: -12px;
}

@media (max-width: 640px) {
	.nextera-faq-item summary {
		padding: 24px 56px 24px var(--nextera-content-inset);
	}

	.nextera-faq-item summary::after {
		right: 22px;
		top: 28px;
	}

	.nextera-faq-item[open] summary::after {
		top: 33px;
	}

	.nextera-faq-item > p {
		padding: 0 24px 24px var(--nextera-content-inset);
	}

	.nextera-faq-item > ul {
		padding: 0 24px 24px 38px;
	}
}

.enrichly-pb-hero {
	border-top: 0;
}

.enrichly-pb-hero__inner {
	align-items: center;
	box-sizing: border-box;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 684px) minmax(320px, 1fr);
	min-height: 620px;
	padding: 64px 16px;
}

.enrichly-pb-hero__copy,
.enrichly-pb-hero__visual,
.enrichly-pb-card,
.enrichly-pb-agency__heading,
.enrichly-pb-agency__panel {
	margin-block-start: 0;
}

.enrichly-pb-hero .enrichly-eyebrow {
	color: var(--wp--preset--color--primary);
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

.enrichly-pb-hero .enrichly-eyebrow strong {
	color: inherit;
}

.enrichly-pb-hero__title {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-display);
	margin: 8px 0 0;
}

.enrichly-pb-hero__summary {
	color: var(--wp--preset--color--text);
	font-size: 20px;
	line-height: 1.5;
	margin: 24px 0 0;
	max-width: 660px;
}

.enrichly-pb-hero__copy > .wp-block-buttons {
	margin-top: 24px;
}

.enrichly-pb-hero__visual {
	align-items: center;
	background: var(--wp--preset--color--primary);
	border-radius: 4px;
	box-sizing: border-box;
	display: flex;
	height: 360px;
	justify-content: center;
	overflow: hidden;
	padding: 32px;
}

.enrichly-pb-hero__visual .wp-block-image {
	height: 100%;
	margin: 0;
	width: 100%;
}

.enrichly-pb-hero__visual img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.enrichly-about-hero .enrichly-pb-hero__inner {
	grid-template-columns: minmax(0, 1fr);
	min-height: 560px;
}

.enrichly-about-hero .enrichly-pb-hero__copy {
	max-width: 960px;
}

.enrichly-success-stories-hero .enrichly-pb-hero__inner {
	grid-template-columns: minmax(0, 1fr);
	min-height: 320px;
	padding-block: 48px;
}

.enrichly-success-stories-hero .enrichly-pb-hero__copy {
	max-width: 828px;
}

.enrichly-success-stories-list {
	margin: 0;
}

.enrichly-success-story-row {
	align-items: center;
	border-bottom: 1px solid var(--wp--preset--color--border);
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	margin: 0;
	min-height: 136px;
	padding: 32px 0;
}

.enrichly-success-stories-page .enrichly-pb-value .enrichly-pb-section__inner {
	padding-block: 40px;
}

.enrichly-success-story-row__heading {
	align-items: flex-start;
	display: flex;
	gap: 16px;
}

.enrichly-success-story-row__heading .enrichly-ui-icon {
	flex: 0 0 48px;
}

.enrichly-success-story-row--featured {
	align-items: start;
	padding-bottom: 40px;
	padding-top: 0;
}

.enrichly-success-story-row__heading--portrait {
	display: grid;
	gap: 24px;
}

.enrichly-success-story-row__portrait {
	align-items: flex-end;
	background: linear-gradient(135deg, rgba(74, 148, 136, 0.08), rgba(53, 92, 125, 0.12));
	display: flex;
	height: 320px;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.enrichly-success-story-row__portrait img {
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
	width: 100%;
}

.enrichly-success-story-row .enrichly-success-story-row__heading--portrait h2 {
	color: var(--wp--preset--color--primary);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 0;
	text-align: center;
}

.enrichly-success-story-row__testimonial {
	border: 0;
	margin: 0;
	padding: 0;
	text-align: center;
}

.enrichly-success-story-row__testimonial p {
	color: var(--wp--preset--color--ink);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.45;
	margin: 0;
}

.enrichly-success-story-row__testimonial cite {
	color: var(--wp--preset--color--text);
	display: block;
	font-size: 16px;
	font-style: normal;
	line-height: 1.5;
	margin-top: 18px;
}

.enrichly-success-story-row__testimonial cite strong {
	color: var(--wp--preset--color--ink);
	font-weight: 600;
}

.enrichly-success-story-row h2 {
	color: var(--wp--preset--color--ink);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.3;
	margin: 5px 0 0;
}

.enrichly-success-story-row > p,
.enrichly-success-story-row__copy p {
	color: var(--wp--preset--color--text);
	font-size: 19px;
	line-height: 1.55;
	margin: 0;
}

.enrichly-success-story-row__copy p + p {
	margin-top: 18px;
}

.enrichly-about-leadership .enrichly-pb-card {
	min-height: 260px;
}

.enrichly-about-portrait {
	background: rgba(53, 92, 125, 0.16);
	border-radius: 4px;
	height: 112px;
	margin: 0;
	overflow: hidden;
	width: 112px;
}

.enrichly-about-portrait img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.enrichly-pb-card p.enrichly-about-role {
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	margin-top: 8px;
}

.enrichly-pb-card p.enrichly-about-link {
	margin-top: 12px;
}

.enrichly-about-link a {
	align-items: center;
	background: rgba(53, 92, 125, 0.16);
	border-radius: 4px;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	transition: background-color 160ms ease, transform 160ms ease;
	width: 40px;
}

.enrichly-about-link a:hover,
.enrichly-about-link a:focus-visible {
	background: rgba(53, 92, 125, 0.26);
	transform: translateY(-1px);
}

.enrichly-about-link a:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

.enrichly-about-link img {
	display: block;
	height: 22px;
	width: 22px;
}

.enrichly-ichra-hero .enrichly-ichra-hero__visual {
	background: transparent;
	border: 0;
	border-radius: 0;
	height: clamp(180px, 19.85vw, 300px);
	padding: 0;
}

.enrichly-ichra-hero .enrichly-ichra-hero__visual img {
	object-fit: cover;
	object-position: center top;
}

.enrichly-ichra-hero .enrichly-pb-hero__inner {
	align-items: stretch;
	gap: 32px;
	grid-template-columns: minmax(0, 1fr);
	min-height: 0;
	padding-bottom: 0;
	padding-top: 48px;
}

.enrichly-ichra-hero .enrichly-pb-hero__title {
	max-width: 828px;
}

.enrichly-pb-choice {
	background: linear-gradient(105deg, rgba(74, 148, 136, 0.08), rgba(53, 92, 125, 0.08));
}

.enrichly-pb-value,
.enrichly-pb-agency {
	background: var(--wp--preset--color--background);
}

.enrichly-pb-section__inner {
	box-sizing: border-box;
	padding: 64px 16px;
}

.enrichly-pb-leading {
	color: var(--wp--preset--color--text);
	font-size: 28px;
	font-weight: 400;
	line-height: 38px;
	margin: 0;
	max-width: 920px;
}

.enrichly-pb-leading strong {
	color: var(--wp--preset--color--ink);
	font-weight: 500;
}

.enrichly-ichra-section-summary {
	color: var(--wp--preset--color--text);
	font-size: 18px;
	line-height: 1.5;
	margin: 16px 0 0;
	max-width: 920px;
}

.enrichly-pb-card-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 40px;
}

.enrichly-pb-card-grid.enrichly-admin-service-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enrichly-pb-card {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	min-height: 240px;
	padding: 24px;
}

.enrichly-pb-card .enrichly-icon {
	margin: 0;
}

.enrichly-pb-card > .enrichly-ui-icon {
	margin: 0;
}

.enrichly-pb-card .wp-block-heading {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.35;
	margin: 16px 0 0;
}

.enrichly-pb-card p {
	color: var(--wp--preset--color--text);
	font-size: 16px;
	line-height: 1.4;
	margin: 16px 0 0;
}

.enrichly-ichra-delivery__grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.enrichly-ichra-delivery__grid > .enrichly-pb-card:nth-child(-n + 3) {
	grid-column: span 2;
}

.enrichly-ichra-delivery__grid > .enrichly-pb-card:nth-child(n + 4) {
	grid-column: span 3;
}

.enrichly-pb-agency__inner {
	align-items: stretch;
	box-sizing: border-box;
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 64px 16px;
}

.enrichly-pb-agency__heading {
	padding: 24px 0;
}

.enrichly-pb-agency__heading .wp-block-heading {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
}

.enrichly-pb-agency__heading p {
	color: var(--wp--preset--color--text);
	font-size: 18px;
	line-height: 1.5;
	margin: 24px 0 0;
}

.enrichly-pb-agency__panel {
	align-items: center;
	background: var(--wp--preset--color--primary);
	box-sizing: border-box;
	display: flex;
	min-height: 280px;
	padding: 40px;
}

.enrichly-pb-agency__panel p,
.enrichly-pb-agency__panel strong {
	color: var(--wp--preset--color--white);
}

.enrichly-pb-agency__panel p {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.45;
	margin: 0;
}

.enrichly-pb-agency__panel strong {
	font-weight: 500;
}

.enrichly-pb-cta {
	background: var(--wp--preset--color--ink);
	border-color: var(--wp--preset--color--dark-border);
	color: var(--wp--preset--color--white);
	overflow: hidden;
}

.enrichly-pb-cta__inner {
	box-sizing: border-box;
	margin-block-start: 0;
	max-width: 738px;
	min-height: 400px;
	padding: 96px 16px;
	position: relative;
	z-index: 1;
}

.enrichly-pb-cta__inner .wp-block-heading {
	color: var(--wp--preset--color--white);
	font-size: 32px;
	font-weight: 500;
	margin: 0;
}

.enrichly-pb-cta__inner > p {
	color: var(--wp--preset--color--white);
	font-size: 18px;
	line-height: 1.5;
	margin: 16px 0 0;
}

.enrichly-pb-cta__inner > .wp-block-buttons {
	gap: 8px;
	margin-top: 24px;
}

.enrichly-pb-cta .enrichly-star--one {
	left: calc(50% - 478px);
	top: 48px;
	width: 82px;
}

.enrichly-pb-cta .enrichly-star--two {
	right: calc(50% - 480px);
	top: 192px;
	width: 179px;
}

.enrichly-cta {
	--wp--preset--color--dark-border: #213D59;
	background-color: #08080f;
	border-bottom: 1px solid var(--wp--preset--color--dark-border);
	border-top: 1px solid var(--wp--preset--color--dark-border);
	overflow: hidden;
	padding-block: 0;
	position: relative;
}

.enrichly-cta__inner {
	height: 438px;
	margin-block-start: 0;
	min-height: 438px;
	padding-block: 0;
}

.enrichly-cta__copy {
	max-width: 706px;
}

.enrichly-cta__summary {
	color: var(--wp--preset--color--white);
	font-size: 18px;
	line-height: 1.5;
	margin: 16px 0 0;
}

.enrichly-cta__summary + .wp-block-buttons {
	margin-block-start: 24px;
}

.enrichly-cta .enrichly-cta__copy .wp-block-heading {
	color: var(--wp--preset--color--white);
	font-size: var(--nextera-type-cta);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-heading);
}

h1.enrichly-split-heading,
h2.enrichly-split-heading,
.enrichly-cta .enrichly-cta__copy h2.enrichly-split-heading {
	color: var(--wp--preset--color--text);
	font-weight: var(--nextera-weight-regular);
}

h1.enrichly-split-heading {
	font-size: var(--nextera-type-display);
	line-height: var(--nextera-leading-display);
}

h1.enrichly-split-heading strong,
h2.enrichly-split-heading strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.enrichly-cta .enrichly-cta__copy h2.enrichly-split-heading,
.enrichly-cta .enrichly-cta__copy h2.enrichly-split-heading strong {
	color: var(--wp--preset--color--white);
}

.enrichly-cta .enrichly-star--one {
	left: calc(50% - 478px);
	top: 50px;
	width: 82px;
}

.enrichly-cta .enrichly-star--two {
	bottom: -1px;
	right: calc(50% - 480px);
	width: 179px;
}

.enrichly-footer {
	--wp--preset--color--dark-border: #213D59;
	background-color: #08080f;
	border-top: 1px solid var(--wp--preset--color--dark-border);
	box-sizing: border-box;
	color: var(--wp--preset--color--white);
	padding-block: 0;
}

.enrichly-footer__inner {
	padding-block: 64px 22px;
}

.enrichly-footer__grid {
	align-items: start;
	display: grid;
	gap: 0;
	grid-template-columns: 180fr 292fr 292fr 193fr 163fr;
}

.enrichly-footer__grid > .wp-block-buttons {
	align-items: flex-start;
}

.enrichly-footer__grid .wp-block-heading {
	color: var(--wp--preset--color--white);
	font-size: 14px;
	font-weight: 500;
	margin-block: 0 10px;
}

.enrichly-footer__grid .wp-block-list + .wp-block-heading {
	margin-block-start: 16px;
}

.enrichly-footer a {
	color: var(--wp--preset--color--white);
	text-decoration: none;
}

.enrichly-footer__grid li,
.enrichly-footer__grid li a {
	color: var(--wp--preset--color--white);
	font-size: 14px;
	font-weight: 400;
}

.enrichly-footer a:not(.wp-block-button__link):hover {
	text-decoration: underline;
}

.enrichly-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.enrichly-footer li + li {
	margin-top: 10px;
}

.enrichly-footer__legal {
	border-top: 1px solid var(--wp--preset--color--dark-border);
	box-sizing: border-box;
	height: 92px;
	margin-block-start: 0;
	padding-block: 0;
}

.enrichly-footer__legal p,
.enrichly-footer__legal a {
	color: var(--wp--preset--color--white);
	font-size: 14px;
	font-weight: 500;
}

.enrichly-footer__legal > .wp-block-group {
	align-items: center;
	box-sizing: border-box;
	height: 91px;
}

.enrichly-archive-card {
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding-block: 32px;
}

@media (min-width: 901px) {
	.has-section-title-font-size {
		line-height: 38px;
	}

	.has-card-title-font-size {
		line-height: 33px;
	}

	.enrichly-section .enrichly-star {
		margin-block-start: 0;
	}

	.enrichly-header__inner {
		position: relative;
	}

	.enrichly-header .enrichly-header__inner .enrichly-logo {
		height: 35px;
		left: 16px;
		line-height: 0;
		margin: 0;
		position: absolute;
		top: 35px;
		width: 110px;
	}

	.enrichly-header .enrichly-header__inner nav.wp-block-navigation {
		height: 19px;
		left: 50%;
		margin: 0;
		position: absolute;
		top: 44px;
		transform: translateX(-50%);
		width: auto;
	}

	.enrichly-header .wp-block-navigation__container {
		gap: 48px;
		justify-content: space-between;
		width: 100%;
	}

	.enrichly-header .enrichly-header__inner .enrichly-header__cta {
		left: auto;
		margin: 0;
		position: absolute;
		right: 16px;
		top: 32px;
	}

	.enrichly-header .enrichly-header__cta .wp-block-button__link {
		justify-content: center;
		width: 163px;
	}

	.enrichly-hero {
		padding-top: var(--nextera-hero-space);
	}

	.enrichly-hero__copy > .wp-block-buttons {
		gap: 8px;
	}

	.enrichly-hero__copy > .wp-block-buttons .wp-block-button:first-child .wp-block-button__link {
		justify-content: center;
		width: 264px;
	}

	.enrichly-hero__copy > .wp-block-buttons .wp-block-button:last-child .wp-block-button__link {
		justify-content: center;
		min-width: 235px;
		width: auto;
	}

	.enrichly-card-grid > .wp-block-group {
		padding-bottom: 32px;
		padding-left: 16px;
		padding-right: 15px;
		padding-top: 31px;
	}

	.enrichly-card-grid > .wp-block-group:first-child {
		padding-left: 15px;
		padding-right: 14px;
	}

	.enrichly-card-grid > .wp-block-group:nth-child(3) {
		transform: translateX(-1px);
		width: calc(100% + 1px);
	}

	.enrichly-offerings__inner,
	.enrichly-infrastructure__inner,
	.enrichly-ichraos__inner,
	.enrichly-success__inner {
		margin-block-start: 0;
		padding-right: 15px;
	}

	.enrichly-offerings__inner,
	.enrichly-infrastructure__inner {
		padding-top: 31px;
	}

	.enrichly-offerings__star--one {
		top: 63px;
	}

	.enrichly-offerings__star--two {
		top: 156px;
	}

	.enrichly-offering-grid {
		gap: 30px;
		grid-template-columns: repeat(3, 353px);
		margin-top: 63px;
	}

	.enrichly-offering-card:nth-child(2),
	.enrichly-offering-card:nth-child(3) {
		transform: translateX(1px);
	}

	.enrichly-offering-card__content > p:not(.enrichly-text-link),
	.enrichly-card-grid p,
	.enrichly-service-card p {
		line-height: 22px;
	}

	.enrichly-text-link {
		line-height: 19px;
	}

	.enrichly-service-grid {
		gap: 14px 17px;
		grid-template-columns: repeat(2, 552px);
		margin-top: 30px;
	}

	.enrichly-service-card {
		gap: 17px;
		padding-left: 15px;
	}

	.enrichly-service-card:first-child {
		gap: 18px;
	}

	.enrichly-service-grid + .wp-block-buttons {
		margin-block-start: 24px;
	}

	.enrichly-service-grid + .wp-block-buttons .wp-block-button__link {
		justify-content: center;
		width: 235px;
	}

	.enrichly-ichraos__inner {
		padding-top: 30px;
		position: relative;
	}

	.enrichly-ichraos__inner > .wp-block-buttons {
		margin-block-start: 32px;
	}

	.enrichly-ichraos__visual {
		left: 16px;
		margin: 0;
		position: absolute;
		top: 188px;
		width: 1121px;
	}

	.enrichly-success__inner {
		padding-top: 32px;
		position: relative;
	}

	.enrichly-success .enrichly-success__body {
		display: block;
		height: 374px;
		position: relative;
	}

	.enrichly-success__body > .wp-block-column:first-child {
		left: 19px;
		position: absolute;
		top: 57px;
		width: 729px;
		z-index: 2;
	}

	.enrichly-quote {
		padding: 0;
		width: 729px;
	}

	.enrichly-quote > p,
	.enrichly-quote blockquote,
	.enrichly-quote blockquote p,
	.enrichly-quote cite,
	.enrichly-quote > .wp-block-buttons {
		margin-bottom: 0;
	}

	.enrichly-quote > p {
		margin-top: 0;
	}

	.enrichly-quote blockquote {
		margin-top: 14px;
	}

	.enrichly-quote blockquote p {
		line-height: 38px;
		margin-top: 0;
	}

	.enrichly-quote cite {
		display: block;
		font-size: 18px;
		line-height: 25px;
		margin-top: 14px;
	}

	.enrichly-quote > .wp-block-buttons {
		margin-top: 24px;
	}

	.enrichly-quote > .wp-block-buttons .wp-block-button__link {
		justify-content: center;
		width: 210px;
	}

	.enrichly-success__body > .wp-block-column:last-child {
		height: 374px;
		left: 640px;
		position: absolute;
		top: 0;
		width: 426px;
		z-index: 1;
	}

	.enrichly-success__portrait {
		height: 374px;
		margin: 0;
		width: 426px;
	}

	.enrichly-success__portrait img {
		height: 154%;
		object-fit: fill;
		transform: translateY(-20%) scaleX(-1);
		width: 100%;
	}

	.enrichly-cta__inner {
		position: relative;
	}

	.enrichly-cta__copy {
		left: 50%;
		position: absolute;
		top: 143px;
		transform: translateX(-50%);
		width: 706px;
	}

	.enrichly-cta__copy > .wp-block-buttons {
		margin-block-start: 24px;
	}

	.enrichly-cta .enrichly-star--one {
		top: 49px;
	}

	.enrichly-cta .enrichly-star--two {
		bottom: auto;
		top: 230px;
	}

	.enrichly-footer__inner {
		height: 311px;
		padding-bottom: 0;
	}

	.enrichly-footer__grid > * {
		margin-block-start: 0;
	}

	.enrichly-footer .enrichly-logo img {
		transform: translateX(1px);
	}

	.enrichly-footer__legal > .wp-block-group {
		align-items: flex-start;
		box-sizing: border-box;
		padding: 31px 15px 0 17px;
		position: relative;
	}

	.enrichly-footer__legal > .wp-block-group > p {
		left: 17px;
		margin: 0;
		position: absolute;
		top: 31px;
	}

	.enrichly-footer__legal > .wp-block-group > .wp-block-group {
		height: 20px;
		left: 907px;
		margin: 0;
		position: absolute;
		top: 31px;
		width: 230px;
	}

	.enrichly-footer__legal > .wp-block-group > .wp-block-group p {
		margin: 0;
		position: absolute;
		top: 0;
	}

	.enrichly-footer__legal > .wp-block-group > .wp-block-group p:first-child {
		left: 0;
	}

	.enrichly-footer__legal > .wp-block-group > .wp-block-group p:last-child {
		left: 115px;
	}
}

@media (min-width: 901px) and (max-width: 1199px) {
	.enrichly-success__body {
		height: 374px;
		overflow: hidden;
		position: relative;
	}

	.enrichly-success__body > .wp-block-column:first-child {
		left: 2%;
		top: 57px;
		width: 65%;
	}

	.enrichly-success .enrichly-quote {
		width: 100%;
	}

	.enrichly-success__body > .wp-block-column:last-child {
		left: auto;
		right: 0;
		width: 39%;
	}

	.enrichly-success .enrichly-success__portrait {
		position: relative;
		width: 100%;
	}

	.enrichly-success .enrichly-success__portrait img {
		bottom: 0;
		height: auto;
		position: absolute;
		transform: scaleX(-1);
		width: 100%;
	}

	.enrichly-success .enrichly-success__star {
		left: auto;
		right: 0;
	}
}

@media (max-width: 900px) {
	.enrichly-header,
	.enrichly-header__inner {
		height: 84px;
	}

	.enrichly-header__inner {
		min-height: 84px;
	}

	.enrichly-header {
		min-height: 84px;
	}

	.enrichly-header .enrichly-header__cta {
		display: none;
	}

	.enrichly-hero,
	.enrichly-offerings,
	.enrichly-infrastructure,
	.enrichly-ichraos,
	.enrichly-success,
	.enrichly-success__inner,
	.enrichly-cta {
		height: auto;
	}

	.enrichly-hero {
		padding-bottom: 48px;
	}

	.enrichly-hero > .wp-block-group.alignwide {
		box-sizing: border-box;
		padding-inline: 16px;
	}

	.enrichly-hero .enrichly-hero__copy,
	.enrichly-hero .enrichly-hero__summary {
		margin-left: 0;
	}

	.enrichly-card-grid,
	.enrichly-offering-grid {
		height: auto;
		grid-template-columns: 1fr;
	}

	.enrichly-card-grid > .wp-block-group,
	.enrichly-card-grid > .wp-block-group:first-child {
		border-bottom: 1px solid var(--wp--preset--color--border);
		border-inline: 1px solid var(--wp--preset--color--border);
		height: auto;
	}

	.enrichly-offering-card {
		height: auto;
		min-height: 412px;
	}

	.enrichly-service-grid {
		grid-template-columns: 1fr;
	}

	.enrichly-service-card:nth-child(n) {
		height: auto;
		min-height: 135px;
	}

	.enrichly-ichraos__visual {
		height: auto;
	}

	.enrichly-ichraos__visual img {
		max-width: 100%;
		transform: none;
		width: 100%;
	}

	.enrichly-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.enrichly-footer__brand {
		grid-column: 1 / -1;
	}

	.enrichly-success__body {
		align-items: center;
		flex-direction: column;
	}

	.enrichly-success__portrait {
		max-width: 420px;
		width: 100%;
	}

	.enrichly-success__star,
	.enrichly-offerings__star,
	.enrichly-cta .enrichly-star {
		display: none;
	}

	.enrichly-cta__inner {
		height: auto;
		min-height: 400px;
	}

	.enrichly-pb-hero__inner,
	.enrichly-pb-agency__inner {
		grid-template-columns: 1fr;
	}

	.enrichly-pb-hero__inner,
	.enrichly-pb-section__inner,
	.enrichly-pb-agency__inner,
	.enrichly-why-section__inner,
	.enrichly-partner-page__inner {
		padding: 48px 16px;
	}

	.enrichly-pb-hero__inner {
		gap: 40px;
		min-height: 0;
	}

	.enrichly-pb-card-grid,
	.enrichly-pb-card-grid.enrichly-admin-service-grid {
		grid-template-columns: 1fr;
	}

	.enrichly-success-story-row {
		gap: 24px;
		grid-template-columns: 1fr;
	}

	.enrichly-success-story-row__portrait {
		max-width: 420px;
	}

	.enrichly-ichra-delivery__grid > .enrichly-pb-card:nth-child(n) {
		grid-column: 1 / -1;
	}

	.enrichly-pb-card {
		min-height: 0;
	}

	.enrichly-pb-agency__heading {
		padding: 0;
	}
}

@media (max-width: 640px) {
	.enrichly-shell::after {
		display: none;
	}

	.enrichly-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
		align-items: center;
		gap: 32px;
	}

	.enrichly-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0;
	}

	.enrichly-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content {
		font-size: 16px;
		font-weight: 500;
	}

	.enrichly-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-icon {
		display: none;
	}

	.enrichly-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
		align-items: center;
		border: 0;
		display: flex;
		flex-direction: column;
		gap: 6px;
		margin-top: 6px;
		padding: 0;
		position: static;
		width: auto;
	}

	.enrichly-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
		font-size: 14px;
		font-weight: 400;
	}

	.enrichly-hero {
		padding-top: var(--nextera-hero-space);
	}

	.enrichly-hero .enrichly-hero__art {
		display: grid;
		grid-template-columns: 1.3fr 0.8fr;
	}

	.enrichly-hero__art .wp-block-column:nth-child(1) {
		grid-column: 1 / -1;
	}

	.enrichly-hero__art .wp-block-image {
		height: 220px;
	}

	.enrichly-service-card {
		grid-template-columns: 40px 1fr;
	}

	.enrichly-service-card .enrichly-icon,
	.enrichly-service-card .enrichly-ui-icon {
		flex-basis: 40px;
		height: 40px;
		width: 40px;
	}

	.enrichly-service-card .enrichly-ui-icon__svg {
		height: 22px;
		width: 22px;
	}

	.enrichly-footer__grid {
		grid-template-columns: 1fr;
		row-gap: 32px;
	}

	.enrichly-footer__grid > * {
		margin-block-start: 0;
	}

	.enrichly-footer__grid .enrichly-footer__category,
	.enrichly-footer__grid .enrichly-footer__category a {
		font-size: 16px;
	}

	.enrichly-footer__grid .enrichly-footer__category {
		margin-block: 0 6px;
	}

	.enrichly-footer__grid .wp-block-list + .enrichly-footer__category {
		margin-block-start: 32px;
	}

	.enrichly-footer__grid li + li {
		margin-top: 6px;
	}

	.enrichly-footer__brand {
		grid-column: auto;
	}

	.enrichly-footer__legal > .wp-block-group {
		align-items: flex-start;
		flex-direction: column;
	}

	.enrichly-cta__inner {
		height: auto;
		min-height: 360px;
		padding-block: 72px;
	}

	.enrichly-pb-hero__title {
		font-size: 34px;
	}

	.enrichly-why-heading {
		font-size: 34px;
	}

	.enrichly-partner-form-wrap {
		padding: 24px;
	}

	.enrichly-contact-details {
		grid-template-columns: 1fr;
	}

	.enrichly-partner-form__grid {
		grid-template-columns: 1fr;
	}

	.enrichly-partner-field--full {
		grid-column: auto;
	}

	.enrichly-pb-hero__summary {
		font-size: 18px;
	}

	.enrichly-pb-hero__visual {
		height: 240px;
		padding: 20px;
	}

	.enrichly-pb-leading {
		font-size: 24px;
		line-height: 1.4;
	}

	.enrichly-pb-card-grid {
		margin-top: 32px;
	}

	.enrichly-pb-card {
		padding: 20px;
	}

	.enrichly-pb-agency__heading .wp-block-heading,
	.enrichly-pb-cta__inner .wp-block-heading {
		font-size: 28px;
	}

	.enrichly-pb-agency__panel {
		min-height: 0;
		padding: 24px;
	}

	.enrichly-pb-agency__panel p {
		font-size: 20px;
	}

	.enrichly-pb-cta__inner {
		min-height: 360px;
		padding: 72px 16px;
	}

	.enrichly-pb-cta .enrichly-star {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.wp-block-button .wp-block-button__link {
		transition: none;
	}
}

/* Nextera homepage and brand-specific components. */
.nextera-logo {
	margin: 0;
}

.nextera-logo img {
	display: block;
	filter: invert(1);
	height: auto;
}

@media (min-width: 901px) {
	.nextera-home .enrichly-cta__copy {
		max-width: 920px;
		width: 920px;
	}
}

.nextera-home .enrichly-hero {
	height: auto;
	min-height: 790px;
}

.nextera-home .enrichly-hero__title {
	max-width: 828px;
}

.nextera-home .enrichly-hero--image {
	align-items: flex-end;
	isolation: isolate;
	padding: 0;
}

.nextera-home .enrichly-hero--image .wp-block-cover__background {
	background:
		linear-gradient(90deg, rgba(8, 8, 15, 0.68) 0%, rgba(8, 8, 15, 0.46) 52%, rgba(8, 8, 15, 0.26) 100%),
		linear-gradient(0deg, rgba(8, 8, 15, 0.4) 0%, rgba(8, 8, 15, 0.06) 58%);
	/* Core's dim-level utilities are important; these two values intentionally replace them. */
	background-color: transparent !important;
	opacity: 1 !important;
	z-index: 1;
}

.nextera-home .enrichly-hero--image .wp-block-cover__image-background {
	filter: blur(var(--nextera-hero-blur, 0px));
	object-position: center center;
	transform: scale(1.04);
	transform-origin: center;
}

.is-style-hero-blur-0 { --nextera-hero-blur: 0px; }
.is-style-hero-blur-4 { --nextera-hero-blur: 4px; }
.is-style-hero-blur-8 { --nextera-hero-blur: 8px; }
.is-style-hero-blur-12 { --nextera-hero-blur: 12px; }
.is-style-hero-blur-16 { --nextera-hero-blur: 16px; }
.is-style-hero-blur-20 { --nextera-hero-blur: 20px; }

.nextera-home .enrichly-hero--image .wp-block-cover__inner-container {
	align-self: stretch;
	display: flex;
	margin: 0 auto;
	max-width: var(--wp--style--global--wide-size);
	width: 100%;
	z-index: 2;
}

.nextera-home .enrichly-hero--image__inner {
	align-self: flex-end;
	box-sizing: border-box;
	margin: 0;
	padding: 0 var(--nextera-content-inset) clamp(48px, 7vw, 72px);
	width: 100%;
}

.nextera-home .enrichly-hero--image .enrichly-hero__copy {
	margin-left: 0;
	max-width: 828px;
}

.nextera-home .enrichly-hero--image .enrichly-hero__title,
.nextera-home .enrichly-hero--image .enrichly-hero__title strong,
.nextera-home .enrichly-hero--image p,
.nextera-home .enrichly-hero--image p strong {
	/* The saved hero block carries a Gutenberg text-color utility that is also important. */
	color: var(--wp--preset--color--white) !important;
}

.nextera-home .enrichly-hero--image .enrichly-hero__title {
	/* This deliberately supersedes the saved has-hero-font-size utility. */
	font-size: clamp(44px, 4.1vw, 60px) !important;
	line-height: 1.08;
}

.nextera-home .enrichly-hero--image .wp-block-button.is-style-primary .wp-block-button__link {
	background-color: var(--wp--preset--color--white);
	color: #08080f;
}

.nextera-home .enrichly-hero--image .wp-block-button.is-style-primary .wp-block-button__link:hover,
.nextera-home .enrichly-hero--image .wp-block-button.is-style-primary .wp-block-button__link:focus-visible {
	background-color: transparent;
	box-shadow: inset 0 0 0 1px var(--wp--preset--color--white);
	color: var(--wp--preset--color--white);
	opacity: 1;
}

.nextera-hero-statement {
	background: var(--wp--preset--color--background);
	border-block: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
}

.nextera-hero-statement__inner {
	box-sizing: border-box;
	padding: clamp(48px, 6vw, 72px) var(--nextera-content-inset);
}

.nextera-hero-statement p {
	color: var(--wp--preset--color--ink);
	margin: 0;
}

.nextera-funding-ticker {
	border: 1px solid var(--wp--preset--color--border);
	margin-top: clamp(32px, 4vw, 48px);
	overflow: hidden;
}

.nextera-funding-ticker__label {
	background: var(--wp--preset--color--surface);
	border-bottom: 1px solid var(--wp--preset--color--border);
	color: var(--wp--preset--color--primary);
	font-size: 14px;
	font-weight: var(--nextera-weight-bold);
	letter-spacing: 0.08em;
	padding: 14px 20px;
	text-transform: uppercase;
}

.nextera-funding-ticker__viewport {
	background: var(--wp--preset--color--background);
	overflow: hidden;
	position: relative;
}

.nextera-funding-ticker__viewport::before,
.nextera-funding-ticker__viewport::after {
	content: "";
	height: 100%;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: clamp(24px, 5vw, 72px);
	z-index: 2;
}

.nextera-funding-ticker__viewport::before {
	background: linear-gradient(90deg, var(--wp--preset--color--background), transparent);
	left: 0;
}

.nextera-funding-ticker__viewport::after {
	background: linear-gradient(270deg, var(--wp--preset--color--background), transparent);
	right: 0;
}

.nextera-funding-ticker__track {
	animation: nextera-funding-scroll 46s linear infinite;
	display: flex;
	width: max-content;
}

.nextera-funding-ticker__viewport:hover .nextera-funding-ticker__track,
.nextera-funding-ticker__viewport:focus-within .nextera-funding-ticker__track {
	animation-play-state: paused;
}

.nextera-funding-ticker__set {
	display: flex;
}

.nextera-funding-ticker__item {
	align-items: flex-start;
	border-right: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 150px;
	padding: 24px 28px;
	width: clamp(260px, 25vw, 340px);
}

.nextera-funding-ticker__amount {
	color: var(--wp--preset--color--ink);
	font-size: clamp(32px, 3.2vw, 48px);
	font-weight: var(--nextera-weight-medium);
	letter-spacing: -0.035em;
	line-height: 1;
}

.nextera-funding-ticker__company {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body);
	font-weight: var(--nextera-weight-medium);
	line-height: 1.35;
	margin-top: 12px;
}

.nextera-funding-ticker__meta {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-small);
	line-height: 1.4;
	margin-top: 4px;
	opacity: 0.78;
}

@keyframes nextera-funding-scroll {
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nextera-funding-ticker__viewport {
		overflow-x: auto;
	}

	.nextera-funding-ticker__track {
		animation: none;
	}

	.nextera-funding-ticker__set[aria-hidden="true"] {
		display: none;
	}
}

@media (max-width: 640px) {
	.nextera-home .enrichly-hero--image {
		min-height: 650px;
	}

	.nextera-home .enrichly-hero--image .wp-block-cover__image-background {
		object-position: 42% center;
	}

	.nextera-home .enrichly-hero--image__inner {
		padding-bottom: 40px;
	}

	.nextera-home .enrichly-hero--image .enrichly-hero__title {
		font-size: 40px !important;
	}

	.nextera-funding-ticker__item {
		min-height: 136px;
		padding: 22px 24px;
		width: 260px;
	}
}

.nextera-home .enrichly-cta__copy {
	box-sizing: border-box;
	padding-inline: clamp(24px, 5vw, 64px);
}

.nextera-section {
	background: var(--wp--preset--color--background);
	border-top: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
}

.nextera-section--surface {
	background: var(--wp--preset--color--surface);
}

.nextera-section--tinted {
	background: linear-gradient(110deg, #0B1524 0%, #0F2035 52%, #132A44 100%);
}

.nextera-section__inner {
	box-sizing: border-box;
	padding: var(--nextera-section-space) var(--nextera-content-inset);
}

.nextera-challenge-stats {
	box-sizing: border-box;
	margin-top: 48px;
}

.nextera-challenge-stats__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nextera-stat-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	border-top-width: 6px;
	box-sizing: border-box;
	margin: 0;
	padding: 32px;
}

.nextera-stat-card--premiums {
	border-top-color: #7f6cff;
}

.nextera-stat-card--contributions {
	border-top-color: #43c7d1;
}

.nextera-stat-card--deductibles {
	border-top-color: #ffbd00;
}

.nextera-stat-card--sustainability {
	border-top-color: var(--wp--preset--color--primary);
}

.nextera-stat-card__label {
	color: var(--wp--preset--color--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em;
	margin: 0;
	text-transform: uppercase;
}

.nextera-stat-card__number {
	color: var(--wp--preset--color--ink);
	font-size: clamp(64px, 5.5vw, 88px);
	font-weight: 500;
	letter-spacing: -.06em;
	line-height: .95;
	margin: 16px 0 20px;
	white-space: nowrap;
}

.nextera-stat-card__value {
	display: inline-block;
}

.nextera-stat-card__suffix {
	display: inline-block;
	font-size: .42em;
	letter-spacing: -.02em;
	margin-left: .04em;
	position: relative;
	top: -.72em;
}

.nextera-stat-card__description {
	color: var(--wp--preset--color--text);
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
	max-width: 340px;
}

.nextera-challenge-stats__source {
	color: var(--wp--preset--color--text);
	font-size: 14px;
	line-height: 1.5;
	margin: 16px 0 0;
	padding-inline: 4px;
}

@media (max-width: 900px) {
	.nextera-challenge-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nextera-stat-card__number {
		font-size: clamp(64px, 18vw, 84px);
	}

	.nextera-stat-card {
		padding: 24px;
	}
}

@media (max-width: 640px) {
	.nextera-challenge-stats__grid {
		grid-template-columns: 1fr;
	}
}

.nextera-section__eyebrow {
	color: var(--wp--preset--color--primary);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.nextera-section__heading {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-section);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-heading);
	margin: 0;
	max-width: 828px;
}

.nextera-section__heading strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.nextera-section__copy {
	max-width: 828px;
}

.nextera-section__copy p {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
	margin: 24px 0 0;
}

.nextera-change-intro {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
	margin: 24px 0 0;
	max-width: 920px;
}

.nextera-change-cards {
	margin-top: 40px;
}

.nextera-change-statement {
	background: #08080f;
	border: 1px solid #08080f;
	box-sizing: border-box;
	color: var(--wp--preset--color--white);
	font-size: var(--nextera-type-section);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-heading);
	margin: 16px 0 0;
	padding: 32px;
}

@media (max-width: 640px) {
	.nextera-change-statement {
		padding: 24px;
	}
}

.nextera-possibilities__intro {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
	margin: 22px 0 0;
	max-width: 828px;
}

.nextera-possibilities {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-top: 34px;
}

.nextera-possibility {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	grid-column: span 2;
	margin: 0;
	padding: 32px;
}

.nextera-possibility:nth-child(4),
.nextera-possibility:nth-child(5) {
	grid-column: span 3;
}

.nextera-possibility__icon {
	height: 56px;
	margin: 0 0 22px;
	width: 56px;
}

.nextera-possibility__icon img {
	display: block;
	height: 56px;
	width: 56px;
}

.nextera-possibility h3 {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-card);
	font-weight: var(--nextera-weight-medium);
	line-height: 1.3;
	margin: 0;
}

.nextera-possibility > p {
	color: var(--wp--preset--color--text);
	font-size: 17px;
	line-height: 1.55;
	margin: 16px 0 0;
}

.nextera-alliance__inner {
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	padding-bottom: 0;
}

.nextera-alliance__panel {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	padding: 40px;
}

.nextera-alliance__panel p {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
	margin: 0;
}

.nextera-alliance__panel .wp-block-buttons {
	margin-top: 28px;
}

.nextera-radial-visualization {
	height: clamp(210px, 20vw, 300px);
	margin: -40px auto 0;
	max-width: var(--wp--style--global--wide-size);
	overflow: hidden;
	pointer-events: auto;
	position: relative;
	touch-action: pan-y;
	width: calc(100% - 32px);
}

.nextera-radial-visualization canvas {
	display: block;
	height: 100%;
	width: 100%;
}

.nextera-mission-hero {
	background: var(--wp--preset--color--surface);
	border-bottom: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
}

.nextera-mission-hero__inner {
	box-sizing: border-box;
	min-height: 520px;
	padding: var(--nextera-hero-space) var(--nextera-content-inset);
}

.nextera-mission-hero__title {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-display);
	margin: 0;
	max-width: 828px;
}

.nextera-mission-hero__title strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.nextera-mission-hero__inner > .wp-block-buttons {
	margin-top: var(--nextera-hero-heading-gap);
}

.nextera-mission-intro__copy {
	max-width: 900px;
}

.nextera-mission-intro__heading {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-section);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-heading);
	margin: 0;
}

.nextera-mission-intro__copy p {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
	margin: 0;
}

.nextera-mission-intro__copy p + p {
	margin-top: 26px;
}

.nextera-mission-intro__heading + p {
	margin-top: 26px;
}

.nextera-mission-intro__copy p:last-child {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-regular);
}

/* Member Benefits */
.nextera-member-enablement__hero-inner,
.nextera-member-enablement__table-inner {
	box-sizing: border-box;
	padding: var(--nextera-section-space) var(--nextera-content-inset);
}

.nextera-member-enablement__hero-inner {
	padding-block: var(--nextera-hero-space);
}

.nextera-member-enablement__hero h1 {
	font-size: var(--nextera-type-display);
	line-height: var(--nextera-leading-display);
	margin: 0;
	max-width: 828px;
}

.nextera-member-enablement__table-inner {
	padding-bottom: var(--nextera-section-space);
	padding-top: 0;
}

.nextera-member-table {
	margin: 0 calc(-1 * var(--nextera-content-inset));
	width: calc(100% + var(--nextera-content-inset) + var(--nextera-content-inset));
}

.nextera-member-table table {
	border-collapse: collapse;
	width: 100%;
}

/* Locations We Serve */
.nextera-locations-hero {
	background: var(--wp--preset--color--surface);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-locations-hero__inner {
	box-sizing: border-box;
	padding: var(--nextera-hero-space) var(--nextera-content-inset);
}

.nextera-locations-hero__eyebrow {
	color: var(--wp--preset--color--primary);
	font-size: var(--nextera-type-small);
	font-weight: var(--nextera-weight-bold);
	letter-spacing: 0.08em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.nextera-locations-hero h1 {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-display);
	margin: 0;
	max-width: 828px;
}

.nextera-locations-hero__intro {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
	margin: var(--nextera-hero-heading-gap) 0 0;
	max-width: 680px;
}

.nextera-locations-directory {
	background: var(--wp--preset--color--white);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-locations-directory__inner {
	box-sizing: border-box;
	padding: 0 var(--nextera-content-inset) var(--nextera-section-space);
}

.nextera-locations-layout {
	border: 1px solid var(--wp--preset--color--border);
	display: grid;
	grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.4fr);
	margin: 0 calc(-1 * var(--nextera-content-inset));
	min-height: 680px;
}

.nextera-locations-list {
	border-right: 1px solid var(--wp--preset--color--border);
	display: flex;
	flex-direction: column;
}

.nextera-locations-list__heading {
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding: 28px 32px;
}

.nextera-locations-list__heading h2 {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-subsection);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-heading);
	margin: 0;
}

.nextera-locations-list__heading p {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body);
	line-height: var(--nextera-leading-body);
	margin: 12px 0 0;
}

.nextera-location-card {
	appearance: none;
	background: var(--wp--preset--color--white);
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	color: var(--wp--preset--color--text);
	cursor: pointer;
	display: block;
	font: inherit;
	padding: 24px 32px 24px 36px;
	position: relative;
	text-align: left;
	transition: background-color 160ms ease, color 160ms ease;
	width: 100%;
}

.nextera-location-card::before {
	background: transparent;
	content: "";
	inset: 0 auto 0 0;
	position: absolute;
	width: 5px;
}

.nextera-location-card:hover,
.nextera-location-card:focus-visible,
.nextera-location-card.is-active {
	background: var(--wp--preset--color--surface);
	outline: 0;
}

.nextera-location-card:focus-visible {
	box-shadow: inset 0 0 0 2px var(--wp--preset--color--primary);
}

.nextera-location-card.is-active::before {
	background: var(--wp--preset--color--secondary);
}

.nextera-location-card__name {
	color: var(--wp--preset--color--ink);
	display: block;
	font-size: var(--nextera-type-card);
	font-weight: var(--nextera-weight-medium);
	line-height: 1.35;
}

.nextera-location-card.is-active .nextera-location-card__name {
	color: var(--wp--preset--color--primary);
}

.nextera-location-card__area {
	display: block;
	font-size: var(--nextera-type-body);
	line-height: 1.5;
	margin-top: 5px;
}

.nextera-location-card__status {
	align-items: center;
	color: var(--wp--preset--color--secondary);
	display: flex;
	font-size: var(--nextera-type-small);
	font-weight: var(--nextera-weight-bold);
	gap: 8px;
	letter-spacing: 0.04em;
	margin-top: 12px;
	text-transform: uppercase;
}

.nextera-location-card__status::before {
	background: currentColor;
	border-radius: 999px;
	content: "";
	height: 8px;
	width: 8px;
}

.nextera-location-card__link {
	color: var(--wp--preset--color--primary);
	display: block;
	font-size: var(--nextera-type-small);
	font-weight: var(--nextera-weight-medium);
	margin-top: 12px;
}

.nextera-locations-list__cta {
	margin-top: auto;
	padding: 24px 32px;
}

.nextera-locations-map {
	background-color: var(--wp--preset--color--surface);
	background-image: linear-gradient(rgba(53, 92, 125, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 92, 125, 0.055) 1px, transparent 1px);
	background-size: 36px 36px;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	position: relative;
}

.nextera-locations-map__canvas {
	flex: 1;
	min-height: 560px;
	position: relative;
}

#nextera-locations-map {
	height: 100%;
	inset: 0;
	min-height: 560px;
	position: absolute;
	width: 100%;
}

.nextera-locations-map .leaflet-container {
	background: var(--wp--preset--color--surface);
	font-family: var(--wp--preset--font-family--carlito);
	z-index: 1;
}

.nextera-locations-map .leaflet-control-zoom {
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 0;
	box-shadow: none;
}

.nextera-locations-map .leaflet-control-zoom a {
	border-bottom-color: var(--wp--preset--color--border);
	color: var(--wp--preset--color--ink);
}

.nextera-locations-map .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.9);
	color: var(--wp--preset--color--text);
	font-size: 10px;
}

.nextera-map-marker {
	background: transparent;
	border: 0;
}

.nextera-map-marker__dot {
	background: var(--wp--preset--color--primary);
	border: 4px solid var(--wp--preset--color--white);
	border-radius: 999px;
	box-shadow: 0 2px 9px rgba(8, 8, 15, 0.28);
	display: block;
	height: 22px;
	transition: background-color 160ms ease, transform 160ms ease;
	width: 22px;
}

.nextera-map-marker.is-active .nextera-map-marker__dot {
	background: var(--wp--preset--color--secondary);
	transform: scale(1.3);
}

.nextera-locations-map .leaflet-popup-content-wrapper,
.nextera-locations-map .leaflet-popup-tip {
	background: var(--wp--preset--color--white);
	box-shadow: 0 8px 30px rgba(8, 8, 15, 0.18);
}

.nextera-locations-map .leaflet-popup-content-wrapper {
	border-radius: 0;
}

.nextera-locations-map .leaflet-popup-content {
	color: var(--wp--preset--color--text);
	font-family: var(--wp--preset--font-family--carlito);
	font-size: 14px;
	line-height: 1.45;
	margin: 18px 20px;
}

.nextera-locations-map .leaflet-popup-content strong {
	color: var(--wp--preset--color--ink);
	display: block;
	font-size: 17px;
	font-weight: var(--nextera-weight-medium);
	margin-bottom: 4px;
}

.nextera-map-popup__area {
	display: block;
}

.nextera-locations-map .leaflet-popup-content a {
	color: var(--wp--preset--color--primary);
	display: block;
	font-weight: var(--nextera-weight-medium);
	margin-top: 9px;
}

.nextera-locations-map__summary [data-active-url] {
	color: var(--wp--preset--color--primary);
	display: inline-block;
	font-weight: var(--nextera-weight-medium);
	margin-top: 9px;
}

.nextera-locations-map__summary {
	align-items: center;
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--wp--preset--color--border);
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 24px 32px;
}

.nextera-locations-map__summary strong,
.nextera-locations-map__summary span {
	display: block;
}

.nextera-locations-map__summary strong {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-card);
	font-weight: var(--nextera-weight-medium);
}

.nextera-locations-map__summary span {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body);
	margin-top: 3px;
}

@media (max-width: 900px) {
	.nextera-locations-layout {
		grid-template-columns: 1fr;
	}

	.nextera-locations-list {
		border-right: 0;
	}

	.nextera-locations-map {
		border-top: 1px solid var(--wp--preset--color--border);
	}

	.nextera-locations-map__canvas {
		min-height: 480px;
	}

	#nextera-locations-map {
		min-height: 480px;
	}
}

@media (max-width: 640px) {
	.nextera-locations-list__heading,
	.nextera-location-card,
	.nextera-locations-list__cta,
	.nextera-locations-map__summary {
		padding-inline: 22px;
	}

	.nextera-location-card {
		padding-left: 27px;
	}

	.nextera-locations-map__canvas {
		min-height: 390px;
	}

	#nextera-locations-map {
		min-height: 390px;
	}
}

/* Dashboard-managed location landing pages. */
.nextera-location-page {
	margin-block-start: 0;
}

.nextera-location-landing {
	background: var(--wp--preset--color--white);
	position: relative;
}

.nextera-location-landing__hero {
	background-color: var(--wp--preset--color--surface);
	background-image: linear-gradient(rgba(53, 92, 125, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 92, 125, 0.055) 1px, transparent 1px);
	background-size: 36px 36px;
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-location-landing__hero-inner,
.nextera-location-landing__story-inner,
.nextera-location-landing__communities-inner,
.nextera-location-landing__cta-inner {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: var(--wp--style--global--wide-size);
	padding-inline: var(--nextera-content-inset);
}

.nextera-location-landing__hero-inner {
	padding-block: var(--nextera-hero-space);
}

.nextera-location-landing__hero-inner.has-map {
	align-items: stretch;
	display: grid;
	gap: clamp(36px, 6vw, 96px);
	grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
	padding-block: 0;
}

/* WordPress can inject an empty paragraph after dynamic shortcode markup. */
.nextera-location-landing__hero-inner > p:empty {
	display: none;
}

.nextera-location-landing__hero-content {
	align-self: center;
}

.nextera-location-landing__hero-inner.has-map .nextera-location-landing__hero-content {
	padding-block: var(--nextera-hero-space);
}

.nextera-location-landing__hero-map-shell {
	border-inline: 1px solid var(--wp--preset--color--border);
	min-height: 420px;
	overflow: hidden;
	position: relative;
}

#nextera-location-hero-map {
	height: 100%;
	inset: 0;
	min-height: 420px;
	position: absolute;
	width: 100%;
}

.nextera-location-landing__hero-map-shell .leaflet-container {
	background: var(--wp--preset--color--surface);
	font-family: var(--wp--preset--font-family--carlito);
	z-index: 1;
}

.nextera-location-landing__hero-map-shell .leaflet-tile-pane {
	filter: saturate(0.55) brightness(0.76) contrast(1.08);
}

.nextera-location-landing__hero-map-shell .leaflet-control-zoom {
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 0;
	box-shadow: none;
}

.nextera-location-landing__hero-map-shell .leaflet-control-attribution {
	background: rgba(7, 19, 33, 0.88);
	color: var(--wp--preset--color--text);
	font-size: 10px;
}

.nextera-location-landing__hero-map-shell .leaflet-control-attribution a {
	color: var(--wp--preset--color--primary);
}

.nextera-location-landing__hero-map-shell .leaflet-popup-content-wrapper,
.nextera-location-landing__hero-map-shell .leaflet-popup-tip {
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text);
}

.nextera-location-landing__hero-map-shell .leaflet-popup-content-wrapper {
	border-radius: 0;
}

.nextera-location-landing__hero-map-shell .leaflet-popup-content {
	font-family: var(--wp--preset--font-family--carlito);
	font-size: 14px;
	line-height: 1.45;
	margin: 18px 20px;
}

.nextera-location-landing__hero-map-shell .leaflet-popup-content strong,
.nextera-location-landing__hero-map-shell .leaflet-popup-content span {
	display: block;
}

.nextera-location-landing__hero-map-shell .leaflet-popup-content strong {
	color: var(--wp--preset--color--ink);
	margin-bottom: 4px;
}

.nextera-location-landing__breadcrumb {
	align-items: center;
	color: var(--wp--preset--color--primary);
	display: flex;
	font-size: var(--nextera-type-small);
	font-weight: var(--nextera-weight-bold);
	gap: 12px;
	letter-spacing: 0.06em;
	margin-bottom: var(--nextera-hero-heading-gap);
	text-transform: uppercase;
}

.nextera-location-landing__breadcrumb a {
	color: inherit;
}

.nextera-location-landing__hero h1 {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-display);
	margin: 0;
}

.nextera-location-landing__hero p {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
	margin: 16px 0 0;
}

.nextera-location-landing__phone-button {
	margin-top: 20px;
}

.nextera-location-landing__story {
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-location-landing__story-inner {
	display: grid;
	gap: clamp(40px, 7vw, 112px);
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
	padding-block: var(--nextera-section-space);
}

.nextera-location-landing__story h2,
.nextera-location-landing__communities h2,
.nextera-location-landing__cta h2 {
	font-size: var(--nextera-type-section);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-heading);
	margin: 0;
}

.nextera-location-landing__story h2,
.nextera-location-landing__communities h2 {
	color: var(--wp--preset--color--ink);
}

.nextera-location-landing__copy {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-lg);
	line-height: var(--nextera-leading-body);
}

.nextera-location-landing__copy > * {
	margin-block: 0;
}

.nextera-location-landing__copy > * + * {
	margin-block-start: 24px;
}

.nextera-location-landing__communities {
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-location-landing__communities-inner {
	padding-block: var(--nextera-section-space);
}

.nextera-location-landing__community-grid {
	border-left: 1px solid var(--wp--preset--color--border);
	border-top: 1px solid var(--wp--preset--color--border);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 36px;
}

.nextera-location-landing__community-grid > div {
	align-items: center;
	border-bottom: 1px solid var(--wp--preset--color--border);
	border-right: 1px solid var(--wp--preset--color--border);
	color: var(--wp--preset--color--ink);
	display: flex;
	font-size: var(--nextera-type-body);
	font-weight: var(--nextera-weight-medium);
	min-height: 72px;
	padding: 16px 20px;
}

.nextera-location-landing__cta {
	background: #08080f;
	color: var(--wp--preset--color--white);
}

.nextera-location-landing__cta.enrichly-shell::before {
	border-color: var(--wp--preset--color--dark-border);
}

.nextera-location-landing__cta-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 32px;
	justify-content: center;
	padding-block: var(--nextera-section-space);
	text-align: center;
}

.nextera-location-landing__cta h2 {
	color: inherit;
	margin-inline: auto;
	max-width: 960px;
}

.nextera-location-landing__cta h2 strong {
	font-weight: var(--nextera-weight-medium);
}

.nextera-location-landing__cta .wp-block-buttons {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	justify-content: center;
	margin: 0;
}

.nextera-location-landing__cta .wp-block-button.is-style-primary .wp-block-button__link {
	background-color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--white);
	color: #08080f;
}

.nextera-location-landing__cta .wp-block-button.is-style-secondary .wp-block-button__link {
	border-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--white);
}

@media (max-width: 900px) {
	.nextera-location-landing__hero-inner.has-map {
		grid-template-columns: 1fr;
	}

	.nextera-location-landing__hero-map-shell,
	#nextera-location-hero-map {
		min-height: 360px;
	}

	.nextera-location-landing__story-inner {
		grid-template-columns: 1fr;
	}

	.nextera-location-landing__community-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.nextera-location-landing__hero-map-shell,
	#nextera-location-hero-map {
		min-height: 300px;
	}

	.nextera-location-landing__community-grid {
		grid-template-columns: 1fr;
	}

	.nextera-location-landing__cta .wp-block-buttons {
		align-items: stretch;
		flex-direction: column;
	}

	.nextera-location-landing__cta .wp-block-button,
	.nextera-location-landing__cta .wp-block-button__link {
		width: 100%;
	}
}

/* Become a Member */
.nextera-membership-hero {
	background: var(--wp--preset--color--surface);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-membership-hero__inner {
	box-sizing: border-box;
	padding: var(--nextera-hero-space) var(--nextera-content-inset);
}

.nextera-membership-hero h1 {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-display);
	margin: 0;
	max-width: 900px;
}

.nextera-membership-hero h1 strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.nextera-membership-comparison__inner {
	box-sizing: border-box;
	padding: 0 var(--nextera-content-inset) var(--nextera-section-space);
}

.nextera-membership-comparison__toolbar {
	align-items: center;
	background: var(--wp--preset--color--white);
	background-image: none;
	border: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	margin: 0 calc(-1 * var(--nextera-content-inset));
	padding: 24px var(--nextera-content-inset);
	position: sticky;
	top: calc(var(--nextera-header-height) + var(--wp-admin--admin-bar--height, 0px));
	z-index: 90;
}

.nextera-membership-comparison__toolbar h2 {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-section);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-heading);
	margin: 0;
}

.nextera-membership-comparison__toolbar .wp-block-buttons,
.nextera-membership-comparison__toolbar .wp-block-button {
	margin: 0;
}

.nextera-membership-grid {
	display: grid;
	grid-template-columns: minmax(170px, 0.72fr) repeat(3, minmax(0, 1fr));
	margin: 0 calc(-1 * var(--nextera-content-inset));
}

.nextera-membership-grid > * {
	border-bottom: 1px solid var(--wp--preset--color--border);
	border-right: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	margin: 0;
	min-width: 0;
	padding: 24px;
}

.nextera-membership-grid > :nth-child(4n) {
	border-right: 0;
}

.nextera-membership-grid__corner,
.nextera-membership-grid__label {
	background: var(--wp--preset--color--surface);
}

.nextera-membership-grid__tier {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nextera-membership-grid__tier .wp-block-image {
	aspect-ratio: 1;
	margin: 0 auto;
	max-width: 220px;
	width: 100%;
}

.nextera-membership-grid__tier .wp-block-image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.nextera-membership-grid__tier h2 {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-card);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-heading);
	margin: 0;
}

.nextera-membership-grid__label p,
.nextera-membership-grid__value p {
	font-size: var(--nextera-type-body);
	line-height: var(--nextera-leading-body);
	margin: 0;
}

.nextera-membership-grid__label p {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.nextera-membership-grid__value p {
	color: var(--wp--preset--color--text);
}

/* The New Model */
.nextera-new-model__hero {
	background: var(--wp--preset--color--surface);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.nextera-new-model__hero-inner {
	box-sizing: border-box;
	padding: var(--nextera-hero-space) var(--nextera-content-inset);
}

.nextera-new-model__hero h1 {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-display);
	font-weight: var(--nextera-weight-regular);
	line-height: var(--nextera-leading-display);
	margin: 0;
	max-width: 920px;
}

.nextera-new-model__hero h1 strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.nextera-new-model__comparison-inner {
	box-sizing: border-box;
	padding: 0 var(--nextera-content-inset) var(--nextera-section-space);
}

.nextera-new-model-table {
	margin: 0 calc(-1 * var(--nextera-content-inset));
	width: calc(100% + var(--nextera-content-inset) + var(--nextera-content-inset));
}

.nextera-new-model-table table {
	border-collapse: collapse;
	margin: 0;
	table-layout: fixed;
	width: 100%;
}

.nextera-new-model-table th,
.nextera-new-model-table td {
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--border);
	border-right: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	padding: 28px;
	text-align: left;
	vertical-align: top;
	width: 50%;
}

.nextera-new-model-table th:last-child,
.nextera-new-model-table td:last-child {
	border-right: 0;
}

.nextera-new-model-table thead th {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-card);
	font-weight: var(--nextera-weight-medium);
	line-height: var(--nextera-leading-heading);
}

.nextera-new-model-table tbody td {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-md);
	line-height: var(--nextera-leading-body);
}

.nextera-new-model-table tbody td:first-child {
	background: var(--wp--preset--color--surface);
}

.nextera-new-model-table strong {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.nextera-new-model__cta .enrichly-cta__copy {
	max-width: 840px;
}

@media (max-width: 700px) {
	.nextera-new-model-table thead {
		display: none;
	}

	.nextera-new-model-table,
	.nextera-new-model-table table,
	.nextera-new-model-table tbody,
	.nextera-new-model-table tr,
	.nextera-new-model-table td {
		display: block;
		width: 100%;
	}

	.nextera-new-model-table td {
		border-right: 0;
		padding: 22px var(--nextera-content-inset);
	}

	.nextera-new-model-table td:first-child::before,
	.nextera-new-model-table td:last-child::before {
		display: block;
		font-size: var(--nextera-type-small);
		font-weight: var(--nextera-weight-bold);
		letter-spacing: 0.03em;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.nextera-new-model-table td:first-child::before {
		content: "The Traditional Model";
	}

	.nextera-new-model-table td:last-child::before {
		content: "The New Model";
	}
}

@media (max-width: 900px) {
	.nextera-membership-grid {
		grid-template-columns: minmax(140px, 0.65fr) repeat(3, minmax(220px, 1fr));
		overflow-x: auto;
	}
}

@media (max-width: 640px) {
	.nextera-membership-comparison__toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		padding-block: 20px;
	}

	.nextera-membership-grid {
		grid-template-columns: 136px repeat(3, minmax(210px, 1fr));
		overflow-x: auto;
	}

	.nextera-membership-grid > * {
		padding: 20px var(--nextera-content-inset);
	}
}

.nextera-member-table th,
.nextera-member-table td {
	border: 0;
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding: 26px 24px;
	text-align: left;
	vertical-align: top;
}

.nextera-member-table thead th {
	border-top: 0;
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-body-md);
	font-weight: var(--nextera-weight-medium);
}

.nextera-member-table th:first-child,
.nextera-member-table td:first-child {
	padding-left: var(--nextera-content-inset);
	width: 35%;
}

.nextera-member-table th:last-child,
.nextera-member-table td:last-child {
	padding-right: var(--nextera-content-inset);
}

.nextera-member-table tbody td {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-md);
	line-height: 1.5;
}

.nextera-member-table tbody td:first-child {
	color: var(--wp--preset--color--ink);
	font-weight: var(--nextera-weight-medium);
}

.nextera-member-enablement__cta .enrichly-cta__copy {
	max-width: 920px;
}

@media (max-width: 700px) {
	.nextera-member-enablement__hero-inner,
	.nextera-member-enablement__table-inner {
		padding-inline: var(--nextera-content-inset);
	}

	.nextera-member-table thead {
		display: none;
	}

	.nextera-member-table tr,
	.nextera-member-table td {
		display: block;
		width: 100%;
	}

	.nextera-member-table tr {
		border-top: 1px solid var(--wp--preset--color--border);
		padding-block: 24px;
	}

	.nextera-member-table tbody tr:last-child {
		border-bottom: 1px solid var(--wp--preset--color--border);
	}

	.nextera-member-table td {
		border: 0;
		padding: 0 var(--nextera-content-inset);
	}

	.nextera-member-table td + td {
		margin-top: 10px;
	}
}

.nextera-mission-principles {
	border-top: 1px solid var(--wp--preset--color--border);
	margin: 32px -16px 0;
}

.nextera-mission-principle {
	border-bottom: 1px solid var(--wp--preset--color--border);
	display: grid;
	gap: 40px;
	grid-template-columns: 72px minmax(0, 1fr);
	margin: 0;
	padding: 48px 16px;
}

.nextera-mission-principle__number {
	color: var(--wp--preset--color--primary);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	margin: 4px 0 0;
}

.nextera-mission-principle__content {
	max-width: 900px;
}

.nextera-mission-principle__title {
	color: var(--wp--preset--color--ink);
	font-size: var(--nextera-type-subsection);
	font-weight: var(--nextera-weight-medium);
	line-height: 1.3;
	margin: 0;
}

.nextera-mission-principle__content > p {
	color: var(--wp--preset--color--text);
	font-size: var(--nextera-type-body-md);
	line-height: var(--nextera-leading-body);
	margin: 18px 0 0;
}

.nextera-mission-principle__content > p + p {
	margin-top: 12px;
}

.nextera-mission-principle__content > .wp-block-buttons {
	margin-top: 24px;
}

.nextera-mission-pillars {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 28px;
}

.nextera-mission-pillar {
	background: var(--wp--preset--color--primary-lightest);
	border: 1px solid var(--wp--preset--color--border);
	box-sizing: border-box;
	margin: 0;
	padding: 24px;
}

.nextera-mission-pillar h3 {
	color: var(--wp--preset--color--ink);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
}

.nextera-mission-pillar p {
	color: var(--wp--preset--color--text);
	font-size: 16px;
	line-height: 1.55;
	margin: 14px 0 0;
}

.nextera-mission-cta .enrichly-cta__copy {
	max-width: 760px;
}

.nextera-mission-cta .enrichly-cta__summary + .enrichly-cta__summary {
	margin-top: 8px;
}

.nextera-mission-cta .wp-block-buttons {
	margin-top: 24px;
}

.nextera-footer__grid {
	grid-template-columns: 1.15fr 1fr 1fr auto;
}

@media (min-width: 901px) {
	.nextera-footer .enrichly-footer__legal > .wp-block-group {
		align-items: center;
		display: flex;
		justify-content: space-between;
		padding: 0 16px;
	}

	.nextera-footer .enrichly-footer__legal > .wp-block-group > p {
		left: auto;
		margin: 0;
		position: static;
		top: auto;
	}
}

@media (max-width: 900px) {
	.nextera-home .enrichly-hero {
		min-height: 0;
	}

	.nextera-section__inner {
		padding: 48px 16px;
	}

	.nextera-possibilities {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nextera-possibility,
	.nextera-possibility:nth-child(4),
	.nextera-possibility:nth-child(5) {
		grid-column: auto;
	}

	.nextera-alliance__inner {
		grid-template-columns: 1fr;
	}

	.nextera-radial-visualization {
		height: clamp(190px, 48vw, 260px);
		margin-top: -16px;
	}

	.nextera-mission-hero__inner {
		min-height: 0;
		padding: 64px 16px;
	}

	.nextera-mission-pillars {
		grid-template-columns: 1fr;
	}

	.nextera-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nextera-footer .enrichly-footer__legal {
		height: auto;
		padding-block: 24px;
	}

	.nextera-footer .enrichly-footer__legal > .wp-block-group {
		gap: 8px;
		height: auto;
		padding-inline: 16px;
	}

	.nextera-footer .enrichly-footer__legal p {
		margin: 0;
	}
}

@media (max-width: 640px) {
	.nextera-possibilities {
		grid-template-columns: 1fr;
	}

	.nextera-possibility {
		padding: 24px;
	}

	.nextera-possibility h3 {
		font-size: var(--nextera-type-card);
	}

	.nextera-possibility__icon {
		margin-bottom: 20px;
	}

	.nextera-alliance__panel {
		padding: 28px 24px;
	}

	.nextera-mission-hero__inner {
		padding: var(--nextera-hero-space) var(--nextera-content-inset);
	}

	.nextera-mission-intro__copy p {
		font-size: var(--nextera-type-body-lg);
	}

	.nextera-mission-principle {
		gap: 14px;
		grid-template-columns: 1fr;
		padding: 36px 16px;
	}

	.nextera-mission-principle__number {
		margin: 0;
	}

	.nextera-mission-principle__title {
		font-size: var(--nextera-type-subsection);
	}

	.nextera-mission-principle__content > p {
		font-size: var(--nextera-type-body-md);
	}

	.nextera-mission-pillar {
		padding: 20px;
	}
}

/* Brand refresh: The Threshold / August 2026. */
:root {
	--nextera-brand-gold: #FFC107;
	--nextera-brand-gold-hover: #DFA900;
	--nextera-brand-purple: #6664EF;
	--nextera-brand-teal: #2BBFC0;
	--nextera-brand-green: #76BF43;
	--nextera-brand-gray: #B0BCCB;
	--nextera-brand-navy: #0A121F;
	--nextera-brand-surface: #111D2C;
	--nextera-brand-surface-raised: #172538;
}

body,
.wp-site-blocks {
	background-color: var(--nextera-brand-navy);
	color: var(--nextera-brand-gray);
	font-family: var(--wp--preset--font-family--carlito);
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading,
.enrichly-hero__title,
.enrichly-leading,
.enrichly-why-heading {
	font-family: var(--wp--preset--font-family--georgia);
	font-weight: 700;
	letter-spacing: -0.018em;
}

.wp-site-blocks .enrichly-header,
.wp-site-blocks .enrichly-footer,
.wp-site-blocks .enrichly-cta,
.wp-site-blocks .nextera-location-landing__cta {
	background-color: var(--nextera-brand-navy);
}

.wp-site-blocks .enrichly-header::after {
	background: linear-gradient(
		to bottom,
		var(--nextera-brand-gold) 0 25%,
		var(--nextera-brand-purple) 25% 50%,
		var(--nextera-brand-teal) 50% 75%,
		var(--nextera-brand-green) 75% 100%
	);
	content: "";
	inset: 0 0 0 auto;
	position: absolute;
	width: 8px;
}

.nextera-logo img,
.enrichly-logo img {
	filter: none;
	height: auto;
	max-width: min(100%, 280px);
}

.enrichly-header .nextera-logo img,
.enrichly-header .enrichly-logo img {
	width: 250px;
}

.enrichly-footer .nextera-logo img,
.enrichly-footer .enrichly-logo img {
	width: 280px;
}

.wp-block-button.is-style-primary .wp-block-button__link,
.wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link,
.enrichly-header .enrichly-header__cta .wp-block-button.is-style-primary .wp-block-button__link,
.enrichly-cta .wp-block-button.is-style-primary .wp-block-button__link,
.enrichly-footer .wp-block-button.is-style-primary .wp-block-button__link,
.nextera-home .enrichly-hero--image .wp-block-button.is-style-primary .wp-block-button__link,
.nextera-location-landing__cta .wp-block-button.is-style-primary .wp-block-button__link {
	background: var(--nextera-brand-gold);
	border-color: var(--nextera-brand-gold);
	color: var(--nextera-brand-navy);
}

.wp-block-button.is-style-secondary .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border-color: var(--nextera-brand-teal);
	color: var(--nextera-brand-teal);
}

.wp-block-button.is-style-secondary .wp-block-button__link:hover,
.wp-block-button.is-style-secondary .wp-block-button__link:focus-visible,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
	background: var(--nextera-brand-teal);
	color: var(--nextera-brand-navy);
}

.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container,
.enrichly-service-card,
.enrichly-comparison-table,
.enrichly-comparison-table thead th:first-child,
.enrichly-comparison-table tbody td,
.enrichly-pb-card,
.nextera-locations-directory,
.nextera-location-card,
.nextera-locations-map .leaflet-popup-content-wrapper,
.nextera-locations-map .leaflet-popup-tip,
.nextera-location-landing,
.nextera-membership-comparison__toolbar {
	background: var(--nextera-brand-surface);
}

.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content,
.enrichly-partner-field input,
.enrichly-partner-field select,
.enrichly-partner-field textarea {
	color: var(--wp--preset--color--ink);
}

.enrichly-partner-field input,
.enrichly-partner-field select,
.enrichly-partner-field textarea {
	background: var(--nextera-brand-surface-raised);
}

.nextera-locations-map .leaflet-control-attribution,
.nextera-locations-map__summary {
	background: rgba(17, 29, 44, 0.96);
}

.enrichly-ui-icon {
	background: rgba(43, 191, 192, 0.14);
	color: var(--nextera-brand-teal);
}

.enrichly-offerings,
.enrichly-success,
.enrichly-partner-form-shell,
.nextera-member-enablement__hero,
.nextera-mission-pillar {
	background: linear-gradient(115deg, rgba(43, 191, 192, 0.07), rgba(102, 100, 239, 0.08));
}

.nextera-possibility:nth-child(4n + 1),
.nextera-membership-tier:nth-child(4n + 1) {
	border-top-color: var(--nextera-brand-gold);
}

.nextera-possibility:nth-child(4n + 2),
.nextera-membership-tier:nth-child(4n + 2) {
	border-top-color: var(--nextera-brand-purple);
}

.nextera-possibility:nth-child(4n + 3),
.nextera-membership-tier:nth-child(4n + 3) {
	border-top-color: var(--nextera-brand-teal);
}

.nextera-possibility:nth-child(4n),
.nextera-membership-tier:nth-child(4n) {
	border-top-color: var(--nextera-brand-green);
}

::selection {
	background: var(--nextera-brand-purple);
	color: #FFFFFF;
}

@media (max-width: 900px) {
	.enrichly-header .nextera-logo img,
	.enrichly-header .enrichly-logo img {
		width: 205px;
	}
}

@media (max-width: 480px) {
	.enrichly-header .nextera-logo img,
	.enrichly-header .enrichly-logo img {
		width: 172px;
	}
}

/* Keep navigation dropdowns legible on the dark brand header. */
.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container {
	background-color: var(--nextera-brand-surface);
	border-color: var(--wp--preset--color--border);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
	min-width: 240px;
	padding: 8px;
}

.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	border-radius: 3px;
	color: var(--wp--preset--color--white);
	padding: 10px 12px;
	transition: background-color 160ms ease, color 160ms ease;
}

.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
.enrichly-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
	background-color: rgba(43, 191, 192, 0.14);
	color: var(--nextera-brand-teal);
}

@media (max-width: 900px) {
	.enrichly-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
		background-color: transparent;
		box-shadow: none;
		min-width: 0;
		padding: 0;
	}
}

/* Typography audit: keep semantic and visually styled headings in one display family. */
.wp-site-blocks h1,
.wp-site-blocks h2,
.wp-site-blocks h3,
.wp-site-blocks h4,
.wp-site-blocks h5,
.wp-site-blocks h6,
.wp-site-blocks .wp-block-heading,
.wp-site-blocks p.has-section-heading-font-size,
.wp-site-blocks p.has-subsection-title-font-size,
.nextera-faq-item summary {
	font-family: var(--wp--preset--font-family--georgia);
}

.wp-site-blocks button,
.wp-site-blocks input,
.wp-site-blocks select,
.wp-site-blocks textarea {
	font-family: var(--wp--preset--font-family--carlito);
}

/* Give every primary action the same size and interaction treatment. */
.wp-site-blocks .wp-block-button.is-style-primary .wp-block-button__link,
.wp-site-blocks .wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link,
.wp-site-blocks .enrichly-partner-form__submit {
	background: var(--nextera-brand-gold);
	border: 1px solid var(--nextera-brand-gold);
	color: var(--nextera-brand-navy);
	font-size: 16px;
	opacity: 1;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.wp-site-blocks .wp-block-button.is-style-primary .wp-block-button__link:hover,
.wp-site-blocks .wp-block-button.is-style-primary .wp-block-button__link:focus-visible,
.wp-site-blocks .wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link:hover,
.wp-site-blocks .wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link:focus-visible,
.wp-site-blocks .enrichly-partner-form__submit:hover,
.wp-site-blocks .enrichly-partner-form__submit:focus-visible {
	background: var(--nextera-brand-gold-hover);
	border-color: var(--nextera-brand-gold-hover);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
	color: var(--nextera-brand-navy);
	opacity: 1;
}

.wp-site-blocks .wp-block-button.is-style-primary .wp-block-button__link:hover,
.wp-site-blocks .wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link:hover,
.wp-site-blocks .enrichly-partner-form__submit:hover {
	transform: translateY(-1px);
}

.wp-site-blocks .wp-block-button.is-style-primary .wp-block-button__link:active,
.wp-site-blocks .wp-block-button:not(.is-style-secondary):not(.is-style-outline) .wp-block-button__link:active,
.wp-site-blocks .enrichly-partner-form__submit:active {
	box-shadow: none;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.wp-site-blocks .wp-block-button .wp-block-button__link,
	.wp-site-blocks .enrichly-partner-form__submit {
		transition: none;
	}
}

/* Keep the homepage section-heading hierarchy consistent, including the closing CTA. */
.nextera-home h2 {
	color: var(--nextera-brand-gray);
	font-size: var(--wp--preset--font-size--section-heading);
	font-weight: 400;
	line-height: var(--nextera-leading-heading);
}

.nextera-home h2 strong {
	color: var(--wp--preset--color--white);
	font-weight: 400;
}

/* Match the saved legacy hero-statement Paragraph block to the homepage H2 treatment. */
.nextera-home .nextera-hero-statement p.has-section-heading-font-size {
	color: var(--nextera-brand-gray);
	font-family: var(--wp--preset--font-family--georgia);
	font-size: var(--wp--preset--font-size--section-heading);
	font-weight: 400;
	line-height: var(--nextera-leading-heading);
}

.nextera-home .nextera-hero-statement p.has-section-heading-font-size strong {
	color: var(--wp--preset--color--white);
	font-weight: 400;
}
