/*
Theme Name: AgileAngel Block Theme
Theme URI: https://agileangel.com/
Author: Zambezi Creative
Author URI: https://zambezicreative.com/
Description: A Gutenberg-first block theme for the AgileAngel redesign.
Version: 1.0.1
Requires at least: 6.6
Requires PHP: 7.4
Text Domain: agileangel
License: GPL-2.0-or-later
*/

:root {
	--aa-navy-950: #010815;
	--aa-navy-900: #020d22;
	--aa-navy-800: #05204b;
	--aa-blue: #278cff;
	--aa-blue-soft: #62b1ff;
	--aa-ink: #06142e;
	--aa-muted: #60708b;
	--aa-line: #d9e2f0;
	--aa-surface: #f4f7fb;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
a { text-underline-offset: 0.18em; }

.aa-site-header {
	position: relative;
	z-index: 40;
	background: linear-gradient(180deg, rgba(1, 8, 21, 0.99), rgba(2, 13, 34, 0.96));
	border-bottom: 1px solid rgba(98, 177, 255, 0.16);
}

.home .aa-site-header {
	position: absolute;
	inset: 0 0 auto;
	background: linear-gradient(180deg, rgba(1, 8, 21, 0.82), transparent);
	border-bottom: 0;
}

.aa-header-inner {
	min-height: 96px;
}

.aa-logo-link {
	display: inline-flex;
	width: min(220px, 42vw);
	color: #fff;
}

.aa-logo-link svg {
	display: block;
	width: 100%;
	height: auto;
overflow: visible;
}

.aa-site-header .wp-block-navigation-item__content {
	position: relative;
	padding: 0.75rem 0;
	color: #fff;
	text-decoration: none;
}

.aa-site-header .wp-block-navigation-item__content::after {
	position: absolute;
	right: 50%;
	bottom: 0.25rem;
	left: 50%;
	height: 2px;
	content: "";
	background: var(--aa-blue);
	transition: right 180ms ease, left 180ms ease;
}

.aa-site-header .wp-block-navigation-item__content:hover::after,
.aa-site-header .wp-block-navigation-item__content:focus-visible::after,
.aa-site-header .current-menu-item .wp-block-navigation-item__content::after {
	right: 0;
	left: 0;
}

.aa-page-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	align-items: end;
	min-height: clamp(310px, 42vw, 500px);
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 72% 54%, rgba(39, 140, 255, 0.28), transparent 23%),
		linear-gradient(115deg, #020b1c 0%, #061a3b 62%, #03235a 100%);
}

.aa-page-hero::before,
.aa-page-hero::after {
	position: absolute;
	z-index: -1;
	content: "";
	pointer-events: none;
}

.aa-page-hero::before {
	inset: 0;
	opacity: 0.34;
	background-image:
		radial-gradient(circle, #54a8ff 0 1px, transparent 2px),
		linear-gradient(115deg, transparent 49.3%, rgba(84, 168, 255, 0.18) 49.7%, transparent 50.2%);
	background-size: 74px 74px, 164px 164px;
	mask-image: linear-gradient(90deg, transparent, #000 55%);
}

.aa-page-hero::after {
	right: -11vw;
	bottom: -28vw;
	width: min(760px, 72vw);
	aspect-ratio: 1;
	border: 2px solid rgba(82, 162, 255, 0.55);
	border-radius: 50%;
	box-shadow: 0 0 55px rgba(39, 140, 255, 0.25), inset 0 0 55px rgba(39, 140, 255, 0.18);
}

.aa-page-hero__inner {
	width: min(90%, 1320px);
	margin-inline: auto;
	padding: clamp(5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.aa-page-hero h1 {
	max-width: 980px;
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(3rem, 6vw, 6rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.035em;
}

.aa-page-hero .aa-eyebrow { color: var(--aa-blue-soft); }

.aa-eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1878e9;
}

.aa-accent-rule {
	display: block;
	width: 58px;
	height: 3px;
	margin-top: 1.7rem;
	background: var(--aa-blue);
}

.aa-section {
	padding-top: clamp(4rem, 7vw, 7rem);
	padding-bottom: clamp(4rem, 7vw, 7rem);
}

.aa-section--soft { background: var(--aa-surface); }
.aa-section--dark { color: #fff; background: var(--aa-navy-900); }

.aa-copy {
	font-size: clamp(1rem, 1.2vw, 1.125rem);
	line-height: 1.78;
	color: #253752;
}

.aa-copy p { margin-top: 0; margin-bottom: 1.35em; }

.aa-section-title {
	margin-top: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(2.25rem, 4vw, 4rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.aa-section-title strong { color: #1779ec; }

.aa-stat-stack {
	border-left: 1px solid var(--aa-line);
}

.aa-stat {
	position: relative;
	padding: 1.25rem 0 1.25rem 4.25rem;
	border-bottom: 1px solid var(--aa-line);
}

.aa-stat::before {
	position: absolute;
	left: 1.35rem;
	top: 1.45rem;
	width: 26px;
	height: 26px;
	content: "";
	border: 2px solid var(--aa-blue);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(39, 140, 255, 0.08);
}

.aa-stat strong {
	display: block;
	font-family: var(--wp--preset--font-family--serif);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	color: #126fd8;
}

.aa-stat span {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.92rem;
	line-height: 1.45;
}

.aa-testimonial-grid { align-items: stretch; }

.aa-quote-card {
	height: 100%;
	padding: clamp(1.5rem, 3vw, 2.35rem);
	background: #fff;
	border: 1px solid #dbe4f0;
	border-radius: 10px;
	box-shadow: 0 16px 45px rgba(22, 46, 81, 0.07);
}

.aa-quote-card::before {
	display: block;
	margin-bottom: 0.65rem;
	content: "“";
	font-family: Georgia, serif;
	font-size: 3.5rem;
	line-height: 0.7;
	color: var(--aa-blue);
}

.aa-quote-card p { line-height: 1.65; }
.aa-quote-card cite { font-size: 0.85rem; font-style: normal; color: #56657a; }

.aa-strategy-card {
	height: 100%;
	padding: clamp(1.75rem, 4vw, 3rem);
	background: #fff;
	border: 1px solid var(--aa-line);
	border-top: 3px solid var(--aa-blue);
	box-shadow: 0 18px 50px rgba(5, 31, 71, 0.07);
}

.aa-strategy-card h2,
.aa-strategy-card h3 {
	font-family: var(--wp--preset--font-family--serif);
	font-weight: 500;
}

.aa-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(3.5rem, 7vw, 6rem) 5%;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, #03142f, #062c69);
}

.aa-cta::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: "";
	opacity: 0.25;
	background-image: radial-gradient(circle, #5eafff 0 1px, transparent 2px);
	background-size: 60px 60px;
}

.aa-cta h2 {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	font-weight: 500;
}

.aa-cta p { margin: 0.75rem auto 1.6rem; opacity: 0.82; }

.aa-news-grid .wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.aa-news-grid .wp-block-post {
	padding: 1.7rem;
	background: #fff;
	border: 1px solid var(--aa-line);
	border-radius: 8px;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.aa-news-grid .wp-block-post:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 46px rgba(8, 35, 77, 0.12);
}

.aa-news-grid .wp-block-post-title a { text-decoration: none; }

.aa-site-footer {
	color: rgba(255, 255, 255, 0.72);
	background: #010817;
	border-top: 1px solid rgba(98, 177, 255, 0.16);
}

.aa-site-footer a { color: #fff; text-decoration: none; }

.aa-footer-grid {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

@media (max-width: 900px) {
	.aa-header-inner { min-height: 78px; }
	.aa-site-header .wp-block-navigation__responsive-container-open { color: #fff; }
	.aa-site-header .wp-block-navigation__responsive-container.is-menu-open {
		padding: 1.5rem;
		color: #fff;
		background: var(--aa-navy-950);
	}
	.aa-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content { color: #fff; }
	.aa-news-grid .wp-block-post-template { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.aa-page-hero { min-height: 300px; }
	.aa-stat-stack { border-left: 0; }
	.aa-news-grid .wp-block-post-template { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* About page — screenshot-matched, responsive layout. */
.aa-about-page {
	margin-block: 0;
	color: #101d35;
	background: #fff;
}

.aa-about-page > * {
	margin-block: 0;
}

.aa-about-hero {
	position: relative;
	isolation: isolate;
	min-height: 650px;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(ellipse 72% 45% at 58% 102%, rgba(26, 122, 232, 0.42), transparent 69%),
		radial-gradient(circle at 83% 40%, rgba(8, 100, 221, 0.2), transparent 34%),
		linear-gradient(120deg, #010a19 0%, #021327 49%, #031b3b 100%);
}

.aa-about-hero::before {
	position: absolute;
	z-index: -2;
	inset: 13% -4% -9% 11%;
	content: "";
	opacity: 0.54;
	background:
		radial-gradient(circle, rgba(70, 170, 255, 0.95) 0 1.3px, transparent 1.8px) 0 0 / 67px 67px,
		linear-gradient(24deg, transparent 49.6%, rgba(51, 142, 236, 0.23) 50%, transparent 50.4%) 0 0 / 145px 118px,
		linear-gradient(154deg, transparent 49.6%, rgba(51, 142, 236, 0.18) 50%, transparent 50.4%) 0 0 / 170px 137px;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.aa-about-hero::after {
	position: absolute;
	z-index: -1;
	left: 13%;
	bottom: -75%;
	width: 107%;
	aspect-ratio: 1.9 / 1;
	content: "";
	border: 1px solid rgba(76, 174, 255, 0.5);
	border-radius: 50%;
	background:
		radial-gradient(circle at 58% 3%, rgba(219, 240, 255, 0.9) 0 1px, transparent 2px) 0 0 / 41px 33px,
		radial-gradient(ellipse at 42% 20%, rgba(61, 150, 232, 0.58), rgba(2, 26, 57, 0.78) 42%, #010d20 74%);
	box-shadow: 0 -20px 50px rgba(20, 118, 239, 0.3), 0 -2px 16px rgba(156, 220, 255, 0.54);
	transform: rotate(-5deg);
}

.aa-about-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 43%) minmax(0, 57%);
	align-items: center;
	width: min(90%, 1320px);
	min-height: 650px;
	margin-inline: auto;
	padding: 112px 0 40px;
}

.aa-about-hero__copy {
	position: relative;
	z-index: 3;
	margin: 0;
	padding-left: clamp(0rem, 1.5vw, 1.3rem);
}

.aa-about-kicker {
	margin: 0 0 0.65rem;
	color: #1689ff;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.aa-about-hero__title {
	margin: 0;
	max-width: 560px;
	font-family: var(--wp--preset--font-family--serif), Georgia, serif;
	font-size: clamp(3.05rem, 5.1vw, 5.45rem);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.025em;
	color: #fff;
}

.aa-about-rule {
	display: block;
	width: 60px;
	height: 3px;
	margin: 1.55rem 0 1.7rem;
	background: #1c91ff;
}

.aa-about-hero__lead {
	max-width: 455px;
	margin: 0;
	font-family: var(--wp--preset--font-family--serif), Georgia, serif;
	font-size: clamp(1.03rem, 1.25vw, 1.18rem);
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.96);
}

.aa-about-montage {
	position: relative;
	z-index: 2;
	height: 505px;
	margin: 0;
}

.aa-about-hex {
	position: absolute;
	display: block;
	width: 176px;
	height: 196px;
	clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
	background-color: #052452;
	background-image: url("assets/images/about-reference.png");
	background-repeat: no-repeat;
	filter: drop-shadow(0 0 1px #8ed0ff) drop-shadow(0 0 8px rgba(21, 137, 255, 0.72));
}

.aa-about-hex::after {
	position: absolute;
	inset: 5px;
	content: "";
	clip-path: inherit;
	box-shadow: inset 0 0 0 2px rgba(45, 147, 249, 0.85);
}

.aa-about-hex--kevin {
	top: 0;
	left: 16%;
	z-index: 3;
	background-size: 1014px 2232px;
	background-position: -606px -63px;
}

.aa-about-hex--city {
	top: 92px;
	right: 6%;
	z-index: 2;
	background-size: 1014px 2232px;
	background-position: -750px -144px;
}

.aa-about-hex--network {
	top: 180px;
	left: 16%;
	z-index: 1;
	background:
		radial-gradient(circle at 50% 49%, #6cc0ff 0 2px, transparent 3px),
		radial-gradient(circle at 21% 30%, #3aa0ff 0 2px, transparent 3px),
		radial-gradient(circle at 74% 27%, #3aa0ff 0 2px, transparent 3px),
		radial-gradient(circle at 75% 73%, #3aa0ff 0 2px, transparent 3px),
		radial-gradient(circle at 22% 72%, #3aa0ff 0 2px, transparent 3px),
		linear-gradient(32deg, transparent 49%, rgba(52, 154, 255, 0.72) 50%, transparent 51%),
		linear-gradient(148deg, transparent 49%, rgba(52, 154, 255, 0.6) 50%, transparent 51%),
		#031c43;
}

.aa-about-hex--dogs {
	top: 236px;
	right: 0;
	z-index: 4;
	background-size: 1014px 2232px;
	background-position: -775px -299px;
}

.aa-about-hex--family {
	left: 27%;
	bottom: -1px;
	z-index: 5;
	width: 195px;
	height: 205px;
	background-size: 1014px 2232px;
	background-position: -626px -426px;
}

.aa-about-bio {
	padding: clamp(3rem, 5vw, 4.8rem) 5%;
	background: #fff;
}

.aa-about-bio__columns {
	gap: clamp(2.5rem, 6vw, 6.5rem);
	width: min(100%, 1220px);
	margin: 0 auto;
}

.aa-about-story {
	font-size: 0.94rem;
	line-height: 1.58;
}

.aa-about-story p {
	margin: 0 0 1.2rem;
}

.aa-about-section-title,
.aa-about-testimonials__title {
	margin: 0 0 1.3rem;
	font-family: var(--wp--preset--font-family--serif), Georgia, serif;
	font-size: clamp(2.05rem, 3.1vw, 3.25rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.018em;
	color: #0d1c36;
}

.aa-about-section-title strong {
	font-weight: 400;
	color: #0876e8;
}

.aa-about-stats {
	padding-left: clamp(1.75rem, 3.6vw, 4rem);
	border-left: 1px solid #dbe3ed;
}

.aa-about-stat {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 1.05rem;
	align-items: start;
	padding: 1.6rem 0;
	border-bottom: 1px solid #dce3ec;
}

.aa-about-stat:last-child {
	border-bottom: 0;
}

.aa-about-stat__icon {
	display: block;
	width: 38px;
	height: 38px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.aa-about-stat--calendar .aa-about-stat__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23077cf1' stroke-width='1.8'%3E%3Crect x='6' y='9' width='28' height='25' rx='2'/%3E%3Cpath d='M12 5v8M28 5v8M6 16h28M12 22h3M19 22h3M26 22h3M12 28h3M19 28h3'/%3E%3C/svg%3E");
}

.aa-about-stat--coins .aa-about-stat__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23077cf1' stroke-width='1.8'%3E%3Cellipse cx='16' cy='11' rx='10' ry='4'/%3E%3Cpath d='M6 11v6c0 2.2 4.5 4 10 4s10-1.8 10-4v-6M6 17v6c0 2.2 4.5 4 10 4 2 0 3.8-.2 5.3-.7M6 23v6c0 2.2 4.5 4 10 4 2.4 0 4.6-.3 6.3-.9'/%3E%3Cellipse cx='28' cy='23' rx='7' ry='3'/%3E%3Cpath d='M21 23v8c0 1.7 3.1 3 7 3s7-1.3 7-3v-8M21 27c0 1.7 3.1 3 7 3s7-1.3 7-3'/%3E%3C/svg%3E");
}

.aa-about-stat--rocket .aa-about-stat__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23077cf1' stroke-width='1.8'%3E%3Cpath d='M20 4c6 5 8 12 7 21l-7 5-7-5c-1-9 1-16 7-21Z'/%3E%3Ccircle cx='20' cy='15' r='3'/%3E%3Cpath d='m13 21-6 5v7l8-4M27 21l6 5v7l-8-4M17 33l3 4 3-4'/%3E%3C/svg%3E");
}

.aa-about-stat--star .aa-about-stat__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23077cf1' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='m20 4 4.7 9.6 10.6 1.5-7.7 7.5 1.8 10.6-9.4-5-9.4 5 1.8-10.6-7.7-7.5 10.6-1.5L20 4Z'/%3E%3C/svg%3E");
}

.aa-about-stat strong {
	display: block;
	margin-top: -0.18rem;
	font-family: var(--wp--preset--font-family--serif), Georgia, serif;
	font-size: clamp(1.9rem, 2.5vw, 2.6rem);
	font-weight: 400;
	line-height: 1.05;
	color: #0876e8;
}

.aa-about-stat p {
	margin: 0.45rem 0 0;
	font-family: var(--wp--preset--font-family--serif), Georgia, serif;
	font-size: 0.96rem;
	line-height: 1.38;
	color: #172137;
}

.aa-about-testimonials {
	padding: clamp(3rem, 5vw, 4.7rem) 5%;
	background: linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
}

.aa-about-testimonials__inner {
	width: min(100%, 1160px);
	margin: 0 auto;
}

.aa-about-testimonials__title {
	margin-bottom: 1.45rem;
}

.aa-about-testimonial-list {
	display: grid;
	gap: 0;
}

.aa-about-testimonial {
	display: grid;
	grid-template-columns: 78px 44px minmax(0, 1fr);
	gap: 0.7rem;
	align-items: start;
	min-height: 122px;
	padding: 1.35rem 1.9rem;
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid #d9e1eb;
	border-radius: 8px;
	box-shadow: 0 6px 22px rgba(14, 43, 82, 0.035);
}

.aa-about-testimonial + .aa-about-testimonial {
	margin-top: -1px;
}

.aa-about-avatar {
	display: block;
	width: 66px;
	height: 66px;
	border: 2px solid #167fea;
	border-radius: 50%;
	background-color: #dce8f5;
	background-image: url("assets/images/about-reference.png");
	background-repeat: no-repeat;
	background-size: 845px 1860px;
	box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(26, 127, 234, 0.25);
}

.aa-about-avatar--jason { background-position: -106px -1100px; }
.aa-about-avatar--nova { background-position: -106px -1197px; }
.aa-about-avatar--chris { background-position: -106px -1295px; }
.aa-about-avatar--auren { background-position: -106px -1372px; }
.aa-about-avatar--nova-two { background-position: -106px -1458px; }

.aa-about-quote {
	font-family: Georgia, serif;
	font-size: 3.85rem;
	font-weight: 700;
	line-height: 0.75;
	color: #2189f2;
}

.aa-about-testimonial p {
	margin: 0 0 0.72rem;
	font-size: 0.93rem;
	line-height: 1.54;
	color: #1b2940;
}

.aa-about-testimonial cite {
	font-size: 0.79rem;
	font-style: normal;
	line-height: 1.4;
	color: #526176;
}

.aa-about-testimonial cite strong {
	color: #16243c;
}

.aa-about-testimonial cite small {
	font-size: 0.72rem;
}

.aa-about-more {
	margin-top: 1.8rem;
}

.aa-about-more .wp-block-button__link {
	padding: 0.8rem 1.5rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: #0876e8;
	border: 1px solid #0876e8;
	border-radius: 0;
	background: transparent;
}

.aa-about-more .wp-block-button__link:hover {
	color: #fff;
	background: #0876e8;
}

.aa-about-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 2.2rem 5% 2.65rem;
	text-align: center;
	color: #fff;
	background:
		radial-gradient(circle at 20% 125%, rgba(8, 127, 245, 0.55), transparent 48%),
		linear-gradient(110deg, #021a42, #031633 56%, #02132d);
}

.aa-about-cta::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: "";
	opacity: 0.38;
	background:
		radial-gradient(circle, #70bdff 0 1.2px, transparent 1.8px) 0 0 / 53px 53px,
		linear-gradient(24deg, transparent 49.5%, rgba(70, 166, 255, 0.25) 50%, transparent 50.5%) 0 0 / 130px 105px;
}

.aa-about-cta__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin: 0 auto 0.55rem;
	font-size: 1.05rem;
	line-height: 1;
	color: #fff;
	border: 2px solid #4aa6ff;
	border-radius: 50%;
	transform: rotate(-33deg);
}

.aa-about-cta h2 {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif), Georgia, serif;
	font-size: clamp(2rem, 3.7vw, 3.15rem);
	font-weight: 400;
	line-height: 1.1;
	color: #fff;
}

.aa-about-cta p {
	margin: 0.45rem auto 0.9rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
}

.aa-about-cta .wp-block-button__link {
	padding: 0.72rem 1.45rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 2px;
	background: #087df2;
}

@media (max-width: 1050px) {
	.aa-about-hero__inner {
		grid-template-columns: minmax(0, 45%) minmax(0, 55%);
	}

	.aa-about-montage {
		width: 118%;
		transform: scale(0.86);
		transform-origin: left center;
	}

	.aa-about-bio__columns {
		gap: 2.4rem;
	}

	.aa-about-stats {
		padding-left: 2rem;
	}
}

@media (max-width: 760px) {
	.aa-about-hero {
		min-height: auto;
	}

	.aa-about-hero::before {
		inset: 19% -18% -7% 0;
		-webkit-mask-image: linear-gradient(#000, #000);
		mask-image: linear-gradient(#000, #000);
	}

	.aa-about-hero::after {
		left: -37%;
		bottom: -22%;
		width: 178%;
	}

	.aa-about-hero__inner {
		display: block;
		min-height: 0;
		padding: 118px 0 0;
	}

	.aa-about-hero__copy {
		padding: 0;
	}

	.aa-about-hero__title {
		font-size: clamp(2.8rem, 12vw, 4.2rem);
	}

	.aa-about-hero__lead {
		max-width: 520px;
		font-size: 1rem;
		line-height: 1.7;
	}

	.aa-about-montage {
		width: 540px;
		height: 410px;
		margin: 0 auto -65px;
		transform: scale(0.72);
		transform-origin: top center;
	}

	.aa-about-bio,
	.aa-about-testimonials {
		padding-inline: 6%;
	}

	.aa-about-bio__columns {
		display: block;
	}

	.aa-about-story {
		font-size: 0.92rem;
	}

	.aa-about-stats {
		margin-top: 2.25rem;
		padding: 1rem 0 0;
		border-top: 1px solid #dbe3ed;
		border-left: 0;
	}

	.aa-about-stat {
		grid-template-columns: 42px 1fr;
		padding: 1.3rem 0;
	}

	.aa-about-testimonial {
		grid-template-columns: 68px 34px minmax(0, 1fr);
		padding: 1.2rem;
	}

	.aa-about-avatar {
		width: 58px;
		height: 58px;
	}
}

@media (max-width: 520px) {
	.aa-about-hero__inner {
		width: 88%;
		padding-top: 104px;
	}

	.aa-about-rule {
		margin-block: 1.2rem 1.35rem;
	}

	.aa-about-montage {
		width: 540px;
		height: 345px;
		margin-left: 50%;
		margin-bottom: -80px;
		transform: translateX(-50%) scale(0.59);
		transform-origin: top center;
	}

	.aa-about-section-title,
	.aa-about-testimonials__title {
		font-size: 2rem;
	}

	.aa-about-testimonial {
		grid-template-columns: 64px 1fr;
		gap: 0.75rem;
		padding: 1.1rem;
	}

	.aa-about-testimonial > div {
		grid-column: 1 / -1;
	}

	.aa-about-quote {
		font-size: 3.3rem;
	}

	.aa-about-testimonial p {
		font-size: 0.9rem;
	}

	.aa-about-cta {
		padding: 2rem 6% 2.3rem;
	}
}
