/* ================================================================
   Catalog Overview — Test Overview redesign stylesheet
   ----------------------------------------------------------------
   Always enqueued when the catalog-overview page template is active.
   Scoped via body.catalog-overview (set by body_class filter in
   functions.php). Restyles existing block markup + extends to new
   blocks for the Test Overview redesign.

   Mirrors the static design reference at /240 Praxis Test Overview (1).html
   ================================================================ */

body.catalog-overview {
	/* 240 Tutoring (orange line) */
	--co-orange: #f37037;
	--co-orange-deep: #e95b1d;
	--co-orange-300: #f9b79b;
	--co-orange-100: #fcdbcd;

	/* 240 Certification (teal line) */
	--co-teal: #03a892;
	--co-teal-deep: #038271;
	--co-teal-300: #73cac4;
	--co-teal-100: #dcf2f0;

	/* Deep navy/purple */
	--co-navy: #34195f;
	--co-navy-900: #1f0d3a;

	/* Accent */
	--co-yellow: #ffd23f;
	--co-pink: #ef4db1;
	--co-crimson: #d62246;
	--co-green: #0ead69;
	--co-blue: #1e3a8a;

	/* Neutrals */
	--co-ink: #0f1729;
	--co-ink-soft: #1f2a44;
	--co-gray-900: #2b2b2b;
	--co-gray-700: #555;
	--co-gray-600: #707070;
	--co-gray-500: #959595;
	--co-gray-400: #c7c7c7;
	--co-gray-300: #e0e0e0;
	--co-gray-200: #ededed;
	--co-gray-100: #f5f5f5;
	--co-paper: #fff;
	--co-cream: #fdf9f4;

	--co-fg-2: var(--co-gray-700);
	--co-fg-3: var(--co-gray-600);
	--co-border: var(--co-gray-200);
	--co-border-default: var(--co-gray-300);

	--co-font-display:
		"Mona Sans", "Poppins", system-ui, -apple-system, "Segoe UI", roboto,
		sans-serif;
	--co-font-ui:
		"Inter", system-ui, -apple-system, "Segoe UI", roboto, sans-serif;
	--co-easing-out: cubic-bezier(0.2, 0.8, 0.2, 1);
	--co-shadow-xs: 0 1px 2px rgba(15, 23, 41, 0.06);
	--co-shadow-sm: 0 2px 6px rgba(15, 23, 41, 0.07);
	--co-shadow-md: 0 8px 20px rgba(15, 23, 41, 0.08);
	--co-shadow-lg: 0 16px 40px rgba(15, 23, 41, 0.1);
	--co-shadow-pop: 0 14px 30px rgba(243, 112, 55, 0.25);

	background: #fff;
	font-family: var(--co-font-display);
	color: var(--co-ink);
}

/* ─── Sub-nav (navy band w/ pill chips + teal CTA) ───────────────── */
body.catalog-overview .second-navigation-catalog {
	background: var(--co-navy);
	color: #fff;
	padding: 14px 0;
	font-size: 14px;
	position: sticky;
	top: 65px;
	z-index: 25;
}
body.catalog-overview .second-navigation-catalog .wrapper {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
body.catalog-overview .second-navigation-catalog ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4px;
}
body.catalog-overview .second-navigation-catalog .second-nav-button {
	padding: 9px 22px;
	border-radius: 999px;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	background: transparent;
	transition:
		background 200ms var(--co-easing-out),
		color 200ms var(--co-easing-out);
	display: inline-flex;
	align-items: center;
}
body.catalog-overview .second-navigation-catalog .second-nav-button:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
body.catalog-overview .second-navigation-catalog .second-nav-button.active {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	cursor: default;
}
body.catalog-overview .second-navigation-catalog .study-button {
	margin-left: 8px;
	padding: 10px 22px;
	background: var(--co-teal);
	color: #fff;
	font-weight: 600;
}
body.catalog-overview .second-navigation-catalog .study-button:hover {
	background: var(--co-teal-deep);
	filter: brightness(0.95);
}
body.catalog-overview .second-navigation-catalog .select {
	display: none;
}
@media (max-width: 768px) {
	body.catalog-overview .second-navigation-catalog ul,
	body.catalog-overview .second-navigation-catalog .study-wrapper {
		display: none;
	}
	body.catalog-overview .second-navigation-catalog .select {
		display: block;
		flex: 1;
	}
	body.catalog-overview .second-navigation-catalog .second-nav-select {
		width: 100%;
		padding: 10px 14px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
		border: 1px solid rgba(255, 255, 255, 0.2);
		font: inherit;
	}
}

/* ─── Legacy hero (acf/hero-section-post markup) restyle ────────── */
/* Applies when editor hasn't yet switched to acf/hero-section-catalog-overview.
   Keeps the existing markup but repaints to match the new design tokens. */
body.catalog-overview .post-hero,
body.catalog-overview .post-hero.full,
body.catalog-overview .post-hero.half {
	background: var(--co-teal-100);
	color: var(--co-ink);
	padding: 56px 0 64px;
	min-height: 0;
	height: auto;
	position: relative;
	overflow: visible;
}
body.catalog-overview .post-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 6% 14%,
			var(--co-orange) 3px,
			transparent 3.5px
		),
		radial-gradient(
			circle at 88% 8%,
			var(--co-teal-deep) 2.5px,
			transparent 3px
		),
		radial-gradient(
			circle at 94% 86%,
			var(--co-yellow) 3px,
			transparent 3.5px
		),
		radial-gradient(
			circle at 3% 92%,
			var(--co-navy) 2.5px,
			transparent 3px
		),
		radial-gradient(
			circle at 70% 92%,
			var(--co-crimson) 2px,
			transparent 2.5px
		),
		radial-gradient(
			circle at 22% 78%,
			var(--co-orange) 2px,
			transparent 2.5px
		);
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}
body.catalog-overview .post-hero .bg-image {
	display: none;
}
body.catalog-overview .post-hero .container-new {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
	z-index: 2;
	text-align: left;
	background: none !important;
}
body.catalog-overview .post-hero h1,
body.catalog-overview .post-hero h1.white {
	color: var(--co-ink);
	font-family: var(--co-font-display);
	font-weight: 800;
	font-size: clamp(40px, 6.5vw, 76px);
	line-height: 0.95;
	letter-spacing: -0.035em;
	text-align: left;
	margin: 0 0 22px;
}
body.catalog-overview .post-hero .practice-short-text {
	color: var(--co-fg-2);
	font-size: 18px;
	line-height: 1.55;
	text-align: left;
	margin: 0 0 24px;
	max-width: 640px;
}
body.catalog-overview .post-hero .practice-button-wrapper {
	text-align: left;
}
body.catalog-overview .post-hero .big-button,
body.catalog-overview .post-hero .orange-button,
body.catalog-overview .post-hero .purple-button,
body.catalog-overview .co-hero--split-with-facts-tile .co-hero-cta > a,
body.catalog-overview
	.co-hero--split-with-facts-tile
	.co-hero-cta
	> .big-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--co-orange);
	color: #fff;
	padding: 16px 28px;
	border-radius: 999px;
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	box-shadow: var(--co-shadow-md);
	transition:
		background 200ms var(--co-easing-out),
		box-shadow 200ms var(--co-easing-out);
}
body.catalog-overview .post-hero .big-button::after,
body.catalog-overview .post-hero .orange-button::after,
body.catalog-overview .post-hero .purple-button::after,
body.catalog-overview .co-hero--split-with-facts-tile .co-hero-cta > a::after,
body.catalog-overview
	.co-hero--split-with-facts-tile
	.co-hero-cta
	> .big-button::after {
	content: "›";
	font-size: 22px;
	line-height: 1;
	margin-top: -2px;
	font-weight: 500;
}
body.catalog-overview .post-hero .big-button:hover,
body.catalog-overview .post-hero .orange-button:hover,
body.catalog-overview .post-hero .purple-button:hover {
	background: var(--co-orange-deep);
	box-shadow: var(--co-shadow-pop);
	color: #fff;
}

/* ─── Mag-hero (split layout w/ key-facts tile) ─────────────────── */
body.catalog-overview .co-hero--split-with-facts-tile {
	background: var(--co-teal-100);
	padding: 56px 0 64px;
	min-height: 0;
	height: auto;
	position: relative;
	overflow: visible;
	color: var(--co-ink);
}
body.catalog-overview .co-hero--split-with-facts-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 6% 14%,
			var(--co-orange) 3px,
			transparent 3.5px
		),
		radial-gradient(
			circle at 88% 8%,
			var(--co-teal-deep) 2.5px,
			transparent 3px
		),
		radial-gradient(
			circle at 94% 86%,
			var(--co-yellow) 3px,
			transparent 3.5px
		),
		radial-gradient(
			circle at 3% 92%,
			var(--co-navy) 2.5px,
			transparent 3px
		),
		radial-gradient(
			circle at 70% 92%,
			var(--co-crimson) 2px,
			transparent 2.5px
		),
		radial-gradient(
			circle at 22% 78%,
			var(--co-orange) 2px,
			transparent 2.5px
		);
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}
body.catalog-overview .co-hero--split-with-facts-tile .co-hero-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
	position: relative;
	z-index: 2;
}
body.catalog-overview .co-hero--split-with-facts-tile .co-hero-title {
	font-family: var(--co-font-display);
	font-weight: 800;
	font-size: clamp(40px, 6.5vw, 76px);
	line-height: 0.95;
	letter-spacing: -0.035em;
	color: var(--co-ink);
	margin: 0 0 22px;
}
body.catalog-overview .co-hero--split-with-facts-tile .co-hero-lede {
	color: var(--co-fg-2);
	font-size: 18px;
	line-height: 1.55;
	margin: 0 0 20px;
	max-width: 560px;
}
body.catalog-overview .co-hero--split-with-facts-tile .co-hero-cta > a:hover,
body.catalog-overview
	.co-hero--split-with-facts-tile
	.co-hero-cta
	> .big-button:hover {
	background: var(--co-orange-deep);
	box-shadow: var(--co-shadow-pop);
	color: #fff;
}

/* Hero meta — dates row + byline row */
body.catalog-overview .co-hero-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	font-size: 14px;
	color: var(--co-fg-2);
	margin: 0 0 14px;
}
body.catalog-overview .co-hero-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
}
body.catalog-overview .co-hero-meta__item--updated {
	color: var(--co-orange-deep);
	font-weight: 600;
}
body.catalog-overview .co-hero-meta__ico {
	width: 14px;
	height: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
body.catalog-overview .co-hero-meta__ico svg {
	width: 100%;
	height: 100%;
}
body.catalog-overview .post-hero-byline {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	font-size: 14px;
	color: var(--co-fg-2);
	margin: 0 0 24px;
	padding-top: 0;
	padding-inline: 0;
}
/* Avatars group — all photos rendered together, stacked w/ overlap */
body.catalog-overview .post-hero-byline .byline-avatars {
	display: inline-flex;
	align-items: center;
}
body.catalog-overview .post-hero-byline .byline-avatar {
	display: inline-flex;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid var(--co-teal-100);
	overflow: hidden;
	background: var(--co-gray-200);
	flex-shrink: 0;
}
body.catalog-overview .post-hero-byline .byline-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.catalog-overview .post-hero-byline .byline-avatar + .byline-avatar {
	margin-left: -10px;
}

/* People group — "Written by [Name] · Reviewed by [Name]" inline w/ separator */
body.catalog-overview .post-hero-byline .byline-people {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
body.catalog-overview .post-hero-byline .byline-sep {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--co-border-default);
	display: inline-block;
}
body.catalog-overview .post-hero-byline .author-hover-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	position: relative;
}
body.catalog-overview .post-hero-byline .byline-line,
body.catalog-overview .post-hero-byline .byline-line.white {
	color: var(--co-fg-2);
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}
body.catalog-overview .post-hero-byline .byline-label {
	color: var(--co-fg-3);
	opacity: 1;
	font-weight: 500;
}
body.catalog-overview .post-hero-byline .author-name-link {
	color: var(--co-orange-deep);
	font-weight: 600;
	margin-left: 0;
}
body.catalog-overview .post-hero-byline .author-name-link:hover {
	text-decoration: underline;
}
body.catalog-overview .post-hero-byline .byline-position {
	display: none;
}

/* Key facts tile (white) */
body.catalog-overview .co-key-facts {
	background: #fff;
	border-radius: 22px;
	padding: 28px 32px;
	box-shadow: var(--co-shadow-lg);
}
body.catalog-overview .co-key-facts__title {
	color: var(--co-ink);
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -0.01em;
	margin: 0 0 4px;
}
body.catalog-overview .co-key-facts__subtitle {
	font-size: 12.5px;
	color: var(--co-fg-3);
	margin: 0 0 16px;
}
body.catalog-overview .co-key-facts__list {
	margin: 0;
	padding: 0;
}
body.catalog-overview .co-key-facts__row {
	display: grid;
	grid-template-columns: 42% 58%;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--co-border);
	align-items: center;
}
body.catalog-overview .co-key-facts__row:last-child {
	border-bottom: 0;
}
body.catalog-overview .co-key-facts__row dt {
	margin: 0;
	font-weight: 600;
	color: var(--co-fg-3);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 11px;
}
body.catalog-overview .co-key-facts__row dd {
	margin: 0;
	color: var(--co-ink);
	font-weight: 600;
	font-size: 15px;
}
@media (max-width: 960px) {
	body.catalog-overview .co-hero--split-with-facts-tile .co-hero-inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
}

/* ─── Page body — content LEFT, sidebar RIGHT (1fr / 220px) ─────── */
body.catalog-overview #page-content {
	padding: 48px 0 80px;
}
body.catalog-overview #page-content .container-full {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}
body.catalog-overview #page-content .row {
	display: grid;
	grid-template-columns: 1fr 220px;
	gap: 64px;
	align-items: start;
	flex-wrap: nowrap;
}
body.catalog-overview #page-content .post-content {
	grid-column: 1;
	order: 0;
	width: auto;
	flex-basis: auto;
	max-width: none;
	padding-inline: 0;
	margin-top: 0;
	min-width: 0;
}
body.catalog-overview #page-content .post-aside {
	grid-column: 2;
	order: 0;
	width: auto;
	flex-basis: auto;
	padding-inline: 0;
	margin-bottom: 0;
	position: sticky;
	top: 148px;
	align-self: start;
}
@media (max-width: 960px) {
	body.catalog-overview #page-content .row {
		grid-template-columns: minmax(0, 1fr);
	}
	body.catalog-overview #page-content .post-content,
	body.catalog-overview #page-content .post-aside {
		grid-column: 1;
	}
	body.catalog-overview #page-content .post-aside {
		position: static;
	}
}

/* ─── Breadcrumbs ────────────────────────────────────────────────── */
body.catalog-overview .breadcrumbs {
	font-size: 13px;
	color: var(--co-fg-3);
	margin: 0 0 18px;
}
body.catalog-overview .breadcrumbs a {
	color: var(--co-fg-3);
	text-decoration: none;
	font-weight: 500;
}
body.catalog-overview .breadcrumbs a:hover {
	color: var(--co-orange-deep);
}
body.catalog-overview .breadcrumbs .active {
	color: var(--co-ink);
	font-weight: 600;
}
body.catalog-overview .breadcrumbs i {
	margin: 0 6px;
	font-size: 10px;
	color: var(--co-border-default);
}

/* ─── Content typography ────────────────────────────────────────── */
body.catalog-overview .post-content h2 {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 38px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--co-ink);
	margin: 48px 0 14px;
	scroll-margin-top: 140px;
}
body.catalog-overview .post-content h2:first-child {
	margin-top: 0;
}
body.catalog-overview .post-content h3 {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.015em;
	color: var(--co-ink);
	margin: 28px 0 10px;
}
body.catalog-overview .post-content p {
	font-size: 19px;
	line-height: 1.55;
	color: var(--co-fg-2);
	margin: 0 0 18px;
}
body.catalog-overview .post-content p a {
	color: var(--co-orange-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
}
body.catalog-overview .post-content ul {
	margin: 0 0 20px 20px;
	padding: 0;
	color: var(--co-fg-2);
	line-height: 1.55;
	font-size: 19px;
}
body.catalog-overview .post-content ul li {
	margin-bottom: 8px;
}
body.catalog-overview .post-content ul li::marker {
	color: var(--co-orange);
}
body.catalog-overview .post-content ul li strong {
	color: var(--co-ink);
}

/* ─── Callout Note block (acf/callout-note) ─────────────────────── */
body.catalog-overview #page-content .post-content .co-callout {
	border-radius: 16px;
	padding: 22px 26px;
	margin: 0 0 36px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: start;
}
body.catalog-overview #page-content .post-content .co-callout--no-icon {
	grid-template-columns: 1fr;
	padding: 24px;
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout--no-icon
	.co-callout__label {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: normal;
	text-transform: none;
	color: var(--co-ink);
	margin: 0 0 10px;
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout--no-icon
	.co-callout__body
	p:not(.co-callout__label) {
	font-size: 14px;
	color: var(--co-fg-2);
	line-height: 1.6;
	margin: 0 0 10px;
}
body.catalog-overview #page-content .post-content .co-callout--orange {
	background: var(--co-orange-100);
}
body.catalog-overview #page-content .post-content .co-callout--teal {
	background: var(--co-teal-100);
}
body.catalog-overview #page-content .post-content .co-callout__ico {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout--orange
	.co-callout__ico {
	background: var(--co-orange);
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout--teal
	.co-callout__ico {
	background: var(--co-teal);
}
body.catalog-overview #page-content .post-content .co-callout__label {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 6px;
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout--orange
	.co-callout__label {
	color: var(--co-orange-deep);
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout--teal
	.co-callout__label {
	color: var(--co-ink);
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout__body
	p:not(.co-callout__label) {
	margin: 0 0 8px;
	color: var(--co-gray-700);
	font-size: 19px;
	line-height: 1.6;
}
body.catalog-overview
	#page-content
	.post-content
	.co-callout__body
	p:not(.co-callout__label):last-child {
	margin-bottom: 0;
}

/* ─── Direct Answer (restyle core/quote.has-background w/ orange-100) */
body.catalog-overview .post-content .wp-block-quote.has-background {
	background: var(--co-orange-100) !important;
	border: 0;
	border-radius: 16px;
	padding: 22px 26px;
	margin: 0 0 36px;
}
body.catalog-overview
	.post-content
	.wp-block-quote.has-background
	p:first-child {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--co-orange-deep);
	margin: 0 0 6px;
}
body.catalog-overview
	.post-content
	.wp-block-quote.has-background
	p:not(:first-child) {
	color: var(--co-ink);
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0 0 12px;
}
body.catalog-overview
	.post-content
	.wp-block-quote.has-background
	p:last-child {
	margin-bottom: 0;
}

/* ─── Data table (flat, no striping) ────────────────────────────── */
/* Style the inner <table> directly. The wrapping <figure> stays
   transparent so margins/borders on it can't be a source of issues. */
body.catalog-overview .post-content .wp-block-table.is-style-stripes {
	background: transparent;
	border: 0 !important;
	border-bottom: 0 !important;
	box-shadow: none;
	margin: 0 !important;
	padding: 0;
}
body.catalog-overview .post-content .wp-block-table.is-style-stripes table {
	background: #fff;
	border: 0 !important;
	border-radius: 12px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	font-size: 14px;
	width: 100%;
	margin: 0;
}
body.catalog-overview .post-content .wp-block-table.is-style-stripes thead tr,
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tr:first-child:not(:only-child) {
	background: var(--co-gray-100);
}
body.catalog-overview .post-content .wp-block-table.is-style-stripes thead th,
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tr:first-child:not(:only-child)
	td {
	color: var(--co-fg-3);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 14px 16px;
	border: 0;
	text-align: left;
}
body.catalog-overview .post-content .wp-block-table.is-style-stripes tbody td {
	padding: 14px 16px;
	font-size: 14px;
	border: 0;
	line-height: 1.55;
	vertical-align: top;
	background: transparent;
}
body.catalog-overview .post-content .wp-block-table.is-style-stripes tbody tr,
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tbody
	tr:nth-child(odd),
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tbody
	tr:nth-child(even) {
	background: transparent;
}
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tbody
	td:first-child {
	font-weight: 600;
	color: var(--co-ink);
}
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tbody
	td:nth-child(2) {
	color: var(--co-fg-2);
	font-weight: 400;
}
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tbody
	td:last-child {
	color: var(--co-ink);
	font-weight: 500;
}
/* Bottom borders on middle rows only — first (header) + last get no border. */
body.catalog-overview
	.post-content
	.wp-block-table.is-style-stripes
	tbody
	tr:not(:first-child):not(:last-child)
	td {
	border-bottom: 1px solid var(--co-border);
}

/* ─── TOC sidebar — dot bullets, no border ──────────────────────── */
body.catalog-overview #page-content .post-aside .sidebar {
	background: transparent;
	padding: 0;
	top: 148px;
	box-shadow: none;
	border: 0;
}
body.catalog-overview #page-content .post-aside .aside-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--co-fg-3);
	margin: 0 0 14px;
}
body.catalog-overview #page-content .post-aside .sidebar-nav ul,
body.catalog-overview #page-content .post-aside ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
body.catalog-overview #page-content .post-aside .sidebar-nav ul li,
body.catalog-overview #page-content .post-aside ul li {
	display: block;
	width: 100%;
	border-bottom: 0;
	padding: 0;
	margin: 0;
}
body.catalog-overview #page-content .post-aside .sidebar-nav a,
body.catalog-overview #page-content .post-aside ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.25;
	color: var(--co-fg-2);
	text-decoration: none;
	font-weight: 500;
	transition:
		background 160ms var(--co-easing-out),
		color 160ms var(--co-easing-out);
}
body.catalog-overview #page-content .post-aside .sidebar-nav a:hover,
body.catalog-overview #page-content .post-aside ul li a:hover {
	background: var(--co-gray-100);
	color: var(--co-ink);
}
body.catalog-overview #page-content .post-aside .sidebar-nav a.active,
body.catalog-overview #page-content .post-aside ul li a.active {
	background: var(--co-orange-100);
	color: var(--co-orange-deep);
}
body.catalog-overview #page-content .post-aside .sidebar-nav a::before,
body.catalog-overview #page-content .post-aside ul li a::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--co-border-default);
	flex-shrink: 0;
}
body.catalog-overview #page-content .post-aside .sidebar-nav a.active::before,
body.catalog-overview #page-content .post-aside ul li a.active::before {
	background: var(--co-orange);
}

body.catalog-overview #page-content .post-aside .practice-button-wrapper-aside {
	margin-top: 20px;
	background: var(--co-teal-100);
	border-radius: 12px;
	padding: 16px;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: nowrap;
}
body.catalog-overview .practice-button-wrapper-aside .toc-cta-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--co-teal-deep);
	margin: 0 0 6px;
	text-align: left;
}
body.catalog-overview .practice-button-wrapper-aside .toc-cta-heading {
	font-family: var(--co-font-display);
	font-weight: 500;
	font-size: 13px;
	color: var(--co-fg-2);
	margin: 0 0 10px;
	line-height: 1.45;
	text-align: left;
}
body.catalog-overview .practice-button-wrapper-aside .small-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: var(--co-teal-deep);
	color: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 160ms var(--co-easing-out);
}
body.catalog-overview .practice-button-wrapper-aside .small-button:hover {
	background: var(--co-teal);
	color: #fff;
}
body.catalog-overview .practice-button-wrapper-aside .small-button svg {
	flex-shrink: 0;
}

/* ─── CTA Row (orange / teal / navy) ───────────────────────────── */
body.catalog-overview #page-content .post-content .co-cta--row {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: space-between;
	border-radius: 20px;
	padding: 32px 36px;
	margin: 28px 0 40px;
}
body.catalog-overview #page-content .post-content .co-cta--row-orange {
	background: var(--co-orange-100);
	color: var(--co-ink);
}
body.catalog-overview #page-content .post-content .co-cta--row-teal {
	background: var(--co-teal-100);
	color: var(--co-ink);
}
body.catalog-overview #page-content .post-content .co-cta--row-navy {
	background: var(--co-navy);
	color: #fff;
}
body.catalog-overview #page-content .post-content .co-cta--row .co-cta__copy {
	flex: 1 1 360px;
	min-width: 280px;
}
body.catalog-overview #page-content .post-content .co-cta--row .co-cta__title {
	margin: 0 0 8px;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: inherit;
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta--row-navy
	.co-cta__title {
	color: #fff;
}
body.catalog-overview #page-content .post-content .co-cta--row .co-cta__body {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--co-fg-2);
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta--row-navy
	.co-cta__body {
	color: rgba(255, 255, 255, 0.78);
}
body.catalog-overview #page-content .post-content .co-cta--row .co-cta__action {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
}
body.catalog-overview #page-content .post-content .co-cta--row .co-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--co-orange);
	color: #fff;
	font-family: var(--co-font-ui);
	font-weight: 600;
	font-size: 15px;
	padding: 14px 22px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta--row
	.co-cta__btn:hover {
	background: var(--co-orange-deep);
	color: #fff;
	box-shadow: var(--co-shadow-pop);
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta--row
	.co-cta__btn--secondary {
	background: #fff;
	color: var(--co-ink);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta--row
	.co-cta__btn--secondary:hover {
	background: var(--co-cream);
	color: var(--co-ink);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
body.catalog-overview #page-content .post-content .co-cta--row .co-cta__sep {
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--co-fg-3);
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta--row-navy
	.co-cta__sep {
	color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 720px) {
	body.catalog-overview #page-content .post-content .co-cta--row {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ─── CTA Banner — teal-deep panel w/ confetti + button ─────────── */
body.catalog-overview #page-content .post-content .co-cta-banner {
	position: relative;
	background: var(--co-teal-deep);
	color: #fff;
	border-radius: 24px;
	padding: 44px 48px;
	margin: 28px 0 40px;
}
body.catalog-overview #page-content .post-content .co-cta-banner__confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.85;
	border-radius: 24px;
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta-banner__confetti
	span {
	position: absolute;
	border-radius: 50%;
}
body.catalog-overview #page-content .post-content .co-cta-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: space-between;
}
body.catalog-overview #page-content .post-content .co-cta-banner__copy {
	flex: 1 1 360px;
	min-width: 300px;
}
body.catalog-overview #page-content .post-content .co-cta-banner__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--co-font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--co-yellow);
	margin: 0 0 12px;
}
body.catalog-overview #page-content .post-content .co-cta-banner__eyebrow .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--co-yellow);
	flex-shrink: 0;
	position: static;
	display: inline-block;
	animation: none;
}
body.catalog-overview #page-content .post-content .co-cta-banner h3 {
	margin: 0 0 8px;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.12;
	color: #fff;
	letter-spacing: -0.015em;
}
body.catalog-overview #page-content .post-content .co-cta-banner__copy p {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.86);
	max-width: 520px;
}
body.catalog-overview #page-content .post-content .co-cta-banner__dd {
	position: relative;
}
body.catalog-overview #page-content .post-content .co-cta-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: #fff;
	color: var(--co-teal-deep);
	font-family: var(--co-font-ui);
	font-weight: 600;
	font-size: 15.5px;
	padding: 15px 22px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	min-width: 268px;
	text-align: left;
	text-decoration: none;
}
body.catalog-overview #page-content .post-content .co-cta-banner__btn:hover {
	background: var(--co-gray-100);
	color: var(--co-teal-deep);
}
body.catalog-overview #page-content .post-content .co-cta-banner__btn span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body.catalog-overview #page-content .post-content .co-cta-banner__btn svg {
	flex-shrink: 0;
	transition: transform 200ms ease-out;
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta-banner__btn[aria-expanded="true"]
	svg {
	transform: rotate(180deg);
}
body.catalog-overview #page-content .post-content .co-cta-banner__list {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
	padding: 8px;
	width: min(420px, calc(100vw - 32px));
	max-height: 340px;
	overflow-y: auto;
}
body.catalog-overview #page-content .post-content .co-cta-banner__list[hidden] {
	display: none;
}
body.catalog-overview #page-content .post-content .co-cta-banner__list a {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	text-align: left;
	padding: 10px 12px;
	background: transparent;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
	font-family: var(--co-font-ui);
}
body.catalog-overview #page-content .post-content .co-cta-banner__list a:hover {
	background: var(--co-gray-100);
}
body.catalog-overview #page-content .post-content .co-cta-banner__list .code {
	flex-shrink: 0;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 12.5px;
	color: var(--co-teal-deep);
	min-width: 44px;
}
body.catalog-overview #page-content .post-content .co-cta-banner__list .name {
	font-size: 14px;
	color: var(--co-ink);
	line-height: 1.3;
	font-weight: 500;
	flex: 1;
}
body.catalog-overview #page-content .post-content .co-cta-banner__list a svg {
	flex-shrink: 0;
	color: var(--co-fg-3);
}
body.catalog-overview #page-content .post-content .co-cta-banner__list-footer {
	border-top: 1px solid var(--co-border);
	margin-top: 6px;
	padding-top: 8px;
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta-banner__list-footer
	a {
	display: block;
	padding: 10px 12px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--co-orange-deep);
	text-decoration: none;
	border-radius: 10px;
}
body.catalog-overview
	#page-content
	.post-content
	.co-cta-banner__list-footer
	a:hover {
	background: var(--co-orange-100);
}

/* ─── Find a Study Guide — full panel CTA ───────────────────────── */
body.catalog-overview .co-find-guide {
	position: relative;
	background: var(--co-teal-100);
	border-radius: 24px;
	padding: 48px;
	margin: 28px 0 40px;
}
body.catalog-overview .co-find-guide__confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: 24px;
}
body.catalog-overview .co-find-guide__confetti span {
	position: absolute;
	border-radius: 50%;
	opacity: 0.85;
}
body.catalog-overview .co-find-guide__inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}
body.catalog-overview .co-find-guide__eyebrow,
body.catalog-overview #page-content .post-content .co-find-guide__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--co-orange-deep);
	margin: 0 0 14px;
}
body.catalog-overview .co-find-guide h2,
body.catalog-overview .co-find-guide h4,
body.catalog-overview #page-content .post-content .co-find-guide h2,
body.catalog-overview #page-content .post-content .co-find-guide h4 {
	margin: 0 0 12px;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 34px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--co-ink);
}
body.catalog-overview .co-find-guide__copy {
	margin: 0 0 28px;
	font-size: 17px;
	color: var(--co-fg-2);
	line-height: 1.55;
	max-width: 540px;
}
body.catalog-overview .co-find-guide__dd {
	position: relative;
	display: inline-block;
}
body.catalog-overview .co-find-guide__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	background: var(--co-teal-deep);
	color: #fff;
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 16px;
	padding: 16px 22px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: var(--co-shadow-sm);
	min-width: 280px;
	text-decoration: none;
	transition: background 200ms var(--co-easing-out);
}
body.catalog-overview .co-find-guide__btn:hover {
	background: var(--co-teal);
	color: #fff;
}
body.catalog-overview .co-find-guide__btn svg {
	flex-shrink: 0;
	transition: transform 200ms var(--co-easing-out);
}
body.catalog-overview .co-find-guide__btn[aria-expanded="true"] svg {
	transform: rotate(180deg);
}
body.catalog-overview .co-find-guide__list {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 30;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
	padding: 8px;
	width: min(440px, calc(100vw - 32px));
	max-height: 320px;
	overflow-y: auto;
}
body.catalog-overview .co-find-guide__list[hidden] {
	display: none;
}
body.catalog-overview .co-find-guide__list-label {
	padding: 8px 12px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--co-fg-3);
}
body.catalog-overview .co-find-guide__list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	text-decoration: none;
	font-family: var(--co-font-display);
	background: transparent;
}
body.catalog-overview .co-find-guide__list a:hover {
	background: var(--co-gray-100);
}
body.catalog-overview .co-find-guide__list .code {
	flex-shrink: 0;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 12.5px;
	color: var(--co-teal-deep);
	min-width: 44px;
}
body.catalog-overview .co-find-guide__list .name {
	font-size: 14px;
	color: var(--co-ink);
	line-height: 1.3;
	font-weight: 500;
	flex: 1;
}
body.catalog-overview .co-find-guide__list a svg {
	flex-shrink: 0;
	color: var(--co-fg-3);
}
body.catalog-overview .co-find-guide__list-footer {
	border-top: 1px solid var(--co-border);
	margin-top: 6px;
	padding-top: 6px;
}
body.catalog-overview .co-find-guide__list-footer a {
	display: block;
	padding: 10px 12px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--co-orange-deep);
	text-decoration: none;
	border-radius: 10px;
}
body.catalog-overview .co-find-guide__list-footer a:hover {
	background: var(--co-orange-100);
}

/* ─── Numbered steps (flat divider style w/ leading-zero) ───────── */
body.catalog-overview
	#page-content
	.post-content
	#certifications-steps.cert-steps--numbered-list {
	margin: 0 0 36px;
	padding: 0;
}
body.catalog-overview
	#page-content
	.post-content
	#certifications-steps.cert-steps--numbered-list
	.container {
	max-width: none;
	padding: 0;
	display: block;
	gap: 0;
}
body.catalog-overview
	#page-content
	.post-content
	#certifications-steps.cert-steps--numbered-list
	.title-wrapper {
	text-align: left;
	margin: 0 0 16px;
}
body.catalog-overview
	#page-content
	.post-content
	#certifications-steps.cert-steps--numbered-list
	.title-wrapper
	h2 {
	text-align: left;
	margin: 0 0 10px;
}
body.catalog-overview
	#page-content
	.post-content
	#certifications-steps.cert-steps--numbered-list
	.title-wrapper
	p {
	text-align: left;
	margin: 0;
}
body.catalog-overview #page-content .post-content .co-steps-flat {
	list-style: none;
	margin: 12px 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
body.catalog-overview #page-content .post-content .co-steps-flat__item {
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: 25px;
	align-items: start;
	padding: 20px 0 0;
	margin: 0;
	border-top: 1px solid var(--co-border);
}
body.catalog-overview
	#page-content
	.post-content
	.co-steps-flat__item:first-child {
	border-top: 0;
	padding-top: 0;
}
body.catalog-overview #page-content .post-content .co-steps-flat__num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--co-orange-100);
	color: var(--co-orange-deep);
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
body.catalog-overview #page-content .post-content .co-steps-flat__body {
	min-width: 0;
}
body.catalog-overview #page-content .post-content .co-steps-flat__title {
	margin: 0 0 6px;
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--co-ink);
}
body.catalog-overview #page-content .post-content .co-steps-flat__text {
	margin: 0;
	font-size: 15.5px;
	color: var(--co-fg-2);
	line-height: 1.6;
}
body.catalog-overview #page-content .post-content .co-steps-flat__meta {
	margin-top: 6px;
	font-size: 12.5px;
	color: var(--co-fg-3);
	font-weight: 500;
}

/* ─── Scoring callout block ─────────────────────────────────────── */
body.catalog-overview .co-scoring-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 0 24px;
}
body.catalog-overview .co-scoring-eyebrow {
	font-size: 12px;
	color: var(--co-fg-3);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
body.catalog-overview .co-scoring-callout {
	background: var(--co-teal-100);
	border-radius: 16px;
	padding: 24px;
}
body.catalog-overview .co-scoring-callout h4 {
	margin: 0 0 10px;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 17px;
	color: var(--co-ink);
}
body.catalog-overview .co-scoring-callout p {
	margin: 0 0 10px;
	font-size: 14px;
	color: var(--co-fg-2);
	line-height: 1.6;
}
body.catalog-overview .co-scoring-callout p:last-child {
	margin-bottom: 0;
}

/* ─── Prep list (dot-prefixed title + body) ─────────────────────── */
body.catalog-overview .co-prep-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}
body.catalog-overview .co-prep-list li {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 14px;
	align-items: start;
	margin: 0;
}
body.catalog-overview .co-prep-list .dot-col {
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.catalog-overview .co-prep-list .dot-col span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--co-orange);
}
body.catalog-overview .co-prep-list h4 {
	margin: 0 0 6px;
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--co-ink);
	letter-spacing: -0.01em;
}
body.catalog-overview .co-prep-list p {
	margin: 0;
	font-size: 15.5px;
	color: var(--co-fg-2);
	line-height: 1.6;
}

/* ─── Test-day list (compact bulleted timeline) ─────────────────── */
body.catalog-overview .co-testday-list {
	margin: 0 0 24px;
	padding: 0 0 0 22px;
	font-size: 16px;
	color: var(--co-fg-2);
	line-height: 1.65;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
body.catalog-overview .co-testday-list li {
	margin: 0;
	font-size: 16px;
}
body.catalog-overview .co-testday-list li b {
	color: var(--co-ink);
	font-weight: 700;
}

/* ─── FAQ card grid (no accordion, all visible) ─────────────────── */
body.catalog-overview .co-faq-grid {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	counter-reset: co-faqn;
}
body.catalog-overview .co-faq-grid li {
	background: #fff;
	border: 1px solid var(--co-border);
	border-radius: 14px;
	padding: 22px 24px;
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 10px 16px;
	align-items: start;
	margin: 0;
}
body.catalog-overview .co-faq-grid li::before {
	content: counter(co-faqn);
	counter-increment: co-faqn;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--co-orange);
	color: #fff;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
}
body.catalog-overview #page-content .post-content .co-faq-grid h4 {
	margin: 0;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 16px;
	color: var(--co-navy);
	line-height: 1.3;
	align-self: center;
}
body.catalog-overview .co-faq-grid .co-faq-spacer {
	grid-column: 1;
}
body.catalog-overview .co-faq-grid .co-faq-answer {
	grid-column: 2;
	font-size: 14.5px;
	color: var(--co-fg-2);
	line-height: 1.6;
}
body.catalog-overview .co-faq-grid .co-faq-answer p {
	margin: 0 0 8px;
	font-size: 14.5px;
	color: var(--co-fg-2);
	line-height: 1.6;
}
body.catalog-overview .co-faq-grid .co-faq-answer p:last-child {
	margin-bottom: 0;
}
@media (max-width: 720px) {
	body.catalog-overview .co-faq-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ─── Navy CTA row (final pre-bio block) ────────────────────────── */
body.catalog-overview .co-cta-row {
	background: var(--co-orange-100);
	border-radius: 20px;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin: 28px 0;
}
body.catalog-overview .co-cta-row.navy {
	background: var(--co-navy);
	color: #fff;
}
body.catalog-overview .co-cta-row.teal {
	background: var(--co-teal-100);
}
body.catalog-overview .co-cta-row .copy {
	flex: 1 1 320px;
	min-width: 280px;
}
body.catalog-overview .co-cta-row.navy h3 {
	color: #fff;
	margin: 0 0 6px;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 24px;
	letter-spacing: -0.015em;
}
body.catalog-overview .co-cta-row.navy p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
}
body.catalog-overview .co-cta-row__buttons {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
}
body.catalog-overview .co-cta-row__or {
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
body.catalog-overview .co-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 15px;
	padding: 13px 24px;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	transition: all 200ms var(--co-easing-out);
}
body.catalog-overview .co-btn--lg {
	padding: 16px 28px;
	font-size: 16px;
}
body.catalog-overview .co-btn--primary {
	background: var(--co-orange);
	color: #fff;
}
body.catalog-overview .co-btn--primary:hover {
	background: var(--co-orange-deep);
	box-shadow: var(--co-shadow-pop);
	color: #fff;
}
body.catalog-overview .co-btn--white {
	background: #fff;
	color: var(--co-ink);
}
body.catalog-overview .co-btn--white:hover {
	background: var(--co-cream);
	color: var(--co-ink);
}

/* ─── Product Listing block — trim oversized padding on this template */
/* Block ships with vertical padding stacked through several wrappers
   (.product-listing-content, .products-container, .sort-wrapper). Each
   layer adds visible empty space when the results container has no
   AJAX content. Collapse them on this template. */
body.catalog-overview #products-listing:not(.co-find-guide) {
	margin: 32px 0;
	padding: 0;
}
body.catalog-overview #products-listing.co-find-guide {
	margin: 32px 0;
	padding: 48px;
}
body.catalog-overview #products-listing:not(.co-find-guide) .sort-wrapper {
	padding: 0;
	margin: 0;
}
body.catalog-overview
	#products-listing:not(.co-find-guide)
	.product-listing-content {
	padding: 0;
	margin: 0;
}
body.catalog-overview
	#products-listing
	.product-listing-content
	.products-container {
	padding: 0;
	margin: 0;
}
body.catalog-overview
	#products-listing
	.product-listing-content
	.container-new:empty {
	display: none;
}
/* Hide empty search-results container by default; JS toggles .has-results
   when items inject. :has() selector below progressively shows it on
   modern browsers without the JS hook. */
body.catalog-overview #products-listing #search-results-catalog-container {
	display: none;
}
body.catalog-overview
	#products-listing
	#search-results-catalog-container.has-results {
	display: block;
}
@supports selector(:has(*)) {
	body.catalog-overview
		#products-listing
		#search-results-catalog-container:has(.products-listing-wrapper > *) {
		display: block;
	}
}
body.catalog-overview #products-listing .more-wrapper {
	margin: 0;
}

/* ─── Suppress block-level "Back to Top" affordances on this template */
/* TOC sidebar already provides nav. Block render outputs sticky 40px-tall
   .hidden div that creates a visible gap before the user scrolls. */
body.catalog-overview #back-to-top-products,
body.catalog-overview #back-to-top-container,
body.catalog-overview #back-to-top-practice {
	display: none !important;
}

/* ─── Author bio panel ──────────────────────────────────────────── */
body.catalog-overview .co-author-bio {
	background: var(--co-gray-100);
	border-radius: 24px;
	padding: 28px 32px;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 28px;
	align-items: start;
	margin: 40px 0 0;
}
body.catalog-overview .co-author-bio__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #d8a89a, #b67b6d);
	overflow: hidden;
}
body.catalog-overview .co-author-bio__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.catalog-overview .co-author-bio__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}
body.catalog-overview .co-author-bio__name {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 26px;
	color: var(--co-ink);
	text-decoration: none;
	letter-spacing: -0.015em;
}
body.catalog-overview .co-author-bio__name:hover {
	color: var(--co-orange-deep);
}
body.catalog-overview #page-content .post-content .co-author-bio__social {
	display: inline-flex;
	width: 22px;
	height: 22px;
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 11px;
	text-decoration: none;
}
body.catalog-overview #page-content .post-content .co-author-bio__social:hover {
	color: #fff;
}
body.catalog-overview #page-content .post-content .co-author-bio__social--li {
	background: #0a66c2;
}
body.catalog-overview #page-content .post-content .co-author-bio__social--x {
	background: #000;
	font-family: var(--co-font-display);
	font-size: 12px;
}
body.catalog-overview .co-author-bio__text {
	margin: 0;
	font-size: 16px;
	color: var(--co-fg-2);
	line-height: 1.6;
}
