:root {
	--asp-blue: #12355b;
	--asp-blue-dark: #0c2440;
	--asp-red: #d13f30;
	--asp-ink: #172233;
	--asp-muted: #5c6878;
	--asp-border: #dfe5ec;
	--asp-light: #f4f7fa;
	--asp-white: #fff;
	--asp-max: 1180px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--asp-ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background: var(--asp-white);
}

a {
	color: var(--asp-blue);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--asp-red);
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--asp-white);
	border: 2px solid var(--asp-blue);
	clip: auto;
}

.topbar {
	background: var(--asp-blue-dark);
	color: var(--asp-white);
	font-size: 14px;
}

.topbar-inner,
.header-main,
.section-inner,
.page-shell,
.footer-grid,
.site-info {
	width: min(100% - 32px, var(--asp-max));
	margin-inline: auto;
}

.topbar-inner {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: flex-end;
	min-height: 42px;
	flex-wrap: wrap;
}

.topbar a,
.topbar-address {
	color: var(--asp-white);
}

.portal-link {
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 4px;
}

.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 86px;
}

.custom-logo,
.site-title {
	display: block;
	max-width: 251px;
	font-size: 24px;
	font-weight: 700;
	color: var(--asp-blue);
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav li {
	position: relative;
}

.primary-nav a {
	display: block;
	padding: 12px 10px;
	font-weight: 700;
	color: var(--asp-ink);
}

.primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 50;
	display: none;
	min-width: 230px;
	padding: 8px 0;
	background: var(--asp-white);
	box-shadow: 0 16px 40px rgba(11, 29, 52, 0.16);
	border: 1px solid var(--asp-border);
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
	display: block;
}

.primary-nav .sub-menu ul {
	left: 100%;
	top: 0;
}

.primary-nav .sub-menu li,
.primary-nav .sub-menu a {
	width: 100%;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--asp-border);
	border-radius: 6px;
	background: var(--asp-white);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
	display: block;
	width: 20px;
	height: 2px;
	margin: auto;
	background: var(--asp-blue);
	content: "";
}

.menu-toggle-bars::before {
	transform: translateY(-6px);
}

.menu-toggle-bars::after {
	transform: translateY(4px);
}

.home-hero {
	position: relative;
	min-height: 560px;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--asp-white);
	background: var(--asp-blue);
}

.home-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(12, 36, 64, 0.58);
}

.home-hero-content {
	position: relative;
	width: min(100% - 32px, 820px);
	text-align: center;
	padding: 72px 0;
}

.home-hero-logo {
	max-width: 180px;
	margin-bottom: 18px;
}

.home-hero h1 {
	margin: 0 0 8px;
	font-size: clamp(36px, 6vw, 64px);
	line-height: 1.05;
	text-transform: uppercase;
}

.hero-subtitle,
.hero-body {
	margin: 0 auto 10px;
	font-size: 22px;
	font-weight: 700;
}

.hero-body {
	font-size: 28px;
}

.section-band {
	background: var(--asp-blue);
	color: var(--asp-white);
}

.section-band.light {
	background: var(--asp-light);
	color: var(--asp-ink);
}

.section-inner {
	padding: 64px 0;
}

.section-inner.narrow {
	max-width: 900px;
	text-align: center;
}

.home-module h2,
.home-audit-cta h2,
.entry-title {
	margin: 0 0 18px;
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.15;
	color: var(--asp-blue);
}

.section-band h2 {
	color: inherit;
}

.module-copy {
	color: var(--asp-muted);
}

.section-band .module-copy {
	color: inherit;
}

.module-image {
	margin: 24px 0;
}

.module-image img {
	border-radius: 6px;
	box-shadow: 0 14px 32px rgba(11, 29, 52, 0.12);
}

.audit-grid .module-image {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.audit-grid,
.split {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 32px;
}

.split {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.asp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 18px;
	border-radius: 4px;
	background: var(--asp-red);
	color: var(--asp-white);
	font-weight: 700;
}

.asp-button:hover,
.asp-button:focus {
	background: var(--asp-blue-dark);
	color: var(--asp-white);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.feature-grid li {
	display: grid;
	place-items: center;
	gap: 10px;
	padding: 18px 10px;
	border: 1px solid var(--asp-border);
	border-radius: 6px;
	text-align: center;
	font-weight: 700;
}

.feature-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.who-image {
	border-radius: 6px;
	box-shadow: 0 14px 32px rgba(11, 29, 52, 0.14);
}

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

.testimonial-card {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 18px;
	padding: 24px;
	border: 1px solid var(--asp-border);
	border-radius: 6px;
}

.testimonial-image {
	width: 92px;
	height: 92px;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-author {
	font-weight: 700;
	color: var(--asp-blue);
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border: 1px solid var(--asp-border);
	border-radius: 6px;
	background: var(--asp-white);
}

.faq-item summary {
	cursor: pointer;
	padding: 16px 18px;
	font-weight: 700;
	color: var(--asp-blue);
}

.faq-answer {
	padding: 0 18px 18px;
}

.page-main {
	background: var(--asp-light);
	padding: 36px 0 72px;
}

.breadcrumb {
	margin-bottom: 16px;
	font-size: 14px;
}

.content-card {
	padding: 36px;
	background: var(--asp-white);
	border: 1px solid var(--asp-border);
	border-radius: 6px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.status-note {
	padding: 14px 16px;
	border-left: 4px solid var(--asp-red);
	background: #fff7f5;
}

.site-footer {
	background: var(--asp-blue-dark);
	color: var(--asp-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	padding: 54px 0;
}

.footer-column h2 {
	margin-top: 0;
	font-size: 22px;
	color: var(--asp-white);
}

.contact-block address {
	font-style: normal;
}

.asp-contact-form-wrap {
	margin-top: 32px;
}

.asp-contact-form {
	display: grid;
	gap: 16px;
	max-width: 720px;
}

.asp-contact-form p {
	margin: 0;
}

.asp-contact-form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	color: var(--asp-blue);
}

.asp-contact-form input,
.asp-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--asp-border);
	border-radius: 4px;
	font: inherit;
}

.asp-contact-form textarea {
	resize: vertical;
}

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

.form-message {
	padding: 12px 14px;
	border-radius: 4px;
}

.form-message.success {
	background: #edf8ef;
	color: #1b6b2a;
}

.form-message.error {
	background: #fff1ee;
	color: #9d2a1e;
}

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

.footer-menu a,
.contact-block a {
	color: var(--asp-white);
}

.footer-menu li + li {
	margin-top: 8px;
}

.site-info {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 14px;
}

@media (max-width: 980px) {
	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.primary-nav {
		display: none;
		position: absolute;
		top: 128px;
		left: 16px;
		right: 16px;
		z-index: 80;
		background: var(--asp-white);
		border: 1px solid var(--asp-border);
		box-shadow: 0 16px 36px rgba(11, 29, 52, 0.14);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul,
	.primary-nav .sub-menu {
		position: static;
		display: block;
		box-shadow: none;
		border: 0;
	}

	.primary-nav a {
		padding: 12px 16px;
	}

	.audit-grid,
	.split,
	.testimonial-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 640px) {
	.topbar-inner {
		justify-content: flex-start;
	}

	.home-hero {
		min-height: 440px;
	}

	.hero-subtitle,
	.hero-body {
		font-size: 20px;
	}

	.section-inner {
		padding: 42px 0;
	}

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

	.testimonial-card {
		grid-template-columns: 1fr;
	}

	.content-card {
		padding: 24px;
	}
}


/* v4.6 long-form service and resource pages */
.asp-resource-page {
	--asp-page-soft: #f6f9fc;
	--asp-page-accent: #e95842;
	color: var(--asp-ink);
}

.asp-resource-page a:not(.asp-button) {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.asp-page-hero {
	position: relative;
	overflow: hidden;
	margin: -8px 0 30px;
	padding: clamp(34px, 6vw, 68px);
	border-radius: 10px;
	background:
		radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.18), transparent 25%),
		linear-gradient(135deg, var(--asp-blue-dark), var(--asp-blue));
	color: var(--asp-white);
}

.asp-page-hero-valuable {
	background:
		radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.18), transparent 28%),
		linear-gradient(135deg, #142c4c, #7e2f36);
}

.asp-page-hero-copy {
	max-width: 860px;
}

.asp-page-hero h2,
.asp-final-cta h2 {
	margin: 0 0 14px;
	font-size: clamp(30px, 4.6vw, 52px);
	line-height: 1.08;
	color: inherit;
}

.asp-page-hero p {
	max-width: 780px;
	margin: 0 0 16px;
	font-size: 18px;
}

.asp-kicker,
.asp-section-label {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.asp-section-label {
	color: var(--asp-red);
}

.asp-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.asp-button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: transparent;
}

.asp-button-secondary:hover,
.asp-button-secondary:focus {
	border-color: var(--asp-white);
	background: var(--asp-white);
	color: var(--asp-blue-dark);
}

.asp-anchor-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0 0 34px;
	padding: 12px;
	border: 1px solid var(--asp-border);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 24px rgba(12, 36, 64, 0.08);
}

.admin-bar .asp-anchor-nav {
	top: 32px;
}

.asp-anchor-nav a {
	padding: 7px 11px;
	border-radius: 5px;
	color: var(--asp-blue);
	text-decoration: none !important;
}

.asp-anchor-nav a:hover,
.asp-anchor-nav a:focus {
	background: var(--asp-light);
	color: var(--asp-red);
}

.asp-section {
	padding: 48px 0;
	scroll-margin-top: 90px;
}

.asp-section + .asp-section {
	border-top: 1px solid var(--asp-border);
}

.asp-section-tint {
	margin-inline: -36px;
	padding-inline: 36px;
	background: var(--asp-page-soft);
}

.asp-section h2 {
	margin: 0 0 14px;
	font-size: clamp(27px, 3.5vw, 38px);
	line-height: 1.18;
	color: var(--asp-blue);
}

.asp-section h3 {
	margin: 0 0 10px;
	font-size: 21px;
	line-height: 1.25;
	color: var(--asp-blue-dark);
}

.asp-card-grid {
	display: grid;
	gap: 18px;
	margin-top: 26px;
}

.asp-card-grid-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.asp-card-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.asp-spec-summary-card,
.asp-info-card,
.asp-mini-card,
.asp-icon-card,
.asp-side-panel,
.asp-timeline-card {
	padding: 24px;
	border: 1px solid var(--asp-border);
	border-radius: 8px;
	background: var(--asp-white);
	box-shadow: 0 8px 22px rgba(12, 36, 64, 0.05);
}

.asp-spec-summary-card {
	position: relative;
	padding-top: 54px;
}

.asp-container-badge {
	position: absolute;
	top: 18px;
	left: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--asp-blue);
	color: var(--asp-white);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.asp-icon-card > span {
	display: block;
	margin-bottom: 12px;
	font-size: 34px;
}

.asp-table-wrap {
	overflow-x: auto;
	margin: 28px 0 18px;
	border: 1px solid var(--asp-border);
	border-radius: 8px;
	background: var(--asp-white);
}

.asp-spec-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: 15px;
}

.asp-spec-table caption {
	padding: 14px 16px;
	background: var(--asp-blue-dark);
	color: var(--asp-white);
	font-weight: 800;
	text-align: left;
}

.asp-spec-table th,
.asp-spec-table td {
	padding: 13px 14px;
	border-right: 1px solid var(--asp-border);
	border-bottom: 1px solid var(--asp-border);
	text-align: left;
	vertical-align: top;
}

.asp-spec-table thead th {
	background: #eaf0f6;
	color: var(--asp-blue-dark);
}

.asp-spec-table tbody th {
	width: 24%;
	background: #f8fafc;
	color: var(--asp-blue-dark);
}

.asp-notice {
	margin: 22px 0;
	padding: 16px 18px;
	border-left: 4px solid var(--asp-blue);
	border-radius: 5px;
	background: #eef5fb;
}

.asp-notice-warning {
	border-left-color: var(--asp-red);
	background: #fff4f0;
}

.asp-two-col {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	gap: 30px;
	align-items: center;
}

.asp-align-start {
	align-items: start;
}

.asp-price-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 28px;
}

.asp-price-card {
	padding: 30px;
	border: 1px solid var(--asp-border);
	border-radius: 10px;
	background: var(--asp-white);
	box-shadow: 0 12px 30px rgba(12, 36, 64, 0.08);
}

.asp-price-card-featured {
	border-top: 5px solid var(--asp-red);
}

.asp-price-label {
	font-weight: 800;
	color: var(--asp-blue);
}

.asp-price {
	margin: 6px 0;
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 900;
	line-height: 1;
	color: var(--asp-red);
}

.asp-check-list {
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.asp-check-list li {
	position: relative;
	padding-left: 26px;
}

.asp-check-list li + li {
	margin-top: 9px;
}

.asp-check-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "✓";
	color: #16834a;
	font-weight: 900;
}

.asp-small-print {
	font-size: 14px;
	color: var(--asp-muted);
}

.asp-photo-placeholder-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.asp-photo-placeholder {
	display: grid;
	place-items: center;
	min-height: 220px;
	padding: 24px;
	border: 2px dashed #9eb0c3;
	border-radius: 8px;
	background: repeating-linear-gradient(135deg, #f8fafc, #f8fafc 12px, #f1f5f9 12px, #f1f5f9 24px);
	text-align: center;
}

.asp-photo-placeholder span {
	font-size: 20px;
	font-weight: 800;
	color: var(--asp-blue);
}

.asp-photo-placeholder small {
	display: block;
	color: var(--asp-muted);
}

.asp-media-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 26px 0;
}

.asp-media-card {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--asp-border);
	border-radius: 8px;
	background: var(--asp-white);
}

.asp-media-card img {
	display: block;
	width: 100%;
	height: 280px;
	object-fit: contain;
	background: #f8fafc;
}

.asp-media-card figcaption,
.asp-policy-reference figcaption {
	padding: 12px 14px;
	font-size: 13px;
	color: var(--asp-muted);
}

.asp-process-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.asp-process-list li {
	display: flex;
	gap: 13px;
	padding: 20px;
	border: 1px solid var(--asp-border);
	border-radius: 8px;
	background: var(--asp-white);
}

.asp-process-list li > span {
	flex: 0 0 34px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--asp-red);
	color: var(--asp-white);
	font-weight: 900;
}

.asp-process-list p {
	margin: 6px 0 0;
}

.asp-side-panel {
	border-top: 5px solid var(--asp-red);
}

.asp-policy-reference {
	margin: 28px 0 0;
	border: 1px solid var(--asp-border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--asp-white);
}

.asp-policy-reference img {
	display: block;
	width: 100%;
}

.asp-timeline-card + .asp-timeline-card {
	margin-top: 14px;
}

.asp-timeline-card strong {
	display: block;
	font-size: 20px;
	color: var(--asp-red);
}

.asp-exclusion-list {
	margin: 24px 0 0;
	padding-left: 28px;
}

.asp-exclusion-list li {
	padding: 13px 14px;
	border-bottom: 1px solid var(--asp-border);
}

.asp-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.asp-faq-item {
	padding: 22px;
	border: 1px solid var(--asp-border);
	border-radius: 8px;
	background: var(--asp-white);
}

.asp-faq-question {
	font-size: 19px !important;
}

.asp-faq-answer p:last-child {
	margin-bottom: 0;
}

.asp-final-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 30px;
	padding: 34px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--asp-blue-dark), var(--asp-blue));
	color: var(--asp-white);
}

.asp-final-cta p {
	margin: 0 0 8px;
}

@media (max-width: 980px) {
	.asp-card-grid-three,
	.asp-card-grid-four,
	.asp-media-grid,
	.asp-process-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.asp-two-col {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.admin-bar .asp-anchor-nav {
		top: 46px;
	}
}

@media (max-width: 700px) {
	.asp-page-hero {
		padding: 30px 24px;
	}

	.asp-section-tint {
		margin-inline: -24px;
		padding-inline: 24px;
	}

	.asp-card-grid-two,
	.asp-card-grid-three,
	.asp-card-grid-four,
	.asp-price-grid,
	.asp-photo-placeholder-grid,
	.asp-media-grid,
	.asp-process-list,
	.asp-faq-list {
		grid-template-columns: 1fr;
	}

	.asp-anchor-nav {
		position: static;
	}

	.asp-media-card img {
		height: auto;
		max-height: 420px;
	}

	.asp-final-cta {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* v4.7 standalone editable Solutions section */
.asp-solutions-archive .asp-page-hero,
.asp-solution-single .asp-page-hero {
	margin-top: -8px;
}

.asp-solution-hero {
	background:
		radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.2), transparent 27%),
		linear-gradient(135deg, #0c2440, #174f7e 68%, #c44335);
}

.asp-solution-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.08;
	color: var(--asp-white);
}

.asp-solution-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 28px;
}

.asp-solution-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--asp-border);
	border-radius: 12px;
	background: var(--asp-white);
	box-shadow: 0 12px 30px rgba(12, 36, 64, 0.08);
}

.asp-solution-card-image {
	display: block;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: var(--asp-light);
}

.asp-solution-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.asp-solution-card:hover .asp-solution-card-image img {
	transform: scale(1.025);
}

.asp-solution-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px;
}

.asp-solution-card h3 {
	margin: 0 0 12px;
	font-size: 25px;
	line-height: 1.22;
	color: var(--asp-blue);
}

.asp-solution-card h3 a {
	color: inherit;
	text-decoration: none !important;
}

.asp-solution-card-excerpt {
	color: var(--asp-muted);
}

.asp-solution-card-excerpt p {
	margin: 0 0 18px;
}

.asp-solution-card-facts {
	display: grid;
	gap: 10px;
	margin: 0 0 22px;
	padding: 16px 0;
	border-top: 1px solid var(--asp-border);
	border-bottom: 1px solid var(--asp-border);
}

.asp-solution-card-facts div {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 12px;
}

.asp-solution-card-facts dt {
	font-weight: 800;
	color: var(--asp-blue-dark);
}

.asp-solution-card-facts dd {
	margin: 0;
	color: var(--asp-muted);
}

.asp-solution-learn {
	align-self: flex-start;
	margin-top: auto;
}

.asp-solutions-archive-content > .asp-section:first-child,
.asp-solution-content > .asp-section:first-child {
	border-top: 1px solid var(--asp-border);
}

.asp-solution-featured {
	margin: 0 0 28px;
	overflow: hidden;
	border-radius: 10px;
}

.asp-solution-featured img {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.asp-related-solutions {
	margin-top: 24px;
}

.asp-related-solutions .asp-info-card {
	display: flex;
	flex-direction: column;
}

.asp-related-solutions .asp-info-card > a:last-child {
	margin-top: auto;
}

.post-type-archive-asp_solution .page-main,
.single-asp_solution .page-main {
	background: linear-gradient(180deg, #eef3f8 0, #f6f9fc 180px, #f4f7fa 100%);
}

@media (max-width: 900px) {
	.asp-solution-card-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.asp-solution-card-body {
		padding: 22px;
	}

	.asp-solution-card-facts div {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}
