/* ==========================================================================
   CGC PUBLIC CHILD - color tokens (v1.8.0)
   The whole scheme lives here. PROPOSED values - confirm/adjust against the
   CGCA child theme. Everything below references these variables, so changing
   the scheme is editing these few lines (then bump version + clear cache).
   ========================================================================== */
:root {
	--cgc-primary:        #1f9ab6; /* brand teal (lighter end of gradients) */
	--cgc-primary-deep:   #15788f; /* hover / active teal */
	--cgc-primary-dark:   #0c5468; /* darker blue - start of button gradient (PROPOSED) */

	--cgc-ink:            #474e61; /* body text (unchanged) */
	--cgc-heading:        #1b2738; /* darker heading colour - more contrast (PROPOSED) */

	--cgc-band-dark:      #122a3a; /* colour-block base, dark blue (PROPOSED) */
	--cgc-band-light:     #1c5e76; /* colour-block lighter end - a slight lift, stays dark for white-text contrast (PROPOSED) */

	/* Button: darker blue -> brand teal (the "slight gradient to #1f9ab6"). */
	--cgc-btn-grad:       linear-gradient(160deg, var(--cgc-primary-dark) 0%, var(--cgc-primary) 100%);
	--cgc-btn-grad-hover: linear-gradient(160deg, #0a4658 0%, var(--cgc-primary-deep) 100%);

	/* Colour bands (CTA / banners): dark blue, slight lift toward teal. */
	--cgc-band-grad:      linear-gradient(160deg, var(--cgc-band-dark) 0%, var(--cgc-band-light) 100%);
}

/* ==========================================================================
   CGC Public Child - Components
   v1.0.0
   All selectors namespaced .cgc- to avoid Avada collisions.
   Brand: teal var(--cgc-primary) / navy var(--cgc-ink) / Poppins headings / Inter body.
   ==========================================================================

   SECTION 1: Email Capture ([cgc_capture])
   ========================================================================== */

.cgc-capture {
	box-sizing: border-box;
	font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	margin: 2rem 0;
}
.cgc-capture *,
.cgc-capture *::before,
.cgc-capture *::after {
	box-sizing: inherit;
}

.cgc-capture__headline {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 0.5rem;
}

.cgc-capture__text {
	margin: 0 0 1.1rem;
	line-height: 1.55;
}

.cgc-capture__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.cgc-capture__input {
	flex: 1 1 220px;
	min-width: 0;
	padding: 0.78rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	border: 1px solid #c9d4dc;
	border-radius: 6px;
	background: #ffffff;
	color: var(--cgc-ink);
}
.cgc-capture__input::placeholder {
	color: #6b7d8a;
}
.cgc-capture__input:focus {
	outline: 2px solid var(--cgc-primary);
	outline-offset: 1px;
	border-color: var(--cgc-primary);
}
.cgc-capture__input--name {
	flex: 0 1 160px;
}

.cgc-capture__button {
	flex: 0 0 auto;
	padding: 0.78rem 1.5rem;
	font-size: 1rem;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	color: #ffffff;
	background: var(--cgc-btn-grad);
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.cgc-capture__button:hover,
.cgc-capture__button:focus {
	background: var(--cgc-btn-grad-hover);
	color: #ffffff;
}
.cgc-capture__button:focus-visible {
	outline: 2px solid var(--cgc-ink);
	outline-offset: 2px;
}

.cgc-capture__footnote {
	margin: 0.7rem 0 0;
	font-size: 0.8rem;
	opacity: 0.75;
}

.cgc-capture__media img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.25);
}

/* --------------------------------------------------------------------------
   Variant: banner (full-width, navy, high prominence - hero / page top)
   -------------------------------------------------------------------------- */

.cgc-capture--banner {
	display: flex;
	align-items: center;
	gap: 2rem;
	background: var(--cgc-band-grad);
	color: #ffffff;
	border-radius: 10px;
	padding: 2.2rem 2.4rem;
}
.cgc-capture--banner .cgc-capture__headline {
	color: #ffffff;
	font-size: 1.55rem;
}
.cgc-capture--banner .cgc-capture__text {
	color: #d6e2ea;
}
.cgc-capture--banner .cgc-capture__footnote {
	color: #9fb6c4;
}
.cgc-capture--banner .cgc-capture__media {
	flex: 0 0 150px;
}
.cgc-capture--banner .cgc-capture__body {
	flex: 1 1 auto;
}

/* --------------------------------------------------------------------------
   Variant: inline (boxed, light, sits inside content flow mid-page)
   -------------------------------------------------------------------------- */

.cgc-capture--inline {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-left: 4px solid var(--cgc-primary);
	border-radius: 8px;
	padding: 1.6rem 1.8rem;
	color: var(--cgc-ink);
}
.cgc-capture--inline .cgc-capture__headline {
	color: var(--cgc-ink);
	font-size: 1.25rem;
}
.cgc-capture--inline .cgc-capture__media {
	flex: 0 0 110px;
}
.cgc-capture--inline .cgc-capture__body {
	flex: 1 1 auto;
}

/* --------------------------------------------------------------------------
   Variant: compact (slim single row - sidebars, footers, end of posts)
   -------------------------------------------------------------------------- */

.cgc-capture--compact {
	background: transparent;
	padding: 0;
	color: inherit;
}
.cgc-capture--compact .cgc-capture__headline {
	font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {
	.cgc-capture--banner,
	.cgc-capture--inline {
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem 1.25rem;
	}
	.cgc-capture--banner .cgc-capture__media,
	.cgc-capture--inline .cgc-capture__media {
		flex-basis: auto;
		max-width: 140px;
		margin: 0 auto;
	}
	.cgc-capture__form {
		flex-direction: column;
	}
	.cgc-capture__input,
	.cgc-capture__input--name,
	.cgc-capture__button {
		flex: 1 1 auto;
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.cgc-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}


/* ==========================================================================
   SECTION 2: Free Lessons Page (.cgc-lessons)
   v1.1.0 - Wrap the page's Code Block content in <div class="cgc-lessons">.
   All rules scoped under .cgc-lessons; no body class required.
   ========================================================================== */

.cgc-lessons {
	font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--cgc-ink);
	line-height: 1.6;
}
.cgc-lessons *,
.cgc-lessons *::before,
.cgc-lessons *::after {
	box-sizing: border-box;
}

/* Intro */
.cgc-lessons__intro {
	font-size: 1.08rem;
	max-width: 46em;
	margin: 0 0 1.6rem;
}

/* Jump navigation pills */
.cgc-jumpnav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 2.4rem;
	padding: 0;
	list-style: none;
}
.cgc-jumpnav li {
	margin: 0;
}
.cgc-jumpnav a {
	display: inline-block;
	padding: 0.45rem 1rem;
	font-family: 'Barlow', sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--cgc-primary);
	background: #ffffff;
	border: 1.5px solid var(--cgc-primary);
	border-radius: 999px;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.cgc-jumpnav a:hover,
.cgc-jumpnav a:focus {
	background: var(--cgc-primary);
	color: #ffffff;
}

/* Sections */
.cgc-lesson-section {
	margin: 0 0 3rem;
	scroll-margin-top: 120px; /* clears Avada sticky header on anchor jumps */
}
.cgc-lesson-section > h2 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.6rem;
	color: var(--cgc-ink);
	margin: 0 0 0.4rem;
	padding-bottom: 0.5rem;
	border-bottom: 3px solid var(--cgc-primary);
}
.cgc-lesson-section h3 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--cgc-primary-deep);
	margin: 1.6rem 0 0.6rem;
}
.cgc-lesson-section__lede {
	margin: 0.6rem 0 1rem;
	max-width: 46em;
}

/* Guide button (links to the pillar guide for a section) */
.cgc-guide-link {
	display: inline-block;
	margin: 0.4rem 0 0.8rem;
	padding: 0.5rem 1.1rem;
	font-family: 'Barlow', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	color: #ffffff;
	background: var(--cgc-ink);
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.15s ease;
}
.cgc-guide-link:hover,
.cgc-guide-link:focus {
	background: var(--cgc-primary);
	color: #ffffff;
}

/* Two-column lesson link lists */
.cgc-linkcols {
	column-count: 2;
	column-gap: 2.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.cgc-linkcols li {
	break-inside: avoid;
	margin: 0 0 0.55rem;
	padding-left: 1.1rem;
	position: relative;
}
.cgc-linkcols li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cgc-primary);
}
.cgc-linkcols a {
	color: var(--cgc-ink);
	text-decoration: none;
	border-bottom: 1px solid rgba(26, 143, 184, 0.35);
	transition: color 0.15s ease, border-color 0.15s ease;
}
.cgc-linkcols a:hover,
.cgc-linkcols a:focus {
	color: var(--cgc-primary);
	border-bottom-color: var(--cgc-primary);
}

/* Lead magnet promo blocks (link out to Leadpages / magnet pages - no forms) */
.cgc-magnet {
	display: flex;
	align-items: center;
	gap: 1.8rem;
	margin: 2.4rem 0;
	border-radius: 10px;
}
.cgc-magnet--banner {
	background: var(--cgc-band-grad);
	color: #ffffff;
	padding: 2rem 2.2rem;
}
.cgc-magnet--banner h3 {
	color: #ffffff !important;
	margin-top: 0 !important;
	font-size: 1.4rem !important;
}
.cgc-magnet--banner p {
	color: #d6e2ea;
	margin: 0 0 1.1rem;
}
.cgc-magnet--inline {
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-left: 4px solid var(--cgc-primary);
	padding: 1.5rem 1.8rem;
	color: var(--cgc-ink);
}
.cgc-magnet--inline h3 {
	margin-top: 0 !important;
	color: var(--cgc-ink) !important;
	font-size: 1.2rem !important;
}
.cgc-magnet--inline p {
	margin: 0 0 1rem;
}
.cgc-magnet__media {
	flex: 0 0 130px;
}
.cgc-magnet__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.25);
}
.cgc-magnet__body {
	flex: 1 1 auto;
}
.cgc-magnet__button {
	display: inline-block;
	padding: 0.75rem 1.6rem;
	font-family: 'Barlow', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff !important;
	background: var(--cgc-btn-grad);
	border-radius: 6px;
	text-decoration: none;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.cgc-magnet__button:hover,
.cgc-magnet__button:focus {
	background: var(--cgc-btn-grad-hover);
	color: #ffffff !important;
}
.cgc-magnet__note {
	display: block;
	margin-top: 0.55rem;
	font-size: 0.8rem;
	opacity: 0.75;
}

/* Academy CTA (page footer) */
.cgc-academy-cta {
	text-align: center;
	background: var(--cgc-band-grad);
	color: #ffffff;
	border-radius: 10px;
	padding: 2.6rem 2rem;
	margin: 3rem 0 1rem;
}
.cgc-academy-cta h2 {
	font-family: 'Barlow', sans-serif;
	color: #ffffff;
	font-size: 1.6rem;
	margin: 0 0 0.6rem;
	border: 0;
}
.cgc-academy-cta p {
	color: #d6e2ea;
	max-width: 40em;
	margin: 0 auto 1.4rem;
}

/* Responsive */
@media (max-width: 800px) {
	.cgc-linkcols {
		column-count: 1;
	}
	.cgc-magnet {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.cgc-magnet__media {
		flex-basis: auto;
		max-width: 150px;
		margin: 0 auto;
	}
}


/* ==========================================================================
   SECTION 3: Sales Page (.cgc-sales)
   v1.2.0 - Wrap the /join-cgc/ Code Block content in <div class="cgc-sales">.
   ========================================================================== */

.cgc-sales {
	font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--cgc-ink);
	line-height: 1.65;
}
.cgc-sales *,
.cgc-sales *::before,
.cgc-sales *::after {
	box-sizing: border-box;
}
.cgc-sales img {
	max-width: 100%;
	height: auto;
}

/* Display headings */
.cgc-sales .cgc-display {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.05;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
	color: var(--cgc-heading);
}
.cgc-sales h2.cgc-display {
	font-size: 2.9rem;
}
.cgc-sales .cgc-eyebrow {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cgc-primary);
	margin: 0 0 0.6rem;
}
.cgc-sales .cgc-section {
	margin: 0 0 4rem;
	scroll-margin-top: 120px;
}
.cgc-sales .cgc-lede {
	font-size: 1.12rem;
	max-width: 46em;
	margin: 0 0 1.4rem;
}
.cgc-sales .cgc-center {
	text-align: center;
}
.cgc-sales .cgc-center .cgc-lede {
	margin-left: auto;
	margin-right: auto;
}

/* Buttons */
.cgc-btn {
	display: inline-block;
	padding: 0.85rem 1.9rem;
	font-family: 'Barlow', sans-serif;
	font-size: 1.02rem;
	font-weight: 600;
	color: #ffffff !important;
	background: var(--cgc-btn-grad);
	border-radius: 6px;
	text-decoration: none;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.cgc-btn:hover,
.cgc-btn:focus {
	background: var(--cgc-primary-deep);
	color: #ffffff !important;
}
.cgc-btn:hover,
.cgc-btn:focus {
	filter: brightness(1.06);
	transform: translateY(-1px);
}
.cgc-btn--ghost {
	background: transparent;
	color: #ffffff !important;
	border: 2px solid rgba(255, 255, 255, 0.7);
}
.cgc-btn--ghost:hover,
.cgc-btn--ghost:focus {
	background: rgba(255, 255, 255, 0.12);
}
.cgc-btn--lg {
	padding: 1rem 2.4rem;
	font-size: 1.1rem;
}

/* Hero */
.cgc-hero {
	display: flex;
	align-items: center;
	gap: 2.6rem;
	background: var(--cgc-band-grad);
	color: #ffffff;
	border-radius: 12px;
	padding: 3rem 3rem;
	margin: 0 0 1.6rem;
}
.cgc-hero__copy {
	flex: 1 1 50%;
}
.cgc-hero__media {
	flex: 1 1 50%;
}
.cgc-hero .cgc-display {
	color: #ffffff;
	font-size: 3.6rem;
}
.cgc-hero p {
	color: #d6e2ea;
	font-size: 1.12rem;
	margin: 0 0 1.6rem;
}
.cgc-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}
.cgc-videoslot {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}
.cgc-videoslot img {
	display: block;
	width: 100%;
}
.cgc-videoslot iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}

/* Press strip */
.cgc-press {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2.6rem;
	padding: 1.4rem 1rem 0.4rem;
	margin: 0 0 3.4rem;
}
.cgc-press img {
	height: 44px;
	width: auto;
	opacity: 0.75;
}

/* Problem / path split */
.cgc-split {
	display: flex;
	align-items: center;
	gap: 2.6rem;
}
.cgc-split > div {
	flex: 1 1 50%;
}
.cgc-split img {
	border-radius: 10px;
	box-shadow: 0 6px 22px rgba(13, 36, 56, 0.18);
}

/* Card grids */
.cgc-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.2rem;
	margin: 1.6rem 0 0;
}
.cgc-card {
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-top: 4px solid var(--cgc-primary);
	border-radius: 8px;
	padding: 1.4rem 1.5rem;
}
.cgc-card h3,
.cgc-card h4 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.08rem;
	color: var(--cgc-ink);
	margin: 0 0 0.5rem;
}
.cgc-card p {
	margin: 0;
	font-size: 0.96rem;
}
.cgc-card ul {
	margin: 0.6rem 0 0;
	padding-left: 1.1rem;
	font-size: 0.93rem;
}
.cgc-card li {
	margin-bottom: 0.3rem;
}

/* Teacher block */
.cgc-teacher {
	display: flex;
	gap: 2.6rem;
	align-items: flex-start;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 12px;
	padding: 2.4rem 2.6rem;
}
.cgc-teacher__media {
	flex: 0 0 280px;
}
.cgc-teacher__media img {
	border-radius: 10px;
}
.cgc-teacher__copy {
	flex: 1 1 auto;
}
.cgc-quote {
	border-left: 4px solid var(--cgc-primary);
	margin: 1.4rem 0 0;
	padding: 0.2rem 0 0.2rem 1.2rem;
	font-style: italic;
	color: var(--cgc-ink);
}
.cgc-quote cite {
	display: block;
	margin-top: 0.45rem;
	font-style: normal;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--cgc-ink);
}

/* Before & After + member stories */
.cgc-ba-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.2rem;
	margin: 1.6rem 0 0;
}
.cgc-ba {
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 18px rgba(13, 36, 56, 0.18);
}
.cgc-ba img {
	display: block;
	width: 100%;
	transition: transform 0.2s ease;
}
.cgc-ba:hover img {
	transform: scale(1.03);
}
.cgc-ba__tag {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	background: var(--cgc-ink);
	color: #ffffff;
	font-family: 'Barlow', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem 0.65rem;
	border-radius: 4px;
}
.cgc-ba__tag--after {
	background: var(--cgc-primary);
}
.cgc-ba__caption {
	display: block;
	text-align: center;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--cgc-ink);
	margin-top: 0.5rem;
}

/* Testimonial cards */
.cgc-testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.2rem;
	margin: 1.6rem 0 0;
}
.cgc-testimonial {
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 8px;
	padding: 1.5rem 1.6rem;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.07);
}
.cgc-testimonial img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 0.8rem;
}
.cgc-testimonial p {
	font-style: italic;
	margin: 0 0 0.7rem;
}
.cgc-testimonial cite {
	font-style: normal;
	font-weight: 600;
	font-size: 0.9rem;
}

/* Guarantee */
.cgc-guarantee {
	display: flex;
	align-items: center;
	gap: 2.2rem;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 12px;
	padding: 2.2rem 2.4rem;
}
.cgc-guarantee__badge {
	flex: 0 0 150px;
}
.cgc-guarantee__copy {
	flex: 1 1 auto;
}
.cgc-guarantee small {
	display: block;
	margin-top: 0.8rem;
	font-size: 0.82rem;
	opacity: 0.75;
}

/* Pricing */
.cgc-pricing {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.4rem;
	margin: 2rem 0 0;
	align-items: stretch;
}
.cgc-tier {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 2rem 1.8rem;
	text-align: center;
}
.cgc-tier--featured {
	border: 2px solid var(--cgc-primary);
	box-shadow: 0 10px 30px rgba(26, 143, 184, 0.18);
	position: relative;
}
.cgc-tier__flag {
	position: absolute;
	top: -0.85rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--cgc-primary);
	color: #ffffff;
	font-family: 'Barlow', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.9rem;
	border-radius: 999px;
	white-space: nowrap;
}
.cgc-tier h3 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.15rem;
	margin: 0 0 0.6rem;
}
.cgc-tier__price {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 3.4rem;
	line-height: 1;
	color: var(--cgc-ink);
}
.cgc-tier__period {
	display: block;
	font-family: 'Barlow', sans-serif;
	font-size: 0.9rem;
	color: #5a6f80;
	margin: 0.3rem 0 1.2rem;
}
.cgc-tier ul {
	list-style: none;
	margin: 0 0 1.6rem;
	padding: 0;
	font-size: 0.95rem;
	text-align: center;
}
.cgc-tier li {
	padding: 0.42rem 0;
	border-bottom: 1px solid #edf3f7;
}
.cgc-tier li:last-child {
	border-bottom: 0;
}
.cgc-tier .cgc-btn {
	margin-top: auto;
}
.cgc-pricing-note {
	text-align: center;
	font-size: 0.95rem;
	max-width: 44em;
	margin: 1.6rem auto 0;
	color: #5a6070;
}

/* FAQ */
.cgc-faq details {
	border: 1px solid #d9e6ee;
	border-radius: 8px;
	margin-bottom: 0.7rem;
	background: #ffffff;
}
.cgc-faq summary {
	cursor: pointer;
	list-style: none;
	padding: 1rem 3rem 1rem 1.3rem;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	position: relative;
}
.cgc-faq summary::-webkit-details-marker {
	display: none;
}
.cgc-faq summary::after {
	content: '+';
	position: absolute;
	right: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: var(--cgc-primary);
	font-family: 'Barlow', sans-serif;
}
.cgc-faq details[open] summary::after {
	content: '\2013';
}
.cgc-faq details > div {
	padding: 0 1.3rem 1.2rem;
	font-size: 0.97rem;
}

/* From-Simon letter close */
.cgc-letter {
	max-width: 44em;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 12px;
	padding: 2.6rem 2.8rem;
	box-shadow: 0 6px 24px rgba(13, 36, 56, 0.08);
}
.cgc-letter p {
	margin: 0 0 1.1rem;
}
.cgc-letter .cgc-signoff {
	margin-top: 1.6rem;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
}

/* Final CTA band */
.cgc-finalcta {
	text-align: center;
	background: linear-gradient(135deg, var(--cgc-ink) 0%, #3a4053 100%);
	color: #ffffff;
	border-radius: 12px;
	padding: 3rem 2rem;
	margin: 3rem 0 1rem;
}
.cgc-finalcta .cgc-display {
	color: #ffffff;
	font-size: 2.7rem;
}
.cgc-finalcta p {
	color: #d6e2ea;
	max-width: 40em;
	margin: 0 auto 1.6rem;
}

/* Responsive */
@media (max-width: 880px) {
	.cgc-hero,
	.cgc-split,
	.cgc-teacher,
	.cgc-guarantee {
		flex-direction: column;
		padding: 1.8rem 1.4rem;
	}
	.cgc-hero .cgc-display {
		font-size: 2.2rem;
	}
	.cgc-teacher__media {
		flex-basis: auto;
		max-width: 240px;
	}
	.cgc-guarantee__badge {
		flex-basis: auto;
		max-width: 130px;
	}
	.cgc-sales h2.cgc-display {
		font-size: 1.9rem;
	}
}


/* ==========================================================================
   SECTION 4: Sales Page v2 "Ultimate" (.cgc-ult)
   v1.3.0 - Image-led conversion page. Wrap Code Block in <div class="cgc-ult cgc-sales">
   (inherits buttons/tiers/faq/letter/quotes from Section 3, adds visual systems).
   ========================================================================== */

.cgc-ult {
	font-size: 1.05rem;
}

/* Stat / trust band */
.cgc-statband {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
	text-align: center;
	margin: 0 0 4rem;
	padding: 1.6rem 1rem;
	border-top: 1px solid #d9e6ee;
	border-bottom: 1px solid #d9e6ee;
}
.cgc-stat__num {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 2.7rem;
	line-height: 1;
	color: var(--cgc-primary);
}
.cgc-stat__label {
	font-size: 0.88rem;
	color: #5a6070;
	margin-top: 0.3rem;
}

/* Persona cards ("does this sound like you?") */
.cgc-personas {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.2rem;
	margin: 1.8rem 0 0;
}
.cgc-persona {
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 1.7rem 1.7rem 1.5rem;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.06);
	text-align: left;
}
.cgc-persona__quote {
	font-size: 1.08rem;
	font-style: italic;
	color: var(--cgc-ink);
	margin: 0 0 0.9rem;
}
.cgc-persona__quote::before {
	content: '\201C';
	display: block;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 2.6rem;
	line-height: 0.6;
	color: var(--cgc-primary);
	margin-bottom: 0.5rem;
}
.cgc-persona__who {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cgc-primary);
}

/* How it works: numbered steps */
.cgc-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.6rem;
	margin: 2rem 0 0;
	counter-reset: cgcstep;
}
.cgc-step {
	text-align: left;
	position: relative;
	padding-top: 0.4rem;
}
.cgc-step::before {
	counter-increment: cgcstep;
	content: counter(cgcstep);
	display: block;
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 4rem;
	line-height: 1;
	color: var(--cgc-primary);
	opacity: 0.85;
	margin-bottom: 0.4rem;
}
.cgc-step img {
	border-radius: 8px;
	margin-bottom: 0.9rem;
	box-shadow: 0 5px 16px rgba(13, 36, 56, 0.14);
}
.cgc-step h3 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	margin: 0 0 0.4rem;
}
.cgc-step p {
	margin: 0;
	font-size: 0.97rem;
}

/* Grade path visual */
.cgc-path {
	margin: 2.2rem 0 0.6rem;
	padding: 0;
}
.cgc-path__track {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}
.cgc-path__track::before {
	content: '';
	position: absolute;
	top: 1.15rem;
	left: 3%;
	right: 3%;
	height: 4px;
	background: linear-gradient(90deg, #bcd9e6 0%, var(--cgc-primary) 100%);
	border-radius: 2px;
}
.cgc-path__node {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-size: 0.78rem;
	line-height: 1.25;
	color: #5a6070;
}
.cgc-path__dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 50%;
	background: #ffffff;
	border: 3px solid var(--cgc-primary);
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--cgc-ink);
	position: relative;
	z-index: 1;
	margin-bottom: 0.4rem;
}
.cgc-path__node--end .cgc-path__dot {
	background: var(--cgc-primary);
	color: #ffffff;
}
.cgc-path__ends {
	display: flex;
	justify-content: space-between;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--cgc-ink);
	margin-top: 0.7rem;
}

/* Image mosaic */
.cgc-mosaic {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.1rem;
	margin: 1.8rem 0 0;
}
.cgc-mosaic figure {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	background: var(--cgc-ink);
	position: relative;
}
.cgc-mosaic img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
}
.cgc-mosaic figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.6rem 1.1rem 0.85rem;
	background: linear-gradient(180deg, rgba(13, 36, 56, 0) 0%, rgba(13, 36, 56, 0.88) 70%);
	color: #ffffff;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
}

/* Full-bleed quote band */
.cgc-band {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 4rem;
	color: #ffffff;
	text-align: center;
}
.cgc-band img {
	display: block;
	width: 100%;
	height: 420px;
	object-fit: cover;
}
.cgc-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 36, 56, 0.45) 0%, rgba(13, 36, 56, 0.82) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.cgc-band__quote {
	font-size: 1.5rem;
	font-style: italic;
	max-width: 30em;
	margin: 0 0 0.9rem;
	line-height: 1.45;
}
.cgc-band__cite {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: #bfe0ee;
}

/* Check list (feedback channels) */
.cgc-checklist {
	list-style: none;
	margin: 1.2rem 0 0;
	padding: 0;
}
.cgc-checklist li {
	position: relative;
	padding: 0.45rem 0 0.45rem 2.1rem;
	font-size: 1rem;
}
.cgc-checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.62rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--cgc-primary);
}
.cgc-checklist li::after {
	content: '';
	position: absolute;
	left: 0.33rem;
	top: 0.93rem;
	width: 0.6rem;
	height: 0.32rem;
	border-left: 2.5px solid #ffffff;
	border-bottom: 2.5px solid #ffffff;
	transform: rotate(-45deg);
}
.cgc-checklist strong {
	font-family: 'Barlow', sans-serif;
}

/* For / not for */
.cgc-fit {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 1.4rem;
	margin: 1.8rem 0 0;
	text-align: left;
}
.cgc-fit__col {
	border-radius: 10px;
	padding: 1.8rem 1.9rem;
}
.cgc-fit__col--yes {
	background: #f0f8fb;
	border: 1px solid #cfe6f0;
	border-top: 4px solid var(--cgc-primary);
}
.cgc-fit__col--no {
	background: #f7f7f7;
	border: 1px solid #e3e3e3;
	border-top: 4px solid #9aa7b1;
}
.cgc-fit__col h3 {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	margin: 0 0 0.8rem;
}
.cgc-fit__col ul {
	margin: 0;
	padding-left: 1.2rem;
}
.cgc-fit__col li {
	margin-bottom: 0.55rem;
	font-size: 0.98rem;
}

@media (max-width: 880px) {
	.cgc-band img {
		height: 520px;
	}
	.cgc-band__quote {
		font-size: 1.15rem;
	}
	.cgc-path__node {
		font-size: 0;
	}
	.cgc-path__node .cgc-path__dot {
		font-size: 0.75rem;
		width: 1.9rem;
		height: 1.9rem;
	}
}


/* v1.3.1: inline Vimeo players */
.cgc-video {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	background: var(--cgc-ink);
	box-shadow: 0 6px 22px rgba(13, 36, 56, 0.2);
}
.cgc-video iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}
.cgc-videogrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.2rem;
	margin: 1.8rem 0 0;
}
.cgc-videogrid .cgc-ba__caption {
	margin-top: 0.55rem;
}


/* v1.3.2: Before & After member rows with quotes */
.cgc-bapair {
	margin: 2.6rem 0 0;
	padding-top: 2.2rem;
	border-top: 1px solid #e3edf3;
}
.cgc-bapair:first-of-type {
	border-top: 0;
	padding-top: 0;
	margin-top: 1.8rem;
}
.cgc-bapair__quote {
	font-size: 1.12rem;
	font-style: italic;
	color: var(--cgc-ink);
	max-width: 44em;
	margin: 0 auto 0.5rem;
}
.cgc-bapair__name {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--cgc-primary);
	margin: 0 0 1.2rem;
}
.cgc-bapair__videos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.2rem;
	max-width: 880px;
	margin: 0 auto;
}


/* v1.4.0: brand background guarantee + cohesion polish */
.cgc-sales {
	background: #ffffff;
}
.cgc-sales .cgc-section,
.cgc-sales .cgc-statband,
.cgc-sales .cgc-personas,
.cgc-sales .cgc-faq {
	background: transparent;
}
/* Persona "who" + eyebrow tracking suited to Barlow */
.cgc-sales .cgc-eyebrow {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	letter-spacing: 0.12em;
}
/* Testimonial film caption spacing already covered by .cgc-video */


/* ==========================================================================
   SECTION 5: Homepage (.cgc-home)
   v1.5.0 - Router homepage. Wrap the Code Block in
   <div class="cgc-home cgc-sales"> to inherit base typography, .cgc-display,
   .cgc-eyebrow, .cgc-btn, .cgc-hero, .cgc-press, .cgc-statband,
   .cgc-magnet--banner and .cgc-academy-cta. This section adds only the
   components unique to the homepage: route cards, founder block, resource
   tiles.
   ========================================================================== */

/* --- Router: "Where are you on your journey?" --- */
.cgc-routes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.4rem;
	margin: 2rem 0 0;
}
a.cgc-route {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-top: 4px solid var(--cgc-primary);
	border-radius: 10px;
	padding: 1.8rem 1.7rem 1.5rem;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.06);
	text-decoration: none;
	color: var(--cgc-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.cgc-route:hover,
a.cgc-route:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(13, 36, 56, 0.12);
	border-color: var(--cgc-primary);
	color: var(--cgc-ink);
}
.cgc-route__label {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cgc-primary);
	margin: 0 0 0.6rem;
}
.cgc-route__title {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.7rem;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--cgc-ink);
	margin: 0 0 0.7rem;
}
.cgc-route__text {
	font-size: 0.99rem;
	margin: 0 0 1.2rem;
	flex: 1 1 auto;
}
.cgc-route__go {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--cgc-primary);
}
.cgc-route__go::after {
	content: '\2192';
	margin-left: 0.4em;
	transition: margin-left 0.15s ease;
}
a.cgc-route:hover .cgc-route__go::after,
a.cgc-route:focus .cgc-route__go::after {
	margin-left: 0.7em;
}
.cgc-routes__note {
	text-align: center;
	font-size: 0.95rem;
	color: #5a6070;
	margin: 1.6rem 0 0;
}
.cgc-routes__note a {
	color: var(--cgc-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.4);
}
.cgc-routes__note a:hover,
.cgc-routes__note a:focus {
	border-bottom-color: var(--cgc-primary);
}

/* --- Founder block (brief Simon intro) --- */
.cgc-founder {
	display: flex;
	align-items: center;
	gap: 2.6rem;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 12px;
	padding: 2.6rem 2.8rem;
}
.cgc-founder__media {
	flex: 0 0 280px;
}
.cgc-founder__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(13, 36, 56, 0.16);
}
.cgc-founder__body {
	flex: 1 1 auto;
}
.cgc-founder__body p {
	max-width: 42em;
}
.cgc-founder__link {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.98rem;
	color: var(--cgc-primary);
	text-decoration: none;
}
.cgc-founder__link::after {
	content: '\2192';
	margin-left: 0.4em;
}
.cgc-founder__link:hover,
.cgc-founder__link:focus {
	color: var(--cgc-primary-deep);
}

/* --- Free resource tiles --- */
.cgc-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.3rem;
	margin: 2rem 0 0;
}
a.cgc-tile {
	display: block;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.1);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.cgc-tile:hover,
a.cgc-tile:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(13, 36, 56, 0.18);
}
.cgc-tile img {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.cgc-tile__label {
	display: block;
	padding: 0.8rem 1rem;
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--cgc-ink);
	background: #ffffff;
}
.cgc-tile__label::after {
	content: '\2192';
	float: right;
	color: var(--cgc-primary);
}
.cgc-tiles__more {
	text-align: center;
	margin: 2rem 0 0;
}

/* --- Homepage responsive --- */
@media (max-width: 860px) {
	.cgc-founder {
		flex-direction: column;
		padding: 2rem 1.6rem;
		text-align: center;
	}
	.cgc-founder__media {
		flex-basis: auto;
		max-width: 240px;
	}
	.cgc-founder__body p {
		margin-left: auto;
		margin-right: auto;
	}
}


/* --- v1.6.0: merged hero-router, trust line, video founder, browse line --- */
.cgc-hero--router {
	padding-bottom: 5.5rem;
	margin-bottom: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.cgc-herorouter {
	position: relative;
	z-index: 1;
	margin: -3.6rem 1.4rem 0;
}
.cgc-herorouter .cgc-routes {
	margin-top: 0;
}
.cgc-trustline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.9rem 2rem;
	margin: 2.6rem 0 0;
	padding: 1.1rem 1rem;
	border-top: 1px solid #e5edf2;
	border-bottom: 1px solid #e5edf2;
	font-family: 'Barlow', sans-serif;
	font-size: 0.92rem;
	color: #5a6070;
	text-align: center;
}
.cgc-trustline strong {
	color: var(--cgc-ink);
	font-weight: 600;
}
.cgc-trustline img {
	height: 26px;
	width: auto;
	opacity: 0.65;
}
.cgc-founder__media--video {
	flex: 0 0 400px;
}
.cgc-founder__media--video .cgc-videoslot {
	box-shadow: 0 8px 24px rgba(13, 36, 56, 0.16);
}
.cgc-browseline {
	text-align: center;
	font-size: 1.02rem;
	color: #5a6070;
	margin: 0;
}
.cgc-browseline a {
	font-weight: 600;
	color: var(--cgc-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.4);
}
.cgc-browseline a:hover,
.cgc-browseline a:focus {
	border-bottom-color: var(--cgc-primary);
}
@media (max-width: 860px) {
	.cgc-herorouter {
		margin-left: 0.4rem;
		margin-right: 0.4rem;
	}
	.cgc-founder__media--video {
		flex-basis: auto;
		width: 100%;
		max-width: 460px;
	}
}

/* Darker heading colour on light-context sub-headings (v1.8.0). */
.cgc-route__title,
.cgc-tile__label,
.cgc-tier h3,
.cgc-step h3,
.cgc-fit__col h3,
.cgc-capture--inline .cgc-capture__headline {
	color: var(--cgc-heading);
}


/* ==========================================================================
   SECTION 6: Blog sidebar + end-of-post offer (v1.8.0, link-out)
   [cgc_blog_aside] -> .cgc-blog-aside in the sidebar widget (sticky).
   the_content filter -> .cgc-inline-capture--mobile at the end of single
   posts (shown only where the sidebar collapses). Both link OUT to the
   offer page; the magnet is delivered by Leadpages.
   ========================================================================== */

.cgc-blog-aside {
	/* Sticky so the offer follows the reader. top clears the sticky header. */
	position: sticky;
	top: 100px;
}
.cgc-blog-aside__inner {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

/* Offer card (link-out) */
a.cgc-blog-aside__offer {
	display: block;
	text-align: center;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-top: 4px solid var(--cgc-primary);
	border-radius: 10px;
	padding: 1.5rem 1.4rem 1.6rem;
	text-decoration: none;
	color: var(--cgc-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.cgc-blog-aside__offer:hover,
a.cgc-blog-aside__offer:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(13, 36, 56, 0.12);
	color: var(--cgc-ink);
}
.cgc-blog-aside__cover {
	display: block;
	width: 130px;
	max-width: 60%;
	height: auto;
	margin: 0 auto 1rem;
	border-radius: 6px;
	box-shadow: 0 6px 18px rgba(13, 36, 56, 0.22);
}
.cgc-blog-aside__h3 {
	display: block;
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--cgc-heading);
	margin-bottom: 0.5rem;
}
.cgc-blog-aside__text {
	display: block;
	font-size: 0.92rem;
	line-height: 1.5;
	margin-bottom: 1.1rem;
}
a.cgc-blog-aside__offer .cgc-magnet__button {
	display: inline-block;
}

/* Soft Academy bridge card */
a.cgc-aside-bridge {
	display: block;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 1.3rem 1.4rem;
	text-decoration: none;
	color: var(--cgc-ink);
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.06);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.cgc-aside-bridge:hover,
a.cgc-aside-bridge:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(13, 36, 56, 0.12);
	border-color: var(--cgc-primary);
	color: var(--cgc-ink);
}
.cgc-aside-bridge__label {
	display: block;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cgc-primary);
	margin-bottom: 0.45rem;
}
.cgc-aside-bridge__title {
	display: block;
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin-bottom: 0.5rem;
}
.cgc-aside-bridge__text {
	display: block;
	font-size: 0.92rem;
	line-height: 1.5;
	margin-bottom: 0.8rem;
}
.cgc-aside-bridge__go {
	display: block;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--cgc-primary);
}
.cgc-aside-bridge__go::after {
	content: '\2192';
	margin-left: 0.4em;
	transition: margin-left 0.15s ease;
}
a.cgc-aside-bridge:hover .cgc-aside-bridge__go::after,
a.cgc-aside-bridge:focus .cgc-aside-bridge__go::after {
	margin-left: 0.7em;
}

/* End-of-post offer link (reuses .cgc-magnet--inline; spans because it is an <a>) */
a.cgc-magnet--link {
	text-decoration: none;
	color: var(--cgc-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.cgc-magnet--link:hover,
a.cgc-magnet--link:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(13, 36, 56, 0.12);
	color: var(--cgc-ink);
}
.cgc-magnet__h3 {
	display: block;
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin-bottom: 0.4rem;
}
.cgc-magnet__p {
	display: block;
	line-height: 1.55;
	margin-bottom: 1rem;
}

/* End-of-post offer: hidden by default; shown only where the sidebar
   collapses. The 800px breakpoint MUST match where Avada drops the blog
   sidebar below the content (Avada > Options > Responsive). Adjust if needed. */
.cgc-inline-capture--mobile {
	display: none;
}
@media (max-width: 800px) {
	.cgc-inline-capture--mobile {
		display: block;
		margin-top: 2rem;
	}
}


/* ==========================================================================
   SECTION 7: Easy Classical Guitar collection page (.cgc-easy) (v1.9.0)
   Wrap the page in <div class="cgc-home cgc-sales cgc-easy"> to inherit the
   design system. Adds: hero book cover, volume cards, and a format/price
   chooser. Built to scale to any number of volumes (clone a .cgc-volume).
   ========================================================================== */

/* Hero book cover (portrait) */
.cgc-easy .cgc-hero__media {
	text-align: center;
}
.cgc-bookcover {
	display: block;
	width: auto;
	max-width: 280px;
	height: auto;
	margin: 0 auto;
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(13, 36, 56, 0.30);
}

/* Collection: stacked volume cards */
.cgc-volumes {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	margin: 2.2rem 0 0;
}
.cgc-volume {
	display: flex;
	gap: 1.9rem;
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 12px;
	padding: 1.9rem;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.06);
}
.cgc-volume__cover {
	flex: 0 0 168px;
}
.cgc-volume__cover img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 8px 22px rgba(13, 36, 56, 0.22);
}
.cgc-volume__body {
	flex: 1 1 auto;
	min-width: 0;
}
.cgc-volume__titlerow {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
	margin-bottom: 0.25rem;
}
.cgc-volume__title {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.7rem;
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0;
}
.cgc-badge {
	display: inline-block;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
	background: var(--cgc-btn-grad);
	border-radius: 999px;
	padding: 0.22rem 0.75rem;
}
.cgc-badge--soon {
	background: #9aa7b1;
}
.cgc-volume__meta {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cgc-primary);
	margin: 0 0 0.8rem;
}
.cgc-volume__desc {
	margin: 0 0 0.6rem;
	line-height: 1.6;
}
.cgc-volume__composers {
	font-size: 0.88rem;
	color: #5a6070;
	margin: 0 0 1.1rem;
}
.cgc-volume__composers strong {
	color: var(--cgc-ink);
	font-weight: 600;
}

/* Format / price chooser */
.cgc-formats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 0.6rem;
}
a.cgc-format {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border: 1px solid #d9e6ee;
	border-radius: 8px;
	padding: 0.7rem 0.9rem;
	text-decoration: none;
	color: var(--cgc-ink);
	background: #ffffff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
a.cgc-format:hover,
a.cgc-format:focus {
	border-color: var(--cgc-primary);
	box-shadow: 0 6px 16px rgba(13, 36, 56, 0.10);
	transform: translateY(-1px);
	color: var(--cgc-ink);
}
.cgc-format__name {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
}
.cgc-format__price {
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--cgc-heading);
	white-space: nowrap;
}
a.cgc-format--free {
	border-color: var(--cgc-primary);
	border-left: 4px solid var(--cgc-primary);
	background: #f3f8fb;
}
.cgc-format--free .cgc-format__price {
	color: var(--cgc-primary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Two-up info blocks (about the editions / why free) */
.cgc-easy-notes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.6rem;
	margin: 2rem 0 0;
}
.cgc-easy-note {
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 1.6rem 1.7rem;
}
.cgc-easy-note h3 {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.35rem;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0 0 0.6rem;
}
.cgc-easy-note p {
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 680px) {
	.cgc-volume {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 1.5rem;
	}
	.cgc-volume__cover {
		flex-basis: auto;
		max-width: 150px;
	}
	.cgc-volume__titlerow {
		justify-content: center;
	}
	.cgc-formats {
		grid-template-columns: 1fr;
		text-align: left;
	}
}


/* ==========================================================================
   SECTION 8: Books catalog page (.cgc-bookspage) (v1.10.0)
   Wrap in <div class="cgc-home cgc-sales cgc-bookspage">. Adds grouped
   cover-card grids. Covers vary in aspect ratio, so they are normalized to a
   common max-height and centered. Add a book by cloning an <a class="cgc-book">.
   ========================================================================== */

.cgc-grouphead {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.9rem;
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--cgc-heading);
	margin: 0 0 0.3rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--cgc-primary);
}
.cgc-groupintro {
	margin: 0.6rem 0 0;
	color: #5a6070;
	line-height: 1.6;
	max-width: 60ch;
}

.cgc-books {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.6rem;
	margin: 1.8rem 0 0;
}
a.cgc-book {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 1.4rem 1.4rem 1.3rem;
	text-decoration: none;
	color: var(--cgc-ink);
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.06);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.cgc-book:hover,
a.cgc-book:focus {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(13, 36, 56, 0.14);
	border-color: var(--cgc-primary);
	color: var(--cgc-ink);
}
.cgc-book__cover {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 230px;
	margin-bottom: 1.1rem;
}
.cgc-book__cover img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 230px;
	border-radius: 4px;
	box-shadow: 0 8px 20px rgba(13, 36, 56, 0.20);
}
.cgc-book__titlerow {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.4rem;
}
.cgc-book__title {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.22rem;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0;
}
.cgc-book__desc {
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0 0 1rem;
	flex: 1 1 auto;
}
.cgc-book__go {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--cgc-primary);
}
.cgc-book__go::after {
	content: '\2192';
	margin-left: 0.4em;
	transition: margin-left 0.15s ease;
}
a.cgc-book:hover .cgc-book__go::after,
a.cgc-book:focus .cgc-book__go::after {
	margin-left: 0.7em;
}

@media (max-width: 560px) {
	.cgc-books {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	.cgc-book {
		padding: 1rem;
	}
	.cgc-book__cover {
		height: 180px;
	}
	.cgc-book__cover img {
		max-height: 180px;
	}
	.cgc-book__title {
		font-size: 1.05rem;
	}
}


/* ==========================================================================
   SECTION 9: About page (.cgc-about) (v1.11.0)
   Wrap in <div class="cgc-home cgc-sales cgc-about">. Reuses .cgc-hero,
   .cgc-founder, .cgc-academy-cta, .cgc-eyebrow, .cgc-display. Adds: team
   grid, two-column credentials, and a featured pull quote.
   ========================================================================== */

/* Team grid */
.cgc-team {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.2rem 1.6rem;
	margin: 2rem 0 0;
}
.cgc-member {
	flex: 0 1 200px;
	text-align: center;
}
.cgc-member__photo {
	width: 148px;
	height: 148px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(13, 36, 56, 0.20);
	border: 3px solid #ffffff;
}
.cgc-member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cgc-member__name {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0 0 0.1rem;
}
.cgc-member__role {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cgc-primary);
	margin: 0 0 0.6rem;
}
.cgc-member__bio {
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0 0 0.6rem;
	color: var(--cgc-ink);
}
.cgc-member__link {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--cgc-primary);
	text-decoration: none;
}
.cgc-member__link::after {
	content: '\2192';
	margin-left: 0.35em;
}

/* Credentials (two columns) */
.cgc-creds {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.6rem;
	margin: 2rem 0 0;
}
.cgc-cred {
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 1.7rem 1.8rem;
}
.cgc-cred h3 {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.35rem;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0 0 0.9rem;
}
.cgc-cred ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cgc-cred li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.6rem;
	line-height: 1.5;
}
.cgc-cred li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cgc-primary);
}

/* Featured pull quote */
.cgc-about-quote {
	max-width: 760px;
	margin: 1.5rem auto 0;
	padding: 1.8rem 2rem;
	border-left: 4px solid var(--cgc-primary);
	background: #f3f8fb;
	border-radius: 0 10px 10px 0;
}
.cgc-about-quote p {
	font-size: 1.12rem;
	line-height: 1.6;
	font-style: italic;
	color: var(--cgc-ink);
	margin: 0 0 0.7rem;
}
.cgc-about-quote cite {
	font-style: normal;
	font-weight: 600;
	color: var(--cgc-heading);
}

/* Podcast credibility line */
.cgc-aboutline {
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.6;
	max-width: 680px;
	margin: 0 auto;
}
.cgc-aboutline a {
	color: var(--cgc-primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.4);
}


/* --- About v1.11.1: alignment fixes + podcast feature band --- */
/* Keep credential cards and the pull quote left-aligned even inside a
   centered section (bullets and the quote rule read left). */
.cgc-about .cgc-cred,
.cgc-about .cgc-about-quote {
	text-align: left;
}
/* Bulletproof the centered intros against Avada's global paragraph styles. */
.cgc-about .cgc-center > p {
	text-align: center;
}

/* Podcast feature band (light, two-column, weighty) */
.cgc-podcast {
	display: flex;
	gap: 2.6rem;
	align-items: center;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 12px;
	padding: 2.2rem 2.4rem;
}
.cgc-podcast__media {
	flex: 0 0 44%;
}
.cgc-podcast__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(13, 36, 56, 0.22);
}
.cgc-podcast__body {
	flex: 1 1 auto;
}
.cgc-podcast__guests {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	color: var(--cgc-heading);
	line-height: 1.7;
	margin: 0 0 1.3rem;
}
@media (max-width: 768px) {
	.cgc-podcast {
		flex-direction: column;
		text-align: center;
		padding: 1.8rem 1.6rem;
	}
	.cgc-podcast__media {
		flex-basis: auto;
		width: 100%;
		max-width: 520px;
	}
}


/* ==========================================================================
   SECTION 10: Global footer (.cgc-footer) (v1.12.0)
   Lives in the Avada global footer (one Code Block), NOT per page. Unscoped
   (no .cgc-sales wrapper needed) so it styles correctly in the footer layout.
   Uses the :root color tokens. Replaces the per-page "Start Here / Learn /
   Books / About" block and the old copyright bar.
   ========================================================================== */
.cgc-footer {
	background: #112230;
	color: #b3bfc9;
	font-family: 'Barlow', sans-serif;
	font-size: 0.95rem;
}
.cgc-footer * {
	box-sizing: border-box;
}
.cgc-footer a {
	color: #aeb9c4;
	text-decoration: none;
	transition: color 0.15s ease;
}
.cgc-footer a:hover,
.cgc-footer a:focus {
	color: var(--cgc-primary);
}
.cgc-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3.2rem 2rem 1.4rem;
}
.cgc-footer__top {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 2rem;
}
.cgc-footer__wordmark {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.55rem;
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #ffffff;
	margin: 0;
}
.cgc-footer__tag {
	margin: 0.7rem 0 1.1rem;
	color: #8a97a3;
	line-height: 1.5;
	max-width: 30ch;
}
.cgc-footer__social {
	display: flex;
	gap: 0.7rem;
}
.cgc-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: #cdd8e0;
}
.cgc-footer__social a:hover,
.cgc-footer__social a:focus {
	border-color: var(--cgc-primary);
	color: var(--cgc-primary);
}
.cgc-footer__social svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.cgc-footer__col h4 {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0 0 0.9rem;
}
.cgc-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cgc-footer__col li {
	margin-bottom: 0.5rem;
	line-height: 1.35;
}
.cgc-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1.4rem;
	margin-top: 2.6rem;
	padding-top: 1.3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.85rem;
	color: #8a97a3;
}
.cgc-footer__legal a {
	color: #8a97a3;
}
@media (max-width: 1000px) {
	.cgc-footer__top {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.cgc-footer__brand {
		grid-column: 1 / -1;
	}
}
@media (max-width: 620px) {
	.cgc-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 1.6rem;
	}
	.cgc-footer__brand {
		grid-column: 1 / -1;
	}
	.cgc-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* ==========================================================================
   SECTION 11: Sheet music directory (.cgc-sheet) (v1.13.0)
   Wrap in <div class="cgc-home cgc-sales cgc-sheet">. A scannable directory:
   composer groups with grade tags and free-download flags, plus a collections
   strip reusing .cgc-book cards. Reuses .cgc-grouphead, .cgc-books, .cgc-book,
   .cgc-badge, .cgc-magnet--banner, .cgc-academy-cta.
   ========================================================================== */

/* Composer / piece directory */
.cgc-pieces {
	column-width: 320px;
	column-gap: 2.4rem;
	margin: 1.6rem 0 0;
}
.cgc-pieces__group {
	break-inside: avoid;
	margin-bottom: 1.6rem;
}
.cgc-pieces__composer {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--cgc-heading);
	margin: 0 0 0.5rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid #d9e6ee;
}
.cgc-pieces__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.cgc-piece {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.6rem;
	padding: 0.32rem 0;
	line-height: 1.35;
}
.cgc-piece a {
	color: var(--cgc-ink);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.cgc-piece a:hover,
.cgc-piece a:focus {
	color: var(--cgc-primary);
	border-bottom-color: rgba(31, 154, 182, 0.4);
}
.cgc-piece__tags {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
}
.cgc-tag {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #5a6070;
	background: #eef4f8;
	border-radius: 4px;
	padding: 0.12rem 0.42rem;
}
.cgc-tag--free {
	color: #ffffff;
	background: var(--cgc-primary);
}

/* Quick jump nav for the directory */
.cgc-sheet-jump {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin: 1.6rem 0 0;
}
.cgc-sheet-jump a {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--cgc-primary);
	text-decoration: none;
	border: 1px solid #d9e6ee;
	border-radius: 999px;
	padding: 0.4rem 1rem;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.cgc-sheet-jump a:hover,
.cgc-sheet-jump a:focus {
	border-color: var(--cgc-primary);
	background: #f3f8fb;
}


/* Sheet music v1.13.1: the merged "Full Books & Collections" strip is a
   secondary section, so render it as a compact, centered flex row (more
   columns, smaller covers) rather than the wide books-page grid. Scoped to
   .cgc-sheet so the /books/ page is unaffected. */
.cgc-sheet .cgc-books {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.4rem;
}
.cgc-sheet .cgc-book {
	flex: 0 1 190px;
}
.cgc-sheet .cgc-book__cover {
	height: 180px;
	margin-bottom: 0.9rem;
}
.cgc-sheet .cgc-book__cover img {
	max-height: 180px;
}


/* ==========================================================================
   SECTION 12: Gear page (.cgc-gear) (v1.14.0)
   Wrap in <div class="cgc-home cgc-sales cgc-gear-page">. Categorised gear
   cards with affiliate links + a disclosure. Reuses .cgc-grouphead,
   .cgc-academy-cta. Also used for the recommended-sites list.
   ========================================================================== */
.cgc-disclosure {
	max-width: 660px;
	margin: 1.4rem auto 0;
	padding: 0.9rem 1.3rem;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 8px;
	font-size: 0.86rem;
	line-height: 1.5;
	color: #5a6070;
	text-align: center;
}
.cgc-gear {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.2rem;
	margin: 1.4rem 0 0;
}
.cgc-gearitem {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 1.3rem 1.4rem;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.05);
}
.cgc-gearitem__name {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0 0 0.4rem;
}
.cgc-gearitem__note {
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0 0 1rem;
	flex: 1 1 auto;
}
.cgc-gearitem__link {
	align-self: flex-start;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--cgc-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.4);
	transition: border-color 0.15s ease;
}
.cgc-gearitem__link:hover,
.cgc-gearitem__link:focus {
	border-bottom-color: var(--cgc-primary);
}
.cgc-gearitem__link::after {
	content: '\2197';
	margin-left: 0.3em;
}
.cgc-gearitem__meta {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8a929f;
}


/* ==========================================================================
   SECTION 13: Pillar / long-form guide (.cgc-guide) (v1.15.0)
   Wrap in <div class="cgc-home cgc-sales cgc-guide">. Readable article column
   with restrained headings (not display), a table of contents, quick-answer
   callouts, comparison tables, and "further reading" links. Reuses
   .cgc-section (scroll-margin anchors), .cgc-academy-cta, .cgc-eyebrow.
   ========================================================================== */
.cgc-guide__body {
	max-width: 820px;
	margin: 0 auto;
}
.cgc-guide__body h2 {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--cgc-heading);
	margin: 0 0 0.9rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e3edf2;
}
.cgc-guide__body h3 {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.35rem;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--cgc-heading);
	margin: 1.8rem 0 0.5rem;
}
.cgc-guide__body p,
.cgc-guide__body li {
	font-size: 1.04rem;
	line-height: 1.7;
	color: #3b424f;
}
.cgc-guide__body p {
	margin: 0 0 1.1rem;
}
.cgc-guide__body ul,
.cgc-guide__body ol {
	margin: 0 0 1.2rem;
	padding-left: 1.3rem;
}
.cgc-guide__body li {
	margin-bottom: 0.45rem;
	line-height: 1.6;
}
.cgc-guide__body a {
	color: var(--cgc-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.35);
	transition: border-color 0.15s ease;
}
.cgc-guide__body a:hover,
.cgc-guide__body a:focus {
	border-bottom-color: var(--cgc-primary);
}
.cgc-guide__body a.cgc-more {
	display: inline-block;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	border-bottom: none;
	margin: 0.1rem 0 0;
}
.cgc-guide__body a.cgc-more::after {
	content: ' \2192';
}

/* Table of contents */
.cgc-toc {
	max-width: 820px;
	margin: 0 auto 3.2rem;
	background: #f3f8fb;
	border: 1px solid #d9e6ee;
	border-radius: 12px;
	padding: 1.6rem 1.9rem;
}
.cgc-toc h2 {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0 0 0.9rem;
}
.cgc-toc ol {
	columns: 2;
	column-gap: 2.4rem;
	margin: 0;
	padding: 0 0 0 1.2rem;
}
.cgc-toc li {
	margin-bottom: 0.45rem;
	line-height: 1.4;
	break-inside: avoid;
}
.cgc-toc a {
	color: var(--cgc-primary);
	text-decoration: none;
}
.cgc-toc a:hover,
.cgc-toc a:focus {
	text-decoration: underline;
}
@media (max-width: 560px) {
	.cgc-toc ol {
		columns: 1;
	}
}

/* Quick-answer callout (good for featured snippets) */
.cgc-keypoint {
	background: #eef6f9;
	border-left: 4px solid var(--cgc-primary);
	border-radius: 0 8px 8px 0;
	padding: 1rem 1.3rem;
	margin: 0 0 1.4rem;
}
.cgc-keypoint p {
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.6;
}
.cgc-keypoint strong {
	color: var(--cgc-heading);
}

/* Comparison tables */
.cgc-table-wrap {
	overflow-x: auto;
	margin: 0 0 1.4rem;
}
.cgc-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.98rem;
}
.cgc-table th,
.cgc-table td {
	text-align: left;
	padding: 0.6rem 0.85rem;
	border-bottom: 1px solid #e3edf2;
	vertical-align: top;
	line-height: 1.5;
}
.cgc-table th {
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	color: var(--cgc-heading);
	background: #f3f8fb;
}


/* ==========================================================================
   SECTION 14: Lesson hub template (.cgc-hub) (v1.16.0)
   Wrap in <div class="cgc-home cgc-sales cgc-hub">. Reusable across the free
   lesson category pages (beginners, repertoire, technique, practice,
   sight-reading, theory). New: featured lesson cards. Reuses .cgc-pieces for
   the grouped lesson directory, .cgc-magnet--banner, .cgc-academy-cta,
   .cgc-testimonials.
   NOTE: the featured-card grid is .cgc-lesson-cards (NOT .cgc-lessons, which
   is the Free Lessons page wrapper in Section 2).
   ========================================================================== */
.cgc-lesson-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.5rem;
	margin: 1.8rem 0 0;
}
a.cgc-lesson {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: var(--cgc-ink);
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.06);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.cgc-lesson:hover,
a.cgc-lesson:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(13, 36, 56, 0.12);
	border-color: var(--cgc-primary);
	color: var(--cgc-ink);
}
.cgc-lesson__img {
	height: 170px;
	background: #eef4f8;
	overflow: hidden;
}
.cgc-lesson__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cgc-lesson__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 1.1rem 1.25rem 1.2rem;
}
.cgc-lesson__label {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cgc-primary);
	margin: 0 0 0.35rem;
}
.cgc-lesson__title {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.12;
	text-transform: uppercase;
	color: var(--cgc-heading);
	margin: 0 0 0.4rem;
}
.cgc-lesson__text {
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0 0 0.9rem;
	flex: 1 1 auto;
}
.cgc-lesson__go {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--cgc-primary);
}
.cgc-lesson__go::after {
	content: '\2192';
	margin-left: 0.4em;
}


/* v1.16.2: harden three centered body paragraphs on the sales page against
   Avada's global <p> margins. Those globals (higher specificity than a bare
   class) were overriding `margin: 0 auto`, left-pinning each block at its
   max-width so the centered text read as shifted left. Scope under .cgc-ult
   + !important on the side margins restores the intended centering. */
.cgc-ult .cgc-pricing-note {
	margin: 1.6rem auto 0 !important;
	text-align: center;
}
.cgc-ult .cgc-bapair__quote {
	margin: 0 auto 0.5rem !important;
	text-align: center;
}
.cgc-ult .cgc-finalcta p {
	margin: 0 auto 1.6rem !important;
	text-align: center;
}


/* v1.16.3: same Avada global-<p> override fix for the centered boxes that
   close most pages. .cgc-academy-cta p (the "join us" box on books, about,
   easy, sheet music, resources, gear, hub, guide, free lessons) and the gear
   .cgc-disclosure note both used margin:0 auto on a bare class; Avada's global
   <p> margin was left-pinning them. !important restores the centering. */
.cgc-academy-cta p {
	margin: 0 auto 1.4rem !important;
	text-align: center;
}
.cgc-disclosure {
	margin: 1.4rem auto 0 !important;
}


/* ==========================================================================
   SECTION 15: Reviews wall (.cgc-reviewwall) (v1.17.0)
   Masonry-style testimonial wall for /reviews/. Wrap page in
   <div class="cgc-home cgc-sales cgc-hub">. Reuses .cgc-press / .cgc-academy-cta.
   ========================================================================== */
.cgc-reviewwall {
	column-width: 330px;
	column-gap: 1.5rem;
	margin: 1.8rem 0 0;
}
.cgc-review {
	break-inside: avoid;
	background: #ffffff;
	border: 1px solid #d9e6ee;
	border-radius: 10px;
	padding: 1.4rem 1.5rem;
	margin: 0 0 1.5rem;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.06);
}
.cgc-review p {
	margin: 0 0 0.8rem;
	font-style: italic;
	line-height: 1.6;
}
.cgc-review cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--cgc-primary);
}
.cgc-review__role {
	display: block;
	font-style: normal;
	font-weight: 400;
	font-size: 0.8rem;
	color: #8a929f;
	margin-top: 0.15rem;
}
.cgc-review--press {
	border-left: 4px solid var(--cgc-primary);
}
.cgc-review--press p {
	font-size: 1.05rem;
	font-style: normal;
	color: var(--cgc-heading);
}
