@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../../../twentytwentyfive/assets/fonts/manrope/Manrope-VariableFont_wght.woff2") format("woff2");
}

:root {
	--asg-ink: #182421;
	--asg-ink-soft: #52605c;
	--asg-brand: #0b6b57;
	--asg-brand-strong: #074c40;
	--asg-blue: #245aa6;
	--asg-warm: #e1a62f;
	--asg-canvas: #f3f7f5;
	--asg-surface: #ffffff;
	--asg-surface-soft: #eaf2ef;
	--asg-border: #d5e1dd;
	--asg-shadow: 0 18px 48px rgba(24, 36, 33, 0.1);
	--asg-content: 780px;
	--asg-wide: 1120px;
}

body {
	background: var(--asg-canvas);
	color: var(--asg-ink-soft);
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title {
	color: var(--asg-ink);
	font-family: "Manrope", "Segoe UI", sans-serif;
	letter-spacing: 0;
}

a {
	color: var(--asg-brand);
}

a:hover,
a:focus {
	color: var(--asg-brand-strong);
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid rgba(225, 166, 47, 0.75);
	outline-offset: 3px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 1px 0 rgba(24, 36, 33, 0.08);
	backdrop-filter: blur(14px);
}

.admin-bar .site-header {
	top: 32px;
}

.ast-primary-header-bar {
	background: transparent;
	border-bottom: 0;
}

.site-primary-header-wrap.ast-container,
.ast-container {
	max-width: 1240px;
}

.site-primary-header-wrap {
	min-height: 78px;
}

.site-header .site-title {
	font-size: 18px;
	font-weight: 750;
	line-height: 1.2;
}

.site-header .site-title a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--asg-ink);
	white-space: nowrap;
}

.site-header .site-title a::before {
	width: 34px;
	height: 34px;
	box-sizing: border-box;
	border: 7px solid var(--asg-brand);
	border-top-color: var(--asg-warm);
	border-radius: 4px;
	content: "";
	flex: 0 0 34px;
}

.asg-guides-toggle {
	display: none;
	align-items: center;
	min-height: 48px;
	padding: 0 14px 0 16px;
	border: 1px solid var(--asg-border);
	border-radius: 8px;
	background: var(--asg-surface);
	color: var(--asg-ink);
	font: 700 15px/1 "Manrope", "Segoe UI", sans-serif;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.asg-guides-toggle:hover,
.asg-guides-toggle[aria-expanded="true"] {
	border-color: var(--asg-brand);
	background: var(--asg-surface-soft);
	color: var(--asg-brand-strong);
}

.asg-guides-toggle__icon {
	position: relative;
	width: 18px;
	height: 14px;
	margin-right: 10px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.asg-guides-toggle__icon::after {
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	border-top: 2px solid currentColor;
	content: "";
}

.asg-guides-toggle__count {
	display: inline-grid;
	width: 24px;
	height: 24px;
	margin-left: 10px;
	place-items: center;
	border-radius: 50%;
	background: var(--asg-brand);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

@media (min-width: 922px) {
	.ast-builder-grid-row {
		grid-template-columns: minmax(280px, auto) 1fr;
	}

	.asg-menu-ready.ast-builder-menu-1 {
		position: relative;
		justify-content: flex-end;
		margin-left: auto;
	}

	.asg-menu-ready .asg-guides-toggle {
		display: inline-flex;
	}

	.asg-menu-ready .ast-main-header-bar-alignment {
		position: static;
		width: 0;
		margin: 0;
	}

	.asg-menu-ready .main-header-bar-navigation {
		position: absolute;
		top: calc(100% + 14px);
		right: 0;
		width: min(760px, calc(100vw - 48px));
		height: auto !important;
		padding: 12px;
		border: 1px solid var(--asg-border);
		border-radius: 8px;
		background: var(--asg-surface);
		box-shadow: var(--asg-shadow);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
		pointer-events: none;
	}

	.asg-menu-ready.is-open .main-header-bar-navigation {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.asg-menu-ready .main-navigation,
	.asg-menu-ready .site-navigation {
		display: block;
		width: 100%;
		height: auto !important;
	}

	.asg-menu-ready .main-header-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4px;
		width: 100%;
		max-height: calc(100vh - 130px);
		overflow-y: auto;
	}

	.asg-menu-ready .main-header-menu > .menu-item {
		width: 100%;
	}

	.asg-menu-ready .main-header-menu > .menu-item > .menu-link {
		display: flex;
		min-height: 52px;
		align-items: center;
		padding: 10px 14px;
		border-radius: 6px;
		color: var(--asg-ink);
		font-size: 15px;
		font-weight: 600;
		line-height: 1.35;
	}

	.asg-menu-ready .main-header-menu > .menu-item > .menu-link:hover,
	.asg-menu-ready .main-header-menu > .menu-item.current-menu-item > .menu-link {
		background: var(--asg-surface-soft);
		color: var(--asg-brand-strong);
	}

	.asg-menu-ready .main-header-menu > .menu-item.current-menu-item > .menu-link {
		box-shadow: inset 3px 0 0 var(--asg-warm);
	}
}

.home #content {
	background: var(--asg-canvas);
}

.home #content > .ast-container {
	max-width: 1240px;
	padding-right: 20px;
	padding-left: 20px;
}

.home #primary,
.home .site-main,
.home .ast-article-single {
	margin: 0;
	padding: 0;
}

.home .entry-content {
	color: var(--asg-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.home .entry-content > * {
	margin-top: 0;
}

.home .entry-content > p {
	max-width: var(--asg-content);
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.home .asg-hero {
	min-height: 540px !important;
	margin-top: 28px;
	padding: 0;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--asg-shadow);
}

.home .asg-hero .wp-block-cover__background {
	background: linear-gradient(90deg, rgba(10, 38, 31, 0.93) 0%, rgba(10, 38, 31, 0.78) 54%, rgba(10, 38, 31, 0.28) 100%) !important;
	opacity: 1 !important;
}

.home .asg-hero .wp-block-cover__image-background {
	object-position: 50% 48%;
}

.home .asg-hero__content {
	display: flex;
	width: 100%;
	max-width: var(--asg-wide);
	min-height: 540px;
	align-items: flex-start;
	justify-content: center;
	padding: 60px;
	flex-direction: column;
}

.home .asg-hero__content > * {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.home .asg-hero__title {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-size: 54px !important;
	font-weight: 780;
	line-height: 1.08;
	text-align: left;
}

.home .asg-hero__content > p {
	max-width: 590px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.55;
	text-align: left;
}

.home .asg-hero__cta,
.home .asg-action-link,
.home .asg-final-cta a {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 6px;
	font-family: "Manrope", "Segoe UI", sans-serif;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.home .asg-hero__cta {
	margin-top: 34px;
	padding: 0 22px;
	background: var(--asg-warm);
	color: var(--asg-ink);
}

.home .asg-hero__cta::after {
	margin-left: 10px;
	content: "\2193";
	font-size: 18px;
}

.home .asg-hero__cta:hover {
	background: #f0bd56;
	transform: translateY(-2px);
}

.home .asg-intro {
	color: var(--asg-ink);
}

.home .asg-intro--lead {
	margin-top: 64px;
	font-size: 20px;
	font-weight: 520;
	line-height: 1.7;
}

.home .asg-intro--lead strong {
	color: var(--asg-brand-strong);
	font-weight: 780;
}

.home .asg-intro--context {
	margin-top: 22px;
}

.home .asg-section-heading {
	position: relative;
	max-width: var(--asg-content);
	margin: 88px auto 0;
	padding-top: 22px;
	color: var(--asg-ink);
	font-size: 34px;
	font-weight: 760;
	line-height: 1.2;
}

.home .asg-section-heading::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 58px;
	height: 4px;
	border-radius: 2px;
	background: var(--asg-warm);
	content: "";
}

.home .asg-section-heading--providers,
.home .asg-section-heading--comparison {
	max-width: var(--asg-wide);
}

.home .entry-content > .asg-section-heading + p,
.home .entry-content > p + p:not(.asg-intro) {
	margin-top: 22px;
}

.home .asg-provider-grid {
	display: grid;
	max-width: var(--asg-wide);
	margin: 30px auto 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.home .asg-provider-card {
	position: relative;
	min-height: 290px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--asg-border);
	border-radius: 8px;
	background: var(--asg-surface);
	box-shadow: 0 12px 32px rgba(24, 36, 33, 0.06);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home .asg-provider-card:hover {
	border-color: rgba(11, 107, 87, 0.45);
	box-shadow: 0 18px 42px rgba(24, 36, 33, 0.11);
	transform: translateY(-4px);
}

.home .asg-provider-card::before {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 52px;
	place-items: center;
	border-radius: 50%;
	background: var(--asg-surface-soft);
	color: var(--asg-brand-strong);
	font-size: 13px;
	font-weight: 800;
}

.home .asg-provider-card--1::before {
	content: "01";
}

.home .asg-provider-card--2::before {
	background: #fff4dc;
	color: #7a5710;
	content: "02";
}

.home .asg-provider-card--3::before {
	background: #eaf0fa;
	color: var(--asg-blue);
	content: "03";
}

.home .asg-provider-card--4::before {
	background: #f6ece8;
	color: #8b4638;
	content: "04";
}

.home .asg-provider-card--5::before {
	background: #edf4e7;
	color: #486b32;
	content: "05";
}

.home .asg-provider-card__title {
	margin: 0;
	color: var(--asg-ink);
	font-size: 22px;
	font-weight: 760;
	line-height: 1.25;
}

.home .asg-provider-card__copy {
	margin: 14px 0 0;
	color: var(--asg-ink-soft);
	font-size: 15.5px;
	line-height: 1.7;
}

@media (min-width: 922px) {
	.home .asg-provider-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.home .asg-provider-card {
		grid-column: span 2;
	}

	.home .asg-provider-card:nth-last-child(2):nth-child(3n + 1) {
		grid-column: 2 / span 2;
	}
}

.home .asg-comparison-table {
	max-width: var(--asg-wide);
	margin: 30px auto 0;
	overflow: hidden;
	border: 1px solid var(--asg-border);
	border-radius: 8px;
	background: var(--asg-surface);
	box-shadow: 0 14px 36px rgba(24, 36, 33, 0.07);
}

.home .asg-comparison-table table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
}

.home .asg-comparison-table th,
.home .asg-comparison-table td {
	padding: 18px 20px;
	border: 0;
	border-bottom: 1px solid var(--asg-border);
	text-align: left;
	vertical-align: middle;
}

.home .asg-comparison-table th {
	background: var(--asg-brand-strong);
	color: #fff;
	font-size: 13px;
	font-weight: 750;
	text-transform: uppercase;
}

.home .asg-comparison-table td {
	color: var(--asg-ink-soft);
	font-size: 15px;
}

.home .asg-comparison-table tr:last-child td {
	border-bottom: 0;
}

.home .asg-comparison-table tr:nth-child(odd):not(:first-child) td {
	background: #f8faf9;
}

.home .asg-comparison-table td:first-child {
	color: var(--asg-ink);
	font-weight: 750;
}

.home .asg-action-link {
	min-width: 142px;
	padding: 0 16px;
	background: var(--asg-brand);
	color: #fff;
}

.home .asg-action-link:hover,
.home .asg-action-link:focus {
	background: var(--asg-brand-strong);
	color: #fff;
	transform: translateY(-1px);
}

.home .asg-action-link::after {
	margin-left: 8px;
	content: "\2197";
	font-size: 14px;
}

.home .asg-tip {
	margin-top: 28px;
	padding: 20px 22px;
	border: 1px solid #ecd79f;
	border-left: 5px solid var(--asg-warm);
	border-radius: 8px;
	background: #fff8e8;
	color: #59491f;
	font-weight: 620;
}

.home .asg-final-cta {
	display: block;
	max-width: var(--asg-wide);
	min-height: 116px;
	margin-top: 38px;
	padding: 26px 30px;
	border-radius: 8px;
	background: var(--asg-brand-strong);
	color: rgba(255, 255, 255, 0.84);
	text-align: center;
}

.home .asg-final-cta a {
	margin: 0 8px;
	padding: 0 18px;
	background: #fff;
	color: var(--asg-brand-strong);
	vertical-align: middle;
}

.home .asg-final-cta a:hover,
.home .asg-final-cta a:focus {
	background: var(--asg-warm);
	color: var(--asg-ink);
}

.site-footer {
	margin-top: 88px;
	background: #102d27;
}

.site-below-footer-wrap {
	min-height: 112px;
	border-top: 4px solid var(--asg-warm);
	background: transparent;
}

.site-footer .ast-footer-copyright,
.site-footer .ast-footer-copyright p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 550;
}

@media (prefers-reduced-motion: no-preference) {
	.home .asg-hero__content {
		animation: asg-rise 500ms ease both;
	}

	.home .asg-provider-card {
		animation: asg-rise 440ms ease both;
	}

	.home .asg-provider-card--2 {
		animation-delay: 70ms;
	}

	.home .asg-provider-card--3 {
		animation-delay: 140ms;
	}

	.home .asg-provider-card--4 {
		animation-delay: 210ms;
	}

	.home .asg-provider-card--5 {
		animation-delay: 280ms;
	}
}

@keyframes asg-rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 921px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.ast-mobile-header-wrap {
		overflow-x: clip;
	}

	.site-primary-header-wrap {
		min-height: 72px;
	}

	.site-header .site-title {
		font-size: 17px;
	}

	.site-header .site-title a {
		gap: 9px;
	}

	.site-header .site-title a::before {
		width: 30px;
		height: 30px;
		border-width: 6px;
		flex-basis: 30px;
	}

	button.menu-toggle.main-header-menu-toggle {
		display: inline-flex;
		width: 48px !important;
		height: 48px !important;
		align-items: center;
		justify-content: center;
		padding: 0 !important;
		border: 1px solid var(--asg-border);
		border-radius: 8px;
		background: var(--asg-surface);
		color: var(--asg-brand);
	}

	.ast-mobile-header-content {
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		border-top: 1px solid var(--asg-border);
		border-bottom: 1px solid var(--asg-border);
		background: var(--asg-surface);
		box-shadow: 0 18px 34px rgba(24, 36, 33, 0.12);
	}

	.ast-mobile-header-content .main-header-menu .menu-link {
		display: flex;
		min-height: 48px;
		align-items: center;
		padding: 10px 20px;
		border-bottom: 1px solid #edf2f0;
		color: var(--asg-ink);
		font-size: 15px;
		font-weight: 600;
		line-height: 1.35;
	}

	.ast-mobile-header-content .main-header-menu .current-menu-item > .menu-link {
		background: var(--asg-surface-soft);
		box-shadow: inset 4px 0 0 var(--asg-warm);
		color: var(--asg-brand-strong);
	}

	.home .asg-provider-grid {
		grid-template-columns: 1fr;
	}

	.home .asg-provider-card {
		display: grid;
		min-height: 0;
		align-items: center;
		grid-template-columns: 42px minmax(0, 1fr);
		column-gap: 16px;
	}

	.home .asg-provider-card::before {
		margin-bottom: 0;
	}

	.home .asg-provider-card__title {
		grid-column: 2;
	}

	.home .asg-provider-card__copy {
		grid-column: 1 / -1;
		margin-top: 20px;
	}
}

@media (max-width: 600px) {
	body {
		font-size: 16px;
	}

	#ast-scroll-top {
		display: none !important;
	}

	.home #content > .ast-container {
		padding-right: 16px;
		padding-left: 16px;
	}

	.home .entry-content {
		font-size: 16px;
		line-height: 1.7;
	}

	.home .asg-hero {
		min-height: 420px !important;
		margin-top: 16px;
	}

	.home .asg-hero .wp-block-cover__background {
		background: linear-gradient(90deg, rgba(10, 38, 31, 0.91) 0%, rgba(10, 38, 31, 0.69) 100%) !important;
	}

	.home .asg-hero .wp-block-cover__image-background {
		object-position: 52% 50%;
	}

	.home .asg-hero__content {
		min-height: 420px;
		padding: 30px 24px;
	}

	.home .asg-hero__title {
		font-size: 38px !important;
		line-height: 1.1;
	}

	.home .asg-hero__content > p {
		margin-top: 16px;
		font-size: 17px;
		line-height: 1.5;
	}

	.home .asg-hero__cta {
		width: 100%;
		min-height: 50px;
		margin-top: 26px;
	}

	.home .asg-intro--lead {
		margin-top: 38px;
		font-size: 18px;
		line-height: 1.65;
	}

	.home .asg-intro--context {
		margin-top: 18px;
	}

	.home .asg-section-heading {
		margin-top: 58px;
		padding-top: 18px;
		font-size: 27px;
		line-height: 1.22;
	}

	.home .asg-section-heading::before {
		width: 46px;
	}

	.home .entry-content > .asg-section-heading + p,
	.home .entry-content > p + p:not(.asg-intro) {
		margin-top: 18px;
	}

	.home .asg-provider-grid {
		margin-top: 24px;
		gap: 14px;
	}

	.home .asg-provider-card {
		padding: 24px;
	}

	.home .asg-provider-card__copy {
		font-size: 15px;
	}

	.home .asg-comparison-table {
		margin-top: 24px;
		overflow: visible;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.home .asg-comparison-table table,
	.home .asg-comparison-table tbody {
		display: block;
		width: 100%;
	}

	.home .asg-comparison-table tr:first-child {
		display: block;
		height: 0;
	}

	.home .asg-comparison-table tr:first-child th {
		position: absolute;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		overflow: hidden;
		border: 0;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.home .asg-comparison-table tr:not(:first-child) {
		display: block;
		margin-bottom: 14px;
		overflow: hidden;
		border: 1px solid var(--asg-border);
		border-radius: 8px;
		background: var(--asg-surface);
		box-shadow: 0 8px 24px rgba(24, 36, 33, 0.06);
	}

	.home .asg-comparison-table td,
	.home .asg-comparison-table tr:nth-child(odd):not(:first-child) td {
		display: grid;
		width: 100%;
		min-height: 52px;
		padding: 13px 16px;
		background: var(--asg-surface);
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 14px;
	}

	.home .asg-comparison-table td::before {
		color: #6b7874;
		content: attr(data-label);
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.home .asg-comparison-table td:last-child {
		border-bottom: 0;
	}

	.home .asg-action-link {
		width: 100%;
		min-width: 0;
	}

	.asg-comparison-table--page {
		margin-top: 24px;
		overflow: visible;
	}

	.asg-comparison-table--page table,
	.asg-comparison-table--page tbody {
		display: block;
		width: 100%;
		margin: 0;
		border: 0;
	}

	.asg-comparison-table--page tr:first-child {
		display: block;
		height: 0;
	}

	.asg-comparison-table--page tr:first-child th {
		position: absolute;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		overflow: hidden;
		border: 0;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.asg-comparison-table--page tr:not(:first-child) {
		display: block;
		margin-bottom: 14px;
		overflow: hidden;
		border: 1px solid var(--asg-border);
		border-radius: 8px;
		background: var(--asg-surface);
		box-shadow: 0 8px 24px rgba(24, 36, 33, 0.06);
	}

	.asg-comparison-table--page td {
		display: grid;
		width: 100%;
		min-height: 52px;
		padding: 13px 16px;
		border: 0;
		border-bottom: 1px solid var(--asg-border);
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 14px;
		text-align: left;
	}

	.asg-comparison-table--page td::before {
		color: #6b7874;
		content: attr(data-label);
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.asg-comparison-table--page td:last-child {
		border-bottom: 0;
	}

	.asg-comparison-table--page .asg-action-link {
		display: inline-flex;
		width: 100%;
		min-width: 0;
		min-height: 48px;
		align-items: center;
		justify-content: center;
		padding: 8px 12px;
		border-radius: 6px;
		background: var(--asg-brand);
		color: #fff;
		line-height: 1.25;
		text-align: center;
		text-decoration: none;
	}

	.asg-comparison-table--page .asg-action-link:hover,
	.asg-comparison-table--page .asg-action-link:focus {
		background: var(--asg-brand-strong);
		color: #fff;
	}

	.home .asg-tip {
		margin-top: 24px;
		padding: 18px;
	}

	.home .asg-final-cta {
		display: block;
		min-height: 0;
		margin-top: 30px;
		padding: 24px;
	}

	.home .asg-final-cta a {
		width: 100%;
		margin: 18px 0;
	}

	.site-footer {
		margin-top: 64px;
	}

	.site-below-footer-wrap {
		min-height: 96px;
	}
}

@media (max-width: 420px) {
	.site-header .site-title {
		font-size: 16px;
	}

	.site-header .site-title a::before {
		display: none;
	}

	.home .asg-hero__title {
		font-size: 32px !important;
	}
}