: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;
	}
}

/* v4.8 conversion-focused homepage */
.home-v48-shell {
	width: min(100% - 32px, var(--asp-max));
	margin-inline: auto;
}

.home-v48-section {
	padding: 78px 0;
	background: var(--asp-white);
}

.home-v48-soft {
	background: var(--asp-light);
}

.home-v48-dark {
	background: linear-gradient(135deg, var(--asp-blue-dark), var(--asp-blue));
	color: var(--asp-white);
}

.home-v48-section-head {
	max-width: 820px;
	margin: 0 auto 38px;
	text-align: center;
}

.home-v48-section-head.compact {
	margin-bottom: 28px;
}

.home-v48-section-head.left {
	margin: 0;
	text-align: left;
}

.home-v48-section-head h2,
.home-v48-split-copy h2,
.home-v48-final-content h2 {
	margin: 0 0 14px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.12;
	color: var(--asp-blue-dark);
}

.home-v48-dark h2,
.home-v48-final-content h2 {
	color: var(--asp-white);
}

.home-v48-section-head p,
.home-v48-lead {
	margin: 0;
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.65;
	color: var(--asp-muted);
}

.home-v48-lead {
	color: rgba(255, 255, 255, 0.9);
}

.home-v48-lead.dark {
	color: var(--asp-muted);
}

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

.home-v48-dark .home-v48-copy,
.home-v48-final-content .home-v48-copy,
.home-v48-hero-copy .home-v48-copy {
	color: rgba(255, 255, 255, 0.88);
}

.home-v48-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 26px;
}

.home-v48-actions.centered {
	justify-content: center;
}

.asp-button-outline {
	border: 1px solid var(--asp-blue);
	background: transparent;
	color: var(--asp-blue);
}

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

.asp-button-outline-light {
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: transparent;
	color: var(--asp-white);
}

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

.home-v48-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 640px;
	padding: 70px 0;
	background: linear-gradient(135deg, var(--asp-blue-dark), var(--asp-blue));
	color: var(--asp-white);
}

.home-v48-hero-image,
.home-v48-final-cta-image {
	position: absolute;
	inset: 0;
	z-index: -3;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-v48-hero-overlay,
.home-v48-final-overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: linear-gradient(90deg, rgba(7, 26, 49, 0.93) 0%, rgba(13, 47, 82, 0.79) 55%, rgba(12, 36, 64, 0.7) 100%);
}

.home-v48-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	gap: 48px;
	align-items: center;
}

.home-v48-hero:not(.has-query) .home-v48-hero-grid {
	grid-template-columns: minmax(0, 780px);
}

.home-v48-hero-copy {
	max-width: 720px;
}

.home-v48-hero-logo {
	max-width: 140px;
	max-height: 72px;
	object-fit: contain;
	margin-bottom: 18px;
}

.home-v48-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(40px, 5.4vw, 68px);
	line-height: 1.03;
	letter-spacing: -0.025em;
	color: var(--asp-white);
}

.home-v48-query-card {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 24px 70px rgba(3, 18, 34, 0.28);
	color: var(--asp-ink);
}

.home-v48-query-card > *:first-child {
	margin-top: 0;
}

.home-v48-query-card > *:last-child {
	margin-bottom: 0;
}

.home-v48-trust-section {
	padding: 36px 0;
	border-bottom: 1px solid var(--asp-border);
}

.home-v48-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.home-v48-trust-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	padding: 18px;
	border: 1px solid var(--asp-border);
	border-radius: 10px;
	background: var(--asp-white);
}

.home-v48-trust-item h3,
.home-v48-card h3,
.home-v48-process-card h3,
.home-v48-why-item h3 {
	margin: 0 0 6px;
	font-size: 19px;
	line-height: 1.28;
	color: var(--asp-blue-dark);
}

.home-v48-trust-item p,
.home-v48-card p,
.home-v48-process-card p,
.home-v48-why-item p {
	margin: 0;
	color: var(--asp-muted);
}

.home-v48-small-icon,
.home-v48-process-icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 8px;
}

.home-v48-card-grid {
	display: grid;
	gap: 22px;
}

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

.home-v48-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--asp-border);
	border-radius: 12px;
	background: var(--asp-white);
	box-shadow: 0 12px 34px rgba(12, 36, 64, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-v48-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 42px rgba(12, 36, 64, 0.12);
}

.home-v48-card-media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e9eff5;
}

.home-v48-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.home-v48-card:hover .home-v48-card-image {
	transform: scale(1.035);
}

.home-v48-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.home-v48-card-body p {
	margin-bottom: 18px;
}

.home-v48-text-link {
	margin-top: auto;
	font-weight: 800;
	color: var(--asp-red);
}

.home-v48-section-action {
	margin-top: 34px;
	text-align: center;
}

.home-v48-split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: clamp(36px, 6vw, 74px);
	align-items: center;
}

.home-v48-split.reverse {
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.home-v48-split-media {
	margin: 0;
}

.home-v48-split-image {
	display: block;
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 22px 54px rgba(12, 36, 64, 0.16);
}

.home-v48-dark .home-v48-split-image {
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.home-v48-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.home-v48-process-card {
	position: relative;
	padding: 26px;
	border: 1px solid var(--asp-border);
	border-radius: 12px;
	background: var(--asp-white);
}

.home-v48-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--asp-blue);
	color: var(--asp-white);
	font-weight: 800;
}

.home-v48-process-icon {
	float: right;
}

.home-v48-why-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 28px 0;
}

.home-v48-why-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	padding: 16px;
	border: 1px solid var(--asp-border);
	border-radius: 10px;
	background: var(--asp-white);
}

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

.home-v48-testimonial-card {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 22px;
	padding: 30px;
	border: 1px solid var(--asp-border);
	border-radius: 12px;
	background: var(--asp-white);
	box-shadow: 0 12px 30px rgba(12, 36, 64, 0.06);
}

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

.home-v48-quote-mark {
	height: 34px;
	font-family: Georgia, serif;
	font-size: 56px;
	line-height: 0.8;
	color: var(--asp-red);
}

.home-v48-testimonial-copy {
	color: var(--asp-muted);
}

.home-v48-testimonial-author {
	margin-bottom: 0;
	font-weight: 800;
	color: var(--asp-blue);
}

.home-v48-post-meta {
	margin-bottom: 8px !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--asp-red) !important;
}

.home-v48-post-card h3 a {
	color: var(--asp-blue-dark);
}

.home-v48-faq-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	gap: 52px;
	align-items: start;
}

.home-v48-faq-list .faq-item {
	border-radius: 10px;
}

.home-v48-final-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 86px 0;
	background: var(--asp-blue-dark);
	color: var(--asp-white);
	text-align: center;
}

.home-v48-final-overlay {
	background: rgba(7, 26, 49, 0.86);
}

.home-v48-final-content {
	max-width: 860px;
}

.home-v48-final-content .home-v48-copy {
	max-width: 720px;
	margin-inline: auto;
}

@media (max-width: 1024px) {
	.home-v48-hero-grid,
	.home-v48-split,
	.home-v48-split.reverse,
	.home-v48-faq-layout {
		grid-template-columns: 1fr;
	}

	.home-v48-hero-copy {
		max-width: 820px;
	}

	.home-v48-query-card {
		max-width: 760px;
	}

	.home-v48-trust-grid,
	.home-v48-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v48-card-grid.three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-v48-faq-layout .home-v48-section-head.left {
		max-width: 760px;
	}
}

@media (max-width: 700px) {
	.home-v48-section {
		padding: 56px 0;
	}

	.home-v48-hero {
		min-height: auto;
		padding: 54px 0;
	}

	.home-v48-hero h1 {
		font-size: clamp(36px, 11vw, 52px);
	}

	.home-v48-query-card {
		padding: 18px;
	}

	.home-v48-trust-grid,
	.home-v48-card-grid.three,
	.home-v48-process-grid,
	.home-v48-why-grid,
	.home-v48-testimonial-grid {
		grid-template-columns: 1fr;
	}

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

	.home-v48-actions .asp-button {
		width: 100%;
	}
}

/* v4.8.1: English compensation table and Media Library image update. */
.asp-compensation-table-wrap {
	border-color: #8f969d;
	border-radius: 0;
}

.asp-compensation-table {
	min-width: 900px;
}

.asp-compensation-table caption {
	font-size: 24px;
	text-align: center;
}

.asp-compensation-table thead th {
	text-align: center;
	vertical-align: middle;
}

.asp-compensation-table tbody th {
	width: auto;
	vertical-align: middle;
}

.asp-compensation-table .asp-compensation-group {
	width: 20%;
	text-align: center;
}

.asp-compensation-table tbody tr > th:nth-child(2) {
	width: 25%;
}

.asp-compensation-exclusion-heading th {
	background: #fff1ed !important;
	color: var(--asp-red) !important;
	font-size: 17px;
	text-align: left !important;
}

.asp-compensation-exclusion td {
	line-height: 1.65;
}

.asp-compensation-exclusion strong {
	color: var(--asp-red);
}

/* v4.8.2 Media-backed service Page layout */
.asp-service-page-card {
	overflow: hidden;
	padding: 0;
	border-radius: 12px;
	box-shadow: 0 16px 48px rgba(12, 36, 64, 0.08);
}

.asp-service-page-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	min-height: 390px;
	background:
		radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.12), transparent 31%),
		linear-gradient(135deg, var(--asp-blue-dark), var(--asp-blue));
	color: var(--asp-white);
}

.asp-service-page-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(44px, 6vw, 78px);
}

.asp-service-page-kicker {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #ffd4cb;
}

.asp-service-page-hero .entry-title {
	max-width: 720px;
	margin: 0;
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.06;
	color: var(--asp-white);
}

.asp-service-page-summary {
	max-width: 700px;
	margin: 20px 0 0;
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.asp-service-page-hero-media {
	position: relative;
	min-height: 390px;
	margin: 0;
	background: #dce7f0;
}

.asp-service-page-hero-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(12, 36, 64, 0.34), transparent 32%);
	content: "";
	pointer-events: none;
}

.asp-service-page-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 390px;
	object-fit: cover;
}

.asp-service-page-title {
	padding: 42px clamp(28px, 5vw, 64px) 0;
}

.asp-service-page-title .entry-title {
	margin-bottom: 0;
	font-size: clamp(34px, 4.8vw, 54px);
	line-height: 1.1;
	color: var(--asp-blue-dark);
}

.asp-service-page-content {
	max-width: 1040px;
	margin-inline: auto;
	padding: clamp(38px, 5vw, 68px) clamp(26px, 6vw, 76px) clamp(54px, 7vw, 84px);
	font-size: 17px;
	line-height: 1.8;
	color: #33475b;
}

.asp-service-page-content > p:first-child {
	font-size: 20px;
	line-height: 1.75;
	color: #20364b;
}

.asp-service-page-content p {
	margin: 0 0 22px;
}

.asp-service-page-content h2,
.asp-service-page-content h3,
.asp-service-page-content h4 {
	clear: both;
	margin: 44px 0 16px;
	line-height: 1.22;
	color: var(--asp-blue-dark);
}

.asp-service-page-content h2 {
	font-size: clamp(28px, 3.5vw, 40px);
}

.asp-service-page-content h3 {
	font-size: clamp(22px, 2.7vw, 30px);
}

.asp-service-page-content ul,
.asp-service-page-content ol {
	margin: 22px 0 30px;
	padding: 24px 28px 24px 52px;
	border: 1px solid var(--asp-border);
	border-left: 4px solid var(--asp-red);
	border-radius: 8px;
	background: #f7fafc;
}

.asp-service-page-content li + li {
	margin-top: 9px;
}

.asp-service-page-content img {
	display: block;
	width: 100%;
	height: auto;
	margin: 30px auto;
	border-radius: 10px;
	box-shadow: 0 14px 36px rgba(12, 36, 64, 0.12);
}

.asp-service-page-content figure {
	margin: 32px 0;
}

.asp-service-page-content figure:empty,
.asp-service-page-content p:empty {
	display: none;
}

.asp-service-page-content .col-md-12,
.asp-service-page-content .col-md-6 {
	box-sizing: border-box;
	margin: 16px 0;
	padding: 26px;
	border: 1px solid var(--asp-border);
	border-radius: 9px;
	background: var(--asp-white);
	box-shadow: 0 10px 28px rgba(12, 36, 64, 0.06);
}

.asp-service-page-content .col-md-6 {
	display: inline-block;
	width: calc(50% - 12px);
	vertical-align: top;
}

.asp-service-page-content .col-md-6 + .col-md-6 {
	margin-left: 18px;
}

.asp-service-page-content .col-md-6 h3,
.asp-service-page-content .col-md-12 h3 {
	margin-top: 0;
}

.asp-service-page-card-designed .asp-service-page-title {
	padding-bottom: 28px;
}

.asp-service-page-card-designed .asp-service-page-content {
	max-width: none;
	padding-top: 0;
}

.asp-page-hero.asp-has-media {
	background-image:
		linear-gradient(90deg, rgba(10, 31, 55, 0.94) 0%, rgba(15, 54, 88, 0.82) 56%, rgba(15, 54, 88, 0.4) 100%),
		var(--asp-page-hero-image);
	background-position: center;
	background-size: cover;
}

.asp-page-hero.asp-has-media .asp-page-hero-copy {
	max-width: 760px;
}

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

	.asp-service-page-hero-media,
	.asp-service-page-hero-media img {
		min-height: 300px;
	}

	.asp-service-page-hero-media::after {
		background: linear-gradient(180deg, rgba(12, 36, 64, 0.22), transparent 35%);
	}
}

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

	.asp-service-page-content {
		padding: 34px 24px 54px;
		font-size: 16px;
	}

	.asp-service-page-content > p:first-child {
		font-size: 18px;
	}

	.asp-service-page-content .col-md-6 {
		display: block;
		width: 100%;
	}

	.asp-service-page-content .col-md-6 + .col-md-6 {
		margin-left: 0;
	}
}

/* v4.8.3 Professional long-form blog post layout */
.asp-post-main {
	padding: 28px 0 80px;
}

.asp-post-shell {
	width: min(100% - 32px, 1240px);
}

.asp-blog-post {
	--asp-post-reading-width: 820px;
}

.asp-post-header {
	margin-bottom: 28px;
	padding: clamp(34px, 5vw, 62px);
	border: 1px solid var(--asp-border);
	border-radius: 14px;
	background:
		radial-gradient(circle at 92% 12%, rgba(209, 63, 48, 0.09), transparent 30%),
		var(--asp-white);
	box-shadow: 0 18px 50px rgba(12, 36, 64, 0.07);
}

.asp-post-categories {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.asp-post-categories a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 11px;
	border: 1px solid #cbd8e5;
	border-radius: 999px;
	background: #f5f8fb;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--asp-blue);
}

.asp-post-title {
	max-width: 980px;
	margin: 0;
	font-size: clamp(38px, 5.2vw, 62px);
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: var(--asp-blue-dark);
}

.asp-post-summary {
	max-width: 900px;
	margin-top: 22px;
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.7;
	color: #42566d;
}

.asp-post-summary p {
	margin: 0;
}

.asp-post-meta {
	display: flex;
	gap: 12px 24px;
	flex-wrap: wrap;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--asp-border);
	font-size: 14px;
	font-weight: 700;
	color: var(--asp-muted);
}

.asp-post-meta span {
	position: relative;
}

.asp-post-meta span + span::before {
	position: absolute;
	top: 50%;
	left: -14px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #91a0b0;
	transform: translateY(-50%);
	content: "";
}

.asp-post-layout {
	display: grid;
	grid-template-columns: minmax(0, var(--asp-post-reading-width)) minmax(250px, 310px);
	justify-content: center;
	align-items: start;
	gap: 30px;
}

.asp-post-primary {
	min-width: 0;
}

.asp-post-content {
	padding: clamp(30px, 4.2vw, 54px);
	border: 1px solid var(--asp-border);
	border-radius: 14px;
	background: var(--asp-white);
	box-shadow: 0 18px 50px rgba(12, 36, 64, 0.06);
	font-size: 17px;
	line-height: 1.82;
	color: #27394d;
}

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

.asp-post-content > *:last-child {
	margin-bottom: 0;
}

.asp-post-content > p:first-child {
	font-size: 19px;
	line-height: 1.78;
	color: #1e344b;
}

.asp-post-content p {
	margin: 0 0 1.35em;
}

.asp-post-content h2,
.asp-post-content h3,
.asp-post-content h4 {
	clear: both;
	scroll-margin-top: 30px;
	color: var(--asp-blue-dark);
}

.asp-post-content h2 {
	margin: 50px 0 18px;
	padding-top: 4px;
	font-size: clamp(27px, 3.1vw, 36px);
	line-height: 1.22;
	letter-spacing: -0.015em;
}

.asp-post-content h3 {
	margin: 34px 0 14px;
	font-size: clamp(22px, 2.5vw, 28px);
	line-height: 1.28;
}

.asp-post-content h4 {
	margin: 28px 0 12px;
	font-size: 20px;
	line-height: 1.35;
}

.asp-post-content a {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.asp-post-content ul,
.asp-post-content ol {
	margin: 0 0 28px;
	padding-left: 1.45em;
}

.asp-post-content li {
	padding-left: 0.2em;
}

.asp-post-content li + li {
	margin-top: 8px;
}

.asp-post-content blockquote {
	margin: 32px 0;
	padding: 24px 28px;
	border: 0;
	border-left: 5px solid var(--asp-red);
	border-radius: 0 9px 9px 0;
	background: #fff6f3;
	font-size: 18px;
	color: #31465c;
}

.asp-post-content blockquote p:last-child {
	margin-bottom: 0;
}

.asp-post-content .wp-block-image,
.asp-post-content figure {
	max-width: 100%;
	margin: 32px 0;
}

.asp-post-content figure:empty,
.asp-post-content p:empty {
	display: none;
}

.asp-post-content img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 12px 34px rgba(12, 36, 64, 0.11);
}

.asp-post-content figcaption {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.55;
	text-align: center;
	color: var(--asp-muted);
}

.asp-post-table-scroll,
.asp-post-content .wp-block-table {
	max-width: 100%;
	margin: 30px 0;
	overflow-x: auto;
	border: 1px solid #cdd7e2;
	border-radius: 9px;
	background: var(--asp-white);
	-webkit-overflow-scrolling: touch;
}

.asp-post-content .wp-block-table table,
.asp-post-content table {
	width: 100%;
	min-width: 620px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.55;
}

.asp-post-content th,
.asp-post-content td {
	padding: 14px 16px;
	border: 1px solid #d9e1e9;
	vertical-align: top;
	text-align: left;
}

.asp-post-content thead th {
	border-color: #234e77;
	background: var(--asp-blue);
	color: var(--asp-white);
	font-weight: 800;
}

.asp-post-content tbody tr:nth-child(even) {
	background: #f6f8fb;
}

.asp-post-content tbody th {
	background: #eef3f7;
	color: var(--asp-blue-dark);
}

.asp-post-content .asp-note,
.asp-post-content .asp-tip,
.asp-post-content .asp-important {
	margin: 30px 0;
	padding: 22px 24px;
	border: 1px solid #cad8e6;
	border-left: 5px solid var(--asp-blue);
	border-radius: 9px;
	background: #f4f8fc;
}

.asp-post-content .asp-important {
	border-left-color: var(--asp-red);
	background: #fff6f3;
}

.asp-post-sidebar-sticky {
	position: sticky;
	top: 24px;
}

.admin-bar .asp-post-sidebar-sticky {
	top: 56px;
}

.asp-post-toc,
.asp-post-sidebar-card,
.asp-post-ddp-card {
	margin-bottom: 18px;
	padding: 22px;
	border: 1px solid var(--asp-border);
	border-radius: 12px;
	background: var(--asp-white);
	box-shadow: 0 12px 34px rgba(12, 36, 64, 0.06);
}

.asp-post-toc h2,
.asp-post-sidebar-card h2 {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.3;
	color: var(--asp-blue-dark);
}

.asp-post-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.asp-post-toc-list li + li {
	margin-top: 10px;
}

.asp-post-toc-list a {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	color: #42566d;
}

.asp-post-toc-list .is-h3 a {
	padding-left: 14px;
	border-left: 2px solid #d8e1e9;
	font-size: 13px;
	font-weight: 600;
}

.asp-post-toc-list a:hover,
.asp-post-toc-list a:focus {
	color: var(--asp-red);
}

.asp-post-sidebar-card p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--asp-muted);
}

.asp-post-eyebrow {
	margin: 0 0 8px !important;
	font-size: 12px !important;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--asp-red) !important;
}

.asp-post-quote-card .asp-button {
	width: 100%;
}

.asp-post-services ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.asp-post-services a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

.asp-post-services a::after {
	content: "→";
}

.asp-post-ddp-card {
	display: block;
	background: linear-gradient(135deg, var(--asp-blue-dark), var(--asp-blue));
	color: var(--asp-white);
}

.asp-post-ddp-card:hover,
.asp-post-ddp-card:focus {
	color: var(--asp-white);
	transform: translateY(-1px);
}

.asp-post-ddp-card span,
.asp-post-ddp-card strong,
.asp-post-ddp-card em {
	display: block;
}

.asp-post-ddp-card span {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffd7d0;
}

.asp-post-ddp-card strong {
	font-size: 18px;
	line-height: 1.35;
}

.asp-post-ddp-card em {
	margin-top: 13px;
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
}

.asp-post-faq {
	margin: 48px 0 34px;
	padding: clamp(22px, 4vw, 32px);
	border: 1px solid #d9e2eb;
	border-radius: 12px;
	background: #f6f9fc;
}

.asp-post-content .asp-post-faq__title {
	margin: 0 0 20px;
	padding: 0;
	font-size: clamp(27px, 3vw, 34px);
}

.asp-post-faq__items {
	display: grid;
	gap: 11px;
}

.asp-post-faq__item {
	border: 1px solid #d7e0e9;
	border-radius: 8px;
	background: var(--asp-white);
	overflow: hidden;
}

.asp-post-faq__item summary {
	position: relative;
	padding: 17px 48px 17px 18px;
	cursor: pointer;
	font-weight: 800;
	line-height: 1.45;
	color: var(--asp-blue-dark);
	list-style: none;
}

.asp-post-faq__item summary::-webkit-details-marker {
	display: none;
}

.asp-post-faq__item summary::after {
	position: absolute;
	top: 16px;
	right: 18px;
	font-size: 20px;
	line-height: 1;
	content: "+";
}

.asp-post-faq__item[open] summary::after {
	content: "−";
}

.asp-post-faq__answer {
	padding: 0 18px 18px;
	color: #3c5065;
}

.asp-post-faq__answer p {
	margin: 0;
}

.asp-post-final-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	margin-top: 28px;
	padding: clamp(28px, 4vw, 42px);
	border-radius: 14px;
	background:
		radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.14), transparent 34%),
		linear-gradient(135deg, var(--asp-blue-dark), var(--asp-blue));
	color: var(--asp-white);
}

.asp-post-final-cta h2 {
	margin: 0 0 10px;
	font-size: clamp(27px, 3vw, 36px);
	line-height: 1.2;
	color: var(--asp-white);
}

.asp-post-final-cta p:not(.asp-post-eyebrow) {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
}

.asp-post-final-cta .asp-post-eyebrow {
	color: #ffd7d0 !important;
}

.asp-related-posts {
	margin-top: 42px;
}

.asp-post-section-heading h2 {
	margin: 0 0 20px;
	font-size: clamp(28px, 3.3vw, 38px);
	color: var(--asp-blue-dark);
}

.asp-related-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.asp-related-post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 22px;
	border: 1px solid var(--asp-border);
	border-radius: 11px;
	background: var(--asp-white);
	box-shadow: 0 10px 30px rgba(12, 36, 64, 0.05);
}

.asp-related-post-card h3 {
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 1.4;
}

.asp-related-post-card p {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--asp-muted);
}

.asp-related-post-link {
	margin-top: auto;
	font-size: 14px;
	font-weight: 800;
}

@media (max-width: 1050px) {
	.asp-post-layout {
		grid-template-columns: minmax(0, 820px);
	}

	.asp-post-sidebar-sticky {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.asp-post-toc {
		grid-column: 1 / -1;
	}

	.asp-post-toc,
	.asp-post-sidebar-card,
	.asp-post-ddp-card {
		margin-bottom: 0;
	}
}

@media (max-width: 760px) {
	.asp-post-main {
		padding-bottom: 56px;
	}

	.asp-post-header,
	.asp-post-content {
		padding: 26px 22px;
		border-radius: 10px;
	}

	.asp-post-title {
		font-size: clamp(34px, 10vw, 46px);
	}

	.asp-post-meta span + span::before {
		display: none;
	}

	.asp-post-content {
		font-size: 16px;
		line-height: 1.78;
	}

	.asp-post-content > p:first-child {
		font-size: 17px;
	}

	.asp-post-content h2 {
		margin-top: 40px;
	}

	.asp-post-sidebar-sticky,
	.asp-related-post-grid,
	.asp-post-final-cta {
		grid-template-columns: 1fr;
	}

	.asp-post-final-cta .asp-button {
		width: 100%;
	}

	.asp-post-content .wp-block-table table,
	.asp-post-content table {
		min-width: 560px;
	}
}
