/* ================================================================
   Article (Fixed-Width) — Blog article redesign stylesheet
   ----------------------------------------------------------------
   Enqueued on all single posts (render-forced Fixed-Width redesign —
   single-article.php hardcodes 'fixed'; functions.php gates on
   is_singular('post')). Scoped via body.article-redesign (set by the
   body_class filter in functions.php). Shares the redesign system with
   catalog-overview:
   the rules below are extracted from catalog-overview.css and
   rescoped — keep the two in sync, or later split a shared base.

   Block-specific styles (related posts, pull-quote, FAQ flat grid,
   article hero variant, takeaways variant) are appended as those
   blocks are built.

   Mirrors the static reference at /Article Template _standalone_ (1).html
   ================================================================ */

/* ===== Tokens + fonts ===== */
body.article-redesign {
	/* 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);
}

/* ===== Page grid + breadcrumbs ===== */
/* ─── Page body — content LEFT, sidebar RIGHT (1fr / 220px) ─────── */
body.article-redesign #page-content {
	padding: 48px 0 80px;
}
body.article-redesign #page-content .container-full {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}
/* Above 1180 + 2×32 the content max-width yields a natural margin >= the gutter,
   so drop the side padding and let the centered max-width align with the hero. */
@media (min-width: 1244px) {
	body.article-redesign #page-content .container-full,
	body.article-redesign .article-hero .article-hero__inner,
	body.article-redesign .related .related__inner {
		padding-left: 0;
		padding-right: 0;
	}
}
body.article-redesign #page-content .row {
	display: grid;
	grid-template-columns: 1fr 220px;
	gap: 64px;
	align-items: start;
	/* Neutralize the global Bootstrap-gutter hack (.row { margin-inline: -24px });
	   this grid uses `gap`, so the negative margin only misaligned it vs the hero. */
	margin-inline: 0;
}
body.article-redesign #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.article-redesign #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.article-redesign #page-content .row {
		grid-template-columns: minmax(0, 1fr);
	}
	body.article-redesign #page-content .post-content,
	body.article-redesign #page-content .post-aside {
		grid-column: 1;
	}
	body.article-redesign #page-content .post-aside {
		position: static;
	}
}

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

/* ===== Content typography ===== */
/* ─── Content typography ────────────────────────────────────────── */
body.article-redesign .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.article-redesign .post-content h2:first-child {
	margin-top: 0;
}
body.article-redesign .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.article-redesign .post-content p {
	font-size: 19px;
	line-height: 1.55;
	color: var(--co-fg-2);
	margin: 0 0 18px;
}
body.article-redesign .post-content p a {
	color: var(--co-orange-deep);
	text-decoration: underline;
	text-underline-offset: 3px;
}
body.article-redesign .post-content ul {
	margin: 0 0 20px 20px;
	padding: 0;
	color: var(--co-fg-2);
	line-height: 1.55;
	font-size: 19px;
}
body.article-redesign .post-content ul li {
	margin-bottom: 8px;
}
body.article-redesign .post-content ul li::marker {
	color: var(--co-orange);
}
body.article-redesign .post-content ul li strong {
	color: var(--co-ink);
}
/* Core ordered list (core/list, ordered) — orange numbered badges. */
body.article-redesign .post-content ol:not(.co-faq-grid) {
	counter-reset: co-step;
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}
body.article-redesign .post-content ol:not(.co-faq-grid) li {
	counter-increment: co-step;
	position: relative;
	padding-left: 40px;
	margin-bottom: 12px;
	font-size: 19px;
	line-height: 1.65;
	color: var(--co-fg-2);
}
body.article-redesign .post-content ol:not(.co-faq-grid) li::before {
	content: counter(co-step);
	position: absolute;
	left: 0;
	top: 1px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--co-orange);
	color: #fff;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.article-redesign .post-content ol:not(.co-faq-grid) li strong {
	color: var(--co-ink);
}

/* ===== Callout Note block (takeaways / did-you-know) ===== */
/* ─── Callout Note block (acf/callout-note) ─────────────────────── */
body.article-redesign #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.article-redesign #page-content .post-content .co-callout--no-icon {
	grid-template-columns: 1fr;
	padding: 24px;
}
body.article-redesign
	#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.article-redesign
	#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.article-redesign #page-content .post-content .co-callout--orange {
	background: var(--co-orange-100);
}
body.article-redesign #page-content .post-content .co-callout--teal {
	background: var(--co-teal-100);
}
body.article-redesign #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.article-redesign
	#page-content
	.post-content
	.co-callout--orange
	.co-callout__ico {
	background: var(--co-orange);
}
body.article-redesign
	#page-content
	.post-content
	.co-callout--teal
	.co-callout__ico {
	background: var(--co-teal);
}
body.article-redesign #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.article-redesign
	#page-content
	.post-content
	.co-callout--orange
	.co-callout__label {
	color: var(--co-orange-deep);
}
body.article-redesign
	#page-content
	.post-content
	.co-callout--teal
	.co-callout__label {
	color: var(--co-ink);
}
body.article-redesign
	#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.article-redesign
	#page-content
	.post-content
	.co-callout__body
	p:not(.co-callout__label):last-child {
	margin-bottom: 0;
}

/* ===== TOC sidebar + sidebar CTA card ===== */
/* ─── TOC sidebar — dot bullets, no border ──────────────────────── */
body.article-redesign #page-content .post-aside .sidebar {
	background: transparent;
	padding: 0;
	top: 148px;
	box-shadow: none;
	border: 0;
}
body.article-redesign #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.article-redesign #page-content .post-aside .sidebar-nav ul,
body.article-redesign #page-content .post-aside ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
body.article-redesign #page-content .post-aside .sidebar-nav ul li,
body.article-redesign #page-content .post-aside ul li {
	display: block;
	width: 100%;
	border-bottom: 0;
	padding: 0;
	margin: 0;
}
body.article-redesign #page-content .post-aside .sidebar-nav a,
body.article-redesign #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.article-redesign #page-content .post-aside .sidebar-nav a:hover,
body.article-redesign #page-content .post-aside ul li a:hover {
	background: var(--co-gray-100);
	color: var(--co-ink);
}
body.article-redesign #page-content .post-aside .sidebar-nav a.active,
body.article-redesign #page-content .post-aside ul li a.active {
	background: var(--co-orange-100);
	color: var(--co-orange-deep);
}
body.article-redesign #page-content .post-aside .sidebar-nav a::before,
body.article-redesign #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.article-redesign #page-content .post-aside .sidebar-nav a.active::before,
body.article-redesign #page-content .post-aside ul li a.active::before {
	background: var(--co-orange);
}

body.article-redesign #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.article-redesign .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.article-redesign .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.article-redesign .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.article-redesign .practice-button-wrapper-aside .small-button:hover {
	background: var(--co-teal);
	color: #fff;
}
body.article-redesign .practice-button-wrapper-aside .small-button svg {
	flex-shrink: 0;
}

/* ===== Author bio panel ===== */
/* ─── Author bio panel ──────────────────────────────────────────── */
body.article-redesign .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.article-redesign .co-author-bio__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #d8a89a, #b67b6d);
	overflow: hidden;
}
body.article-redesign .co-author-bio__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.article-redesign .co-author-bio__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}
body.article-redesign .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.article-redesign .co-author-bio__name:hover {
	color: var(--co-orange-deep);
}
body.article-redesign #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.article-redesign #page-content .post-content .co-author-bio__social:hover {
	color: #fff;
}
body.article-redesign #page-content .post-content .co-author-bio__social--li {
	background: #0a66c2;
}
body.article-redesign #page-content .post-content .co-author-bio__social--x {
	background: #000;
	font-family: var(--co-font-display);
	font-size: 12px;
}
body.article-redesign .co-author-bio__text {
	margin: 0;
	font-size: 16px;
	color: var(--co-fg-2);
	line-height: 1.6;
}

/* ===== Hero meta + byline (rescoped from catalog-overview) ===== */
/* Hero meta — dates row + byline row */
body.article-redesign .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.article-redesign .co-hero-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
}
body.article-redesign .co-hero-meta__item--updated {
	color: var(--co-orange-deep);
	font-weight: 600;
}
body.article-redesign .co-hero-meta__ico {
	width: 14px;
	height: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
body.article-redesign .co-hero-meta__ico svg {
	width: 100%;
	height: 100%;
}
body.article-redesign .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.article-redesign .post-hero-byline .byline-avatars {
	display: inline-flex;
	align-items: center;
}
body.article-redesign .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.article-redesign .post-hero-byline .byline-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.article-redesign .post-hero-byline .byline-avatar + .byline-avatar {
	margin-left: -10px;
}

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

/* ===== Article hero (hero-section-post hero_layout=article) ===== */
body.article-redesign .article-hero {
	background: var(--co-orange-100);
}
body.article-redesign .article-hero__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 28px 32px 36px;
}
body.article-redesign .article-hero__title {
	font-family: var(--co-font-display);
	font-weight: 900;
	font-size: 52px;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--co-ink);
	margin: 0 0 18px;
	max-width: 920px;
	text-wrap: balance;
}
body.article-redesign .article-hero__lede {
	font-size: 20px;
	line-height: 1.6;
	color: var(--co-ink);
	font-weight: 500;
	max-width: 760px;
	margin: 0 0 8px;
}
body.article-redesign .article-hero__cta {
	margin-top: 22px;
}
@media (max-width: 760px) {
	body.article-redesign .article-hero__title {
		font-size: 36px;
	}
}

/* ===== Pull quote (core/quote in article body) ===== */
body.article-redesign .post-content blockquote.wp-block-quote {
	margin: 40px 0;
	padding: 4px 0 4px 40px;
	border-left: 4px solid var(--co-orange);
	position: relative;
	quotes: none;
}
body.article-redesign .post-content blockquote.wp-block-quote p {
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--co-ink);
	margin: 0 0 12px;
	text-wrap: balance;
}
body.article-redesign .post-content blockquote.wp-block-quote cite {
	font-family: var(--co-font-ui);
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	color: var(--co-fg-3);
}
body.article-redesign .post-content blockquote.wp-block-quote cite b,
body.article-redesign .post-content blockquote.wp-block-quote cite strong {
	color: var(--co-orange-deep);
	font-weight: 600;
}

/* ===== Pull quote (core/pullquote) ===== */
body.article-redesign #page-content .post-content .wp-block-pullquote {
	margin: 40px 0;
	padding: 4px 0 4px 40px;
	border: 0;
	border-left: 4px solid var(--co-orange);
	background: none;
	background-color: transparent;
	text-align: left;
	position: relative;
	color: inherit;
}
body.article-redesign #page-content .post-content .wp-block-pullquote::before {
	content: "\201C";
	position: absolute;
	left: 10px;
	top: -6px;
	font-family: var(--co-font-display);
	font-weight: 800;
	font-style: italic;
	font-size: 56px;
	line-height: 1;
	color: var(--co-orange-300);
	pointer-events: none;
}
body.article-redesign
	#page-content
	.post-content
	.wp-block-pullquote
	blockquote {
	margin: 0;
	border: 0;
	padding: 0;
	background: none;
	background-color: transparent;
	max-width: none;
}
body.article-redesign #page-content .post-content .wp-block-pullquote p {
	font-family: var(--co-font-display);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--co-ink);
	margin: 0 0 12px;
	text-transform: none;
	text-wrap: balance;
}
body.article-redesign #page-content .post-content .wp-block-pullquote cite {
	display: block;
	font-family: var(--co-font-ui);
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	text-transform: none;
	letter-spacing: normal;
	color: var(--co-fg-3);
}
body.article-redesign
	#page-content
	.post-content
	.wp-block-pullquote
	cite::before {
	content: "— ";
}
body.article-redesign #page-content .post-content .wp-block-pullquote cite b,
body.article-redesign
	#page-content
	.post-content
	.wp-block-pullquote
	cite
	strong {
	color: var(--co-orange-deep);
	font-weight: 600;
}

/* ===== Callout title + Key Takeaways variant ===== */
body.article-redesign .co-callout__title {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	color: var(--co-ink);
	margin: 0 0 16px;
}
body.article-redesign .co-callout--takeaways ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
body.article-redesign .co-callout--takeaways ul li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--co-fg-2);
}
body.article-redesign .co-callout--takeaways ul li:last-child {
	margin-bottom: 0;
}
body.article-redesign .co-callout--takeaways ul li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 1px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--co-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Key Takeaways — white dotted-card (matches mockup) */
body.article-redesign #page-content .post-content .co-callout--takeaways {
	grid-template-columns: 1fr;
	background: #fff;
	border-radius: 24px;
	padding: 30px 32px;
	box-shadow: var(--co-shadow-md);
	position: relative;
	overflow: hidden;
}
body.article-redesign
	#page-content
	.post-content
	.co-callout--takeaways::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		var(--co-orange-100) 1.5px,
		transparent 1.5px
	);
	background-size: 18px 18px;
	opacity: 0.5;
	pointer-events: none;
}
body.article-redesign #page-content .post-content .co-callout--takeaways > * {
	position: relative;
}
/* Hide the separate icon circle; the eyebrow carries an inline sparkle. */
body.article-redesign
	#page-content
	.post-content
	.co-callout--takeaways
	.co-callout__ico {
	display: none;
}
body.article-redesign
	#page-content
	.post-content
	.co-callout--takeaways
	.co-callout__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--co-orange-deep);
	font-family: var(--co-font-ui);
	font-size: 12px;
	letter-spacing: 0.08em;
}
body.article-redesign
	#page-content
	.post-content
	.co-callout--takeaways
	.co-callout__label::before {
	content: "";
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e95b1d' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v4M12 17v4M3 12h4M17 12h4M5.6 5.6l2.8 2.8M15.6 15.6l2.8 2.8M5.6 18.4l2.8-2.8M15.6 8.4l2.8-2.8'/%3E%3C/svg%3E")
		center / contain no-repeat;
}

/* ===== Related Posts block ("More from the blog") ===== */
body.article-redesign .related {
	background: var(--co-cream);
	border-top: 1px solid var(--co-gray-200);
	padding: 56px 0;
	margin-top: 40px;
}
body.article-redesign .related__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}
body.article-redesign .related__eyebrow {
	font-family: var(--co-font-ui);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--co-orange-deep);
	margin-bottom: 8px;
}
body.article-redesign .related__title {
	font-family: var(--co-font-display);
	font-weight: 800;
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--co-ink);
	margin: 0 0 28px;
}
body.article-redesign .related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
@media (max-width: 900px) {
	body.article-redesign .related__grid {
		grid-template-columns: 1fr;
	}
}
body.article-redesign .related-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--co-gray-200);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition:
		box-shadow 200ms var(--co-easing-out),
		transform 200ms var(--co-easing-out);
}
body.article-redesign .related-card:hover {
	box-shadow: var(--co-shadow-md);
	transform: translateY(-2px);
}
body.article-redesign .related-card__media {
	aspect-ratio: 1200 / 630;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
body.article-redesign .related-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
body.article-redesign .related-card__media[data-tone="orange"] {
	background: var(--co-orange-100);
}
body.article-redesign .related-card__media[data-tone="teal"] {
	background: var(--co-teal-100);
}
body.article-redesign .related-card__media[data-tone="navy"] {
	background: var(--co-navy);
}
body.article-redesign .related-card__media-text {
	font-family: var(--co-font-display);
	font-weight: 800;
	font-size: 22px;
	color: var(--co-orange-deep);
}
body.article-redesign
	.related-card__media[data-tone="teal"]
	.related-card__media-text {
	color: var(--co-teal-deep);
}
body.article-redesign
	.related-card__media[data-tone="navy"]
	.related-card__media-text {
	color: #fff;
}
body.article-redesign .related-card__body {
	padding: 20px 22px 24px;
	text-align: left;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
body.article-redesign .related-card__tag {
	display: inline-block;
	font-family: var(--co-font-ui);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--co-orange-deep);
	margin-bottom: 10px;
}
body.article-redesign .related-card__title {
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.3;
	color: var(--co-ink);
	margin: 0 0 12px;
	text-align: left;
}
body.article-redesign .related-card__meta {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	font-family: var(--co-font-ui);
	font-size: 12px;
	color: var(--co-fg-3);
}

/* ===== Breadcrumbs inside the article hero ===== */
body.article-redesign .article-hero .breadcrumbs {
	margin: 0 0 16px;
}

/* ===== Sidebar share row — inline, no bullets (override TOC list rules) ===== */
body.article-redesign #page-content .post-aside .share-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px;
	font-family: var(--co-font-ui);
	font-size: 14px;
	font-weight: 600;
	color: var(--co-fg-3);
}
body.article-redesign #page-content .post-aside .share-wrapper .social-share {
	list-style: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}
body.article-redesign
	#page-content
	.post-aside
	.share-wrapper
	.social-share
	li {
	display: inline-flex;
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
}
body.article-redesign
	#page-content
	.post-aside
	.share-wrapper
	.social-share
	li
	a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--co-border-default);
	transition:
		border-color 160ms var(--co-easing-out),
		transform 160ms var(--co-easing-out);
}
body.article-redesign
	#page-content
	.post-aside
	.share-wrapper
	.social-share
	li
	a:hover {
	border-color: var(--co-orange);
	transform: translateY(-1px);
}
body.article-redesign
	#page-content
	.post-aside
	.share-wrapper
	.social-share
	li
	a::before {
	content: none;
}

/* ===== Product Listing block — CTA banner / Find-a-Guide (rescoped from catalog-overview) ===== */
/* ─── CTA Banner — teal-deep panel w/ confetti + button ─────────── */
body.article-redesign #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.article-redesign #page-content .post-content .co-cta-banner__confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.85;
	border-radius: 24px;
}
body.article-redesign
	#page-content
	.post-content
	.co-cta-banner__confetti
	span {
	position: absolute;
	border-radius: 50%;
}
body.article-redesign #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.article-redesign #page-content .post-content .co-cta-banner__copy {
	flex: 1 1 360px;
	min-width: 300px;
}
body.article-redesign #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.article-redesign #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.article-redesign #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.article-redesign #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.article-redesign #page-content .post-content .co-cta-banner__dd {
	position: relative;
}
body.article-redesign #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.article-redesign #page-content .post-content .co-cta-banner__btn:hover {
	background: var(--co-gray-100);
	color: var(--co-teal-deep);
}
body.article-redesign #page-content .post-content .co-cta-banner__btn span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body.article-redesign #page-content .post-content .co-cta-banner__btn svg {
	flex-shrink: 0;
	transition: transform 200ms ease-out;
}
body.article-redesign
	#page-content
	.post-content
	.co-cta-banner__btn[aria-expanded="true"]
	svg {
	transform: rotate(180deg);
}
body.article-redesign #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.article-redesign #page-content .post-content .co-cta-banner__list[hidden] {
	display: none;
}
body.article-redesign #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.article-redesign #page-content .post-content .co-cta-banner__list a:hover {
	background: var(--co-gray-100);
}
body.article-redesign #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.article-redesign #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.article-redesign #page-content .post-content .co-cta-banner__list a svg {
	flex-shrink: 0;
	color: var(--co-fg-3);
}
body.article-redesign #page-content .post-content .co-cta-banner__list-footer {
	border-top: 1px solid var(--co-border);
	margin-top: 6px;
	padding-top: 8px;
}
body.article-redesign
	#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.article-redesign
	#page-content
	.post-content
	.co-cta-banner__list-footer
	a:hover {
	background: var(--co-orange-100);
}

/* ─── Find a Study Guide — full panel CTA ───────────────────────── */
body.article-redesign .co-find-guide {
	position: relative;
	background: var(--co-teal-100);
	border-radius: 24px;
	padding: 48px;
	margin: 28px 0 40px;
}
body.article-redesign .co-find-guide__confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: 24px;
}
body.article-redesign .co-find-guide__confetti span {
	position: absolute;
	border-radius: 50%;
	opacity: 0.85;
}
body.article-redesign .co-find-guide__inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}
body.article-redesign .co-find-guide__eyebrow,
body.article-redesign #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.article-redesign .co-find-guide h2,
body.article-redesign .co-find-guide h4,
body.article-redesign #page-content .post-content .co-find-guide h2,
body.article-redesign #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.article-redesign .co-find-guide__copy {
	margin: 0 0 28px;
	font-size: 17px;
	color: var(--co-fg-2);
	line-height: 1.55;
	max-width: 540px;
}
body.article-redesign .co-find-guide__dd {
	position: relative;
	display: inline-block;
}
body.article-redesign .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.article-redesign .co-find-guide__btn:hover {
	background: var(--co-teal);
	color: #fff;
}
body.article-redesign .co-find-guide__btn svg {
	flex-shrink: 0;
	transition: transform 200ms var(--co-easing-out);
}
body.article-redesign .co-find-guide__btn[aria-expanded="true"] svg {
	transform: rotate(180deg);
}
body.article-redesign .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.article-redesign .co-find-guide__list[hidden] {
	display: none;
}
body.article-redesign .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.article-redesign .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.article-redesign .co-find-guide__list a:hover {
	background: var(--co-gray-100);
}
body.article-redesign .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.article-redesign .co-find-guide__list .name {
	font-size: 14px;
	color: var(--co-ink);
	line-height: 1.3;
	font-weight: 500;
	flex: 1;
}
body.article-redesign .co-find-guide__list a svg {
	flex-shrink: 0;
	color: var(--co-fg-3);
}
body.article-redesign .co-find-guide__list-footer {
	border-top: 1px solid var(--co-border);
	margin-top: 6px;
	padding-top: 6px;
}
body.article-redesign .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.article-redesign .co-find-guide__list-footer a:hover {
	background: var(--co-orange-100);
}

/* ===== Product Listing block — padding/margin (rescoped from catalog-overview) ===== */
body.article-redesign #products-listing:not(.co-find-guide) {
	margin: 32px 0;
	padding: 0;
}
body.article-redesign #products-listing.co-find-guide {
	margin: 32px 0;
	padding: 48px;
}
body.article-redesign #products-listing:not(.co-find-guide) .sort-wrapper {
	padding: 0;
	margin: 0;
}
body.article-redesign
	#products-listing:not(.co-find-guide)
	.product-listing-content {
	padding: 0;
	margin: 0;
}
body.article-redesign
	#products-listing
	.product-listing-content
	.products-container {
	padding: 0;
	margin: 0;
}
body.article-redesign
	#products-listing
	.product-listing-content
	.container-new:empty {
	display: none;
}

/* ===== FAQ flat-numbered grid (faqs-blocks display_mode=flat-numbered) ===== */
/* Block markup: ol.co-faq-grid > li > h4 + .co-faq-spacer + .co-faq-answer.
   Number on the question row (h4 align-self:center); answer indents to col 2.
   minmax(0,1fr) stops the title column collapsing. Block ships its CSS as
   editorStyle only, so the front end needs this scoped copy. */
body.article-redesign .faq-blocks-section--flat-numbered .co-faq-grid {
	list-style: none;
	margin: 24px 0 40px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 28px;
	counter-reset: faq-flat;
}
@media (max-width: 720px) {
	body.article-redesign .faq-blocks-section--flat-numbered .co-faq-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
body.article-redesign .faq-blocks-section--flat-numbered .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.article-redesign
	.faq-blocks-section--flat-numbered
	.co-faq-grid
	> li::before {
	content: counter(faq-flat);
	counter-increment: faq-flat;
	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;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
}
body.article-redesign
	#page-content
	.post-content
	.faq-blocks-section--flat-numbered
	.co-faq-grid
	> li
	> h4 {
	grid-column: 2;
	align-self: center;
	margin: 0;
	font-family: var(--co-font-display);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: var(--co-navy);
}
body.article-redesign .faq-blocks-section--flat-numbered .co-faq-spacer {
	grid-column: 1;
}
body.article-redesign .faq-blocks-section--flat-numbered .co-faq-answer {
	grid-column: 2;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--co-fg-2);
}
body.article-redesign .faq-blocks-section--flat-numbered .co-faq-answer p {
	margin: 0 0 8px;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--co-fg-2);
}
body.article-redesign
	.faq-blocks-section--flat-numbered
	.co-faq-answer
	p:last-child {
	margin-bottom: 0;
}
