/* =========================================================
   On-page ToC jump-nav (QW1)
   ========================================================= */

.about-toc {
  max-width: 1100px;
  margin: clamp(24px, 4vw, 40px) auto 0;
  padding: 16px clamp(20px, 4vw, 32px);
  background: #F9FAFB;
  border: 1px solid #EEF0F4;
  border-radius: 12px;
}

.about-toc__title {
  margin: 0 0 8px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
}

.about-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}

.about-toc__list li {
  counter-increment: toc;
  font-size: 14px;
}

.about-toc__list a {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #475569;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.about-toc__list a::before {
  content: counter(toc) ".";
  font-size: 11px;
  font-weight: 600;
  color: #4B7DE1;
  letter-spacing: 0.02em;
}

.about-toc__list a:hover,
.about-toc__list a:focus-visible {
  color: #4B7DE1;
  border-bottom-color: #4B7DE1;
}

/* Disambiguation note - appears below H1 in hero, scoped to /about/ */
/* 2026 Info Callout pattern: bordered box with inline icon */
.hero__disambiguation {
	position: relative;
	background: #F5F7FE;
	border-left: 3px solid #4B7DE1;
	border-radius: 6px;
	padding: 14px 16px 14px 44px;
	margin: 12px 0 24px;
	font-size: 14px;
	font-style: normal;
	line-height: 1.6;
	color: #475569;
}

.hero__disambiguation::before {
	content: 'i';
	position: absolute;
	left: 12px;
	top: 14px;
	width: 22px;
	height: 22px;
	background: #4B7DE1;
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	font-family: Georgia, 'Times New Roman', serif;
	font-style: italic;
}

.hero__disambiguation strong {
	color: #0F172A;
	font-weight: 600;
}

/* =========================================================
   About Story Article
   ========================================================= */

.about-story {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
}

/* Section wrapper - padding + margin handled at .about-page__story */
.about-page__story {
	padding: 60px 0 80px;
}

/* =========================================================
   H2 - gradient accent bar
   ========================================================= */

.about-story h2 {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #0F172A;
	margin: 0 0 24px 0;
	scroll-margin-top: 80px;
	position: relative;
	padding-left: 16px;
}

.about-story h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.3em;
	bottom: 0.3em;
	width: 3px;
	background: linear-gradient(180deg, #4B7DE1 0%, #818CF8 100%);
	border-radius: 2px;
}

/* Space between H2 groups */
.about-story h2 + ul,
.about-story h2 + p {
	margin-top: 0;
}

.about-story ul + h2,
.about-story p + h2 {
	margin-top: clamp(48px, 6vw, 80px);
}

/* =========================================================
   Body paragraphs
   ========================================================= */

.about-story p {
	font-size: 17px;
	line-height: 1.75;
	color: #475569;
	margin: 0 0 16px 0;
	max-width: 75ch;
}

.about-story p strong {
	color: #0F172A;
	font-weight: 600;
}

/* Generic inline links in paragraphs */
.about-story p a {
	color: #4B7DE1;
	text-decoration: none;
	border-bottom: 1px solid rgba(75, 125, 225, 0.2);
	transition: border-color 0.15s ease;
}

.about-story p a:hover {
	border-bottom-color: #4B7DE1;
}

/* =========================================================
   "What we do" - services list with case links
   ========================================================= */

.about-services {
	list-style: none;
	padding: 0;
	margin: 0 0 16px 0;
}

.about-services li {
	font-size: 17px;
	line-height: 1.75;
	color: #475569;
	padding: 6px 0 6px 20px;
	position: relative;
}

.about-services li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.85em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4B7DE1;
	opacity: 0.5;
}

/* Case links inside services list */
.about-services a[href*="/cases/"] {
	font-weight: 600;
	color: #4B7DE1;
	text-decoration: none;
	border-bottom: 1px solid rgba(75, 125, 225, 0.4);
	padding: 1px 4px;
	border-radius: 3px;
	background: rgba(75, 125, 225, 0.05);
	transition: background 0.15s ease, border-color 0.15s ease;
}

.about-services a[href*="/cases/"]:hover {
	background: rgba(75, 125, 225, 0.1);
	border-bottom-color: #4B7DE1;
}

.about-services a[href*="/cases/"]::after {
	content: '↗';
	margin-left: 3px;
	font-size: 0.85em;
	opacity: 0.6;
}

/* =========================================================
   "By the numbers" - card grid
   ========================================================= */

.about-numbers {
	list-style: none;
	padding: 0;
	margin: 0 0 16px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.about-numbers li {
	background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
	border: 1px solid #EEF0F4;
	border-radius: 12px;
	padding: 20px 24px;
	font-size: 15px;
	line-height: 1.6;
	color: #475569;
	position: relative;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.about-numbers li:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.about-numbers li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 12px;
	right: 12px;
	height: 2px;
	background: linear-gradient(90deg, #4B7DE1, #818CF8);
	border-radius: 0 0 2px 2px;
}

/* Superscript citation inside number cards */
.about-numbers li sup a {
	display: inline-block;
	padding: 0 4px;
	margin-left: 2px;
	background: #EEF3FE;
	color: #4B7DE1;
	border-radius: 4px;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	border: none;
	vertical-align: super;
}

.about-numbers li sup a:hover {
	background: #4B7DE1;
	color: white;
}

/* =========================================================
   H2 + numbers grid spacing
   ========================================================= */

.about-story h2 + .about-numbers,
.about-story h2 + .about-services {
	margin-top: 0;
}

.about-numbers + h2,
.about-services + h2 {
	margin-top: clamp(48px, 6vw, 80px);
}

/* =========================================================
   "Our approach" H2 - spacing from preceding elements
   ========================================================= */

.about-story p + h2 {
	margin-top: clamp(48px, 6vw, 80px);
}

/* =========================================================
   Sup citation markers (in paragraphs)
   ========================================================= */

.about-story sup a {
	display: inline-block;
	padding: 0 4px;
	margin-left: 2px;
	background: #EEF3FE;
	color: #4B7DE1;
	border-radius: 4px;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	border: none;
	vertical-align: super;
}

.about-story sup a:hover {
	background: #4B7DE1;
	color: white;
}

/* =========================================================
   Sources & verification callout
   ========================================================= */

.about-sources {
	background: #F9FAFB;
	border: 1px solid #EEF0F4;
	border-radius: 12px;
	padding: clamp(20px, 3vw, 32px);
	margin-top: clamp(48px, 6vw, 80px);
}

.about-sources h3 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #0F172A;
	margin: 0 0 16px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.about-sources h3::before {
	content: '✓';
	width: 24px;
	height: 24px;
	min-width: 24px;
	background: #4B7DE1;
	color: white;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.about-sources ol {
	margin: 0;
	padding-left: 0;
	counter-reset: sources;
	list-style: none;
}

.about-sources li {
	counter-increment: sources;
	font-size: 14px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 8px;
	position: relative;
	padding-left: 34px;
}

.about-sources li::before {
	content: counter(sources);
	position: absolute;
	left: 0;
	top: 2px;
	width: 22px;
	height: 22px;
	background: #EEF3FE;
	color: #4B7DE1;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.about-sources a {
	color: #4B7DE1;
	text-decoration: none;
	border-bottom: 1px solid rgba(75, 125, 225, 0.3);
	transition: border-color 0.15s ease;
}

.about-sources a:hover {
	border-bottom-color: #4B7DE1;
}

/* =========================================================
   Last reviewed chip
   ========================================================= */

.about-last-reviewed {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	padding: 6px 12px;
	background: #F9FAFB;
	border: 1px solid #EEF0F4;
	border-radius: 999px;
	font-size: 12px;
	color: #64748B;
	letter-spacing: 0.02em;
	max-width: none;
}

.about-last-reviewed::before {
	content: '🕐';
	font-size: 12px;
	filter: grayscale(1);
	opacity: 0.6;
}

/* Override paragraph defaults for the chip */
.about-page__updated.about-last-reviewed {
	font-size: 12px;
	line-height: 1.4;
	max-width: none;
	margin-top: 24px;
	margin-bottom: 0;
}

/* =========================================================
   Attributed blockquote - QW3
   ========================================================= */

.about-quote {
  margin: clamp(24px, 3vw, 32px) 0;
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, #F5F7FE 0%, #FFFFFF 100%);
  border-left: 4px solid #4B7DE1;
  border-radius: 8px;
  position: relative;
}

.about-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 80px;
  font-weight: 700;
  color: #4B7DE1;
  line-height: 1;
  opacity: 0.4;
}

.about-quote p {
  margin: 0 0 16px 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: #0F172A;
  font-style: italic;
  max-width: 75ch;
}

.about-quote__cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.about-quote__author {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
}

.about-quote__role {
  font-size: 13px;
  color: #475569;
}

/* =========================================================
   Closing CTA - Fix A
   ========================================================= */

.about-cta {
	margin-top: clamp(40px, 5vw, 64px);
	padding: clamp(24px, 4vw, 40px);
	background: linear-gradient(135deg, #EEF3FE 0%, #F5F7FE 100%);
	border: 1px solid #E0E9FB;
	border-radius: 12px;
	text-align: left;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 500;
	color: #0F172A;
	line-height: 1.5;
	max-width: none;
}

.about-cta__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 8px;
	color: #4B7DE1;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid rgba(75, 125, 225, 0.3);
	padding-bottom: 1px;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.about-cta__link:hover {
	border-bottom-color: #4B7DE1;
	transform: translateX(2px);
}

.about-cta__arrow {
	display: inline-block;
	font-weight: 700;
	transition: transform 0.15s ease;
}

.about-cta:hover .about-cta__arrow {
	transform: translateX(2px);
}

/* =========================================================
   Selected publications - Fix D
   ========================================================= */

.about-publications {
	list-style: none;
	padding: 0;
	margin: 16px 0 0 0;
}

.about-publications li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.7;
}

.about-publications li::before {
	content: '\2197';
	position: absolute;
	left: 0;
	top: 0;
	color: #4B7DE1;
	font-weight: 700;
}

.about-publications a {
	color: #4B7DE1;
	text-decoration: none;
	border-bottom: 1px solid rgba(75, 125, 225, 0.2);
	transition: border-color 0.15s ease;
}

.about-publications a:hover {
	border-bottom-color: #4B7DE1;
}
