/* ==========================================================================
   UKULELE CORNER - colour tokens
   The whole scheme lives here. Brand palette (per the UC style sheet):
     amber  #ffad2b   slate  #454e62   white  #ffffff
   Everything below references these variables, so re-skinning is editing
   these few lines (then bump the theme Version + clear cache).

   Design note on the two brand colours:
     - SLATE (#454e62) is the structural "dark": buttons, CTA bands, badges
       and headings use it, because it is dark enough for white text to stay
       AA-legible (amber is not - white on #ffad2b fails contrast).
     - AMBER (#ffad2b) is the bright ACCENT: link/hover colour, active
       stripes, icons, focus rings, and the primary call-to-action pill
       (amber fill + slate text - the signature UC button).
   This mirrors how ukulelecorner.com balances the two colours.
   ========================================================================== */
:root {
	/* Structural dark (slate) - was CGC teal; safe for white text. */
	--uc-primary:        #454e62; /* slate - primary structural colour */
	--uc-primary-deep:   #3b4254; /* hover / active */
	--uc-primary-dark:   #2b3140; /* darker - start of button gradient */

	/* Bright accent (amber). */
	--uc-accent:         #ffad2b; /* amber - accents, primary CTA fill */
	--uc-accent-deep:    #e0921a; /* amber hover */
	--uc-accent-text:    #b9730c; /* amber dark enough to read as link text on white */

	--uc-ink:            #454e62; /* body text (UC slate) */
	--uc-heading:        #2f3543; /* headings - a touch darker than ink */

	--uc-band-dark:      #232834; /* colour-block base (deep slate) */
	--uc-band-light:     #3a4154; /* colour-block lighter end - stays dark for white text */

	/* Buttons / bands keep the dark slate gradient so white text is legible.
	   Use .uc-btn--accent (defined in the accent override block at the foot of
	   this file) for the amber-fill / slate-text primary CTA. */
	--uc-btn-grad:       linear-gradient(160deg, var(--uc-primary-dark) 0%, var(--uc-primary) 100%);
	--uc-btn-grad-hover: linear-gradient(160deg, #232834 0%, var(--uc-primary-deep) 100%);
	--uc-band-grad:      linear-gradient(160deg, var(--uc-band-dark) 0%, var(--uc-band-light) 100%);
}

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

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

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

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

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

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

.uc-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(--uc-ink);
}
.uc-capture__input::placeholder {
	color: #6b7d8a;
}
.uc-capture__input:focus {
	outline: 2px solid var(--uc-primary);
	outline-offset: 1px;
	border-color: var(--uc-primary);
}
.uc-capture__input--name {
	flex: 0 1 160px;
}

.uc-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(--uc-btn-grad);
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.uc-capture__button:hover,
.uc-capture__button:focus {
	background: var(--uc-btn-grad-hover);
	color: #ffffff;
}
.uc-capture__button:focus-visible {
	outline: 2px solid var(--uc-ink);
	outline-offset: 2px;
}

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

.uc-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)
   -------------------------------------------------------------------------- */

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

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

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

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

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

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

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

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

.uc-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 (.uc-lessons)
   v1.1.0 - Wrap the page's Code Block content in <div class="uc-lessons">.
   All rules scoped under .uc-lessons; no body class required.
   ========================================================================== */

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

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

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

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

/* Guide button (links to the pillar guide for a section) */
.uc-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(--uc-ink);
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.15s ease;
}
.uc-guide-link:hover,
.uc-guide-link:focus {
	background: var(--uc-primary);
	color: #ffffff;
}

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

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

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

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


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

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

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

/* Buttons */
.uc-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(--uc-btn-grad);
	border-radius: 6px;
	text-decoration: none;
	transition: filter 0.15s ease, transform 0.15s ease;
}
.uc-btn:hover,
.uc-btn:focus {
	background: var(--uc-primary-deep);
	color: #ffffff !important;
}
.uc-btn:hover,
.uc-btn:focus {
	filter: brightness(1.06);
	transform: translateY(-1px);
}
.uc-btn--ghost {
	background: transparent;
	color: #ffffff !important;
	border: 2px solid rgba(255, 255, 255, 0.7);
}
.uc-btn--ghost:hover,
.uc-btn--ghost:focus {
	background: rgba(255, 255, 255, 0.12);
}
.uc-btn--lg {
	padding: 1rem 2.4rem;
	font-size: 1.1rem;
}

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

/* Press strip */
.uc-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;
}
.uc-press img {
	height: 44px;
	width: auto;
	opacity: 0.75;
}

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

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

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

/* Before & After + member stories */
.uc-ba-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.2rem;
	margin: 1.6rem 0 0;
}
.uc-ba {
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 18px rgba(13, 36, 56, 0.18);
}
.uc-ba img {
	display: block;
	width: 100%;
	transition: transform 0.2s ease;
}
.uc-ba:hover img {
	transform: scale(1.03);
}
.uc-ba__tag {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	background: var(--uc-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;
}
.uc-ba__tag--after {
	background: var(--uc-primary);
}
.uc-ba__caption {
	display: block;
	text-align: center;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--uc-ink);
	margin-top: 0.5rem;
}

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

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

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

/* FAQ */
.uc-faq details {
	border: 1px solid #f3e4cb;
	border-radius: 8px;
	margin-bottom: 0.7rem;
	background: #ffffff;
}
.uc-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;
}
.uc-faq summary::-webkit-details-marker {
	display: none;
}
.uc-faq summary::after {
	content: '+';
	position: absolute;
	right: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: var(--uc-primary);
	font-family: 'Barlow', sans-serif;
}
.uc-faq details[open] summary::after {
	content: '\2013';
}
.uc-faq details > div {
	padding: 0 1.3rem 1.2rem;
	font-size: 0.97rem;
}

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

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

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


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

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

/* Stat / trust band */
.uc-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 #f3e4cb;
	border-bottom: 1px solid #f3e4cb;
}
.uc-stat__num {
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 2.7rem;
	line-height: 1;
	color: var(--uc-primary);
}
.uc-stat__label {
	font-size: 0.88rem;
	color: #5a6070;
	margin-top: 0.3rem;
}

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

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

/* Grade path visual */
.uc-path {
	margin: 2.2rem 0 0.6rem;
	padding: 0;
}
.uc-path__track {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}
.uc-path__track::before {
	content: '';
	position: absolute;
	top: 1.15rem;
	left: 3%;
	right: 3%;
	height: 4px;
	background: linear-gradient(90deg, #ecd0a0 0%, var(--uc-primary) 100%);
	border-radius: 2px;
}
.uc-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;
}
.uc-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(--uc-primary);
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--uc-ink);
	position: relative;
	z-index: 1;
	margin-bottom: 0.4rem;
}
.uc-path__node--end .uc-path__dot {
	background: var(--uc-primary);
	color: #ffffff;
}
.uc-path__ends {
	display: flex;
	justify-content: space-between;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--uc-ink);
	margin-top: 0.7rem;
}

/* Image mosaic */
.uc-mosaic {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.1rem;
	margin: 1.8rem 0 0;
}
.uc-mosaic figure {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	background: var(--uc-ink);
	position: relative;
}
.uc-mosaic img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
}
.uc-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 */
.uc-band {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 4rem;
	color: #ffffff;
	text-align: center;
}
.uc-band img {
	display: block;
	width: 100%;
	height: 420px;
	object-fit: cover;
}
.uc-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;
}
.uc-band__quote {
	font-size: 1.5rem;
	font-style: italic;
	max-width: 30em;
	margin: 0 0 0.9rem;
	line-height: 1.45;
}
.uc-band__cite {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: #ecd0a0;
}

/* Check list (feedback channels) */
.uc-checklist {
	list-style: none;
	margin: 1.2rem 0 0;
	padding: 0;
}
.uc-checklist li {
	position: relative;
	padding: 0.45rem 0 0.45rem 2.1rem;
	font-size: 1rem;
}
.uc-checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.62rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--uc-primary);
}
.uc-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);
}
.uc-checklist strong {
	font-family: 'Barlow', sans-serif;
}

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

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


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


/* v1.3.2: Before & After member rows with quotes */
.uc-bapair {
	margin: 2.6rem 0 0;
	padding-top: 2.2rem;
	border-top: 1px solid #f6ead6;
}
.uc-bapair:first-of-type {
	border-top: 0;
	padding-top: 0;
	margin-top: 1.8rem;
}
.uc-bapair__quote {
	font-size: 1.12rem;
	font-style: italic;
	color: var(--uc-ink);
	max-width: 44em;
	margin: 0 auto 0.5rem;
}
.uc-bapair__name {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--uc-primary);
	margin: 0 0 1.2rem;
}
.uc-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 */
.uc-sales {
	background: #ffffff;
}
.uc-sales .uc-section,
.uc-sales .uc-statband,
.uc-sales .uc-personas,
.uc-sales .uc-faq {
	background: transparent;
}
/* Persona "who" + eyebrow tracking suited to Barlow */
.uc-sales .uc-eyebrow {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	letter-spacing: 0.12em;
}
/* Testimonial film caption spacing already covered by .uc-video */


/* ==========================================================================
   SECTION 5: Homepage (.uc-home)
   v1.5.0 - Router homepage. Wrap the Code Block in
   <div class="uc-home uc-sales"> to inherit base typography, .uc-display,
   .uc-eyebrow, .uc-btn, .uc-hero, .uc-press, .uc-statband,
   .uc-magnet--banner and .uc-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?" --- */
.uc-routes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.4rem;
	margin: 2rem 0 0;
}
a.uc-route {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #f3e4cb;
	border-top: 4px solid var(--uc-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(--uc-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.uc-route:hover,
a.uc-route:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(13, 36, 56, 0.12);
	border-color: var(--uc-primary);
	color: var(--uc-ink);
}
.uc-route__label {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--uc-primary);
	margin: 0 0 0.6rem;
}
.uc-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(--uc-ink);
	margin: 0 0 0.7rem;
}
.uc-route__text {
	font-size: 0.99rem;
	margin: 0 0 1.2rem;
	flex: 1 1 auto;
}
.uc-route__go {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--uc-primary);
}
.uc-route__go::after {
	content: '\2192';
	margin-left: 0.4em;
	transition: margin-left 0.15s ease;
}
a.uc-route:hover .uc-route__go::after,
a.uc-route:focus .uc-route__go::after {
	margin-left: 0.7em;
}
.uc-routes__note {
	text-align: center;
	font-size: 0.95rem;
	color: #5a6070;
	margin: 1.6rem 0 0;
}
.uc-routes__note a {
	color: var(--uc-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.4);
}
.uc-routes__note a:hover,
.uc-routes__note a:focus {
	border-bottom-color: var(--uc-primary);
}

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

/* --- Free resource tiles --- */
.uc-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.3rem;
	margin: 2rem 0 0;
}
a.uc-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.uc-tile:hover,
a.uc-tile:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(13, 36, 56, 0.18);
}
.uc-tile img {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.uc-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(--uc-ink);
	background: #ffffff;
}
.uc-tile__label::after {
	content: '\2192';
	float: right;
	color: var(--uc-primary);
}
.uc-tiles__more {
	text-align: center;
	margin: 2rem 0 0;
}

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


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

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


/* ==========================================================================
   SECTION 6: Blog sidebar + end-of-post offer (v1.8.0, link-out)
   [uc_blog_aside] -> .uc-blog-aside in the sidebar widget (sticky).
   the_content filter -> .uc-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.
   ========================================================================== */

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

/* Offer card (link-out) */
a.uc-blog-aside__offer {
	display: block;
	text-align: center;
	background: #fff8ee;
	border: 1px solid #f3e4cb;
	border-top: 4px solid var(--uc-primary);
	border-radius: 10px;
	padding: 1.5rem 1.4rem 1.6rem;
	text-decoration: none;
	color: var(--uc-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.uc-blog-aside__offer:hover,
a.uc-blog-aside__offer:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(13, 36, 56, 0.12);
	color: var(--uc-ink);
}
.uc-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);
}
.uc-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(--uc-heading);
	margin-bottom: 0.5rem;
}
.uc-blog-aside__text {
	display: block;
	font-size: 0.92rem;
	line-height: 1.5;
	margin-bottom: 1.1rem;
}
a.uc-blog-aside__offer .uc-magnet__button {
	display: inline-block;
}

/* Soft Academy bridge card */
a.uc-aside-bridge {
	display: block;
	background: #ffffff;
	border: 1px solid #f3e4cb;
	border-radius: 10px;
	padding: 1.3rem 1.4rem;
	text-decoration: none;
	color: var(--uc-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.uc-aside-bridge:hover,
a.uc-aside-bridge:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(13, 36, 56, 0.12);
	border-color: var(--uc-primary);
	color: var(--uc-ink);
}
.uc-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(--uc-primary);
	margin-bottom: 0.45rem;
}
.uc-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(--uc-heading);
	margin-bottom: 0.5rem;
}
.uc-aside-bridge__text {
	display: block;
	font-size: 0.92rem;
	line-height: 1.5;
	margin-bottom: 0.8rem;
}
.uc-aside-bridge__go {
	display: block;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--uc-primary);
}
.uc-aside-bridge__go::after {
	content: '\2192';
	margin-left: 0.4em;
	transition: margin-left 0.15s ease;
}
a.uc-aside-bridge:hover .uc-aside-bridge__go::after,
a.uc-aside-bridge:focus .uc-aside-bridge__go::after {
	margin-left: 0.7em;
}

/* End-of-post offer link (reuses .uc-magnet--inline; spans because it is an <a>) */
a.uc-magnet--link {
	text-decoration: none;
	color: var(--uc-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.uc-magnet--link:hover,
a.uc-magnet--link:focus {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(13, 36, 56, 0.12);
	color: var(--uc-ink);
}
.uc-magnet__h3 {
	display: block;
	font-family: 'Barlow Condensed', 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--uc-heading);
	margin-bottom: 0.4rem;
}
.uc-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. */
.uc-inline-capture--mobile {
	display: none;
}
@media (max-width: 800px) {
	.uc-inline-capture--mobile {
		display: block;
		margin-top: 2rem;
	}
}


/* ==========================================================================
   SECTION 7: Easy Classical Guitar collection page (.uc-easy) (v1.9.0)
   Wrap the page in <div class="uc-home uc-sales uc-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 .uc-volume).
   ========================================================================== */

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

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

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

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


/* ==========================================================================
   SECTION 8: Books catalog page (.uc-bookspage) (v1.10.0)
   Wrap in <div class="uc-home uc-sales uc-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="uc-book">.
   ========================================================================== */

.uc-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(--uc-heading);
	margin: 0 0 0.3rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--uc-primary);
}
.uc-groupintro {
	margin: 0.6rem 0 0;
	color: #5a6070;
	line-height: 1.6;
	max-width: 60ch;
}

.uc-books {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.6rem;
	margin: 1.8rem 0 0;
}
a.uc-book {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #f3e4cb;
	border-radius: 10px;
	padding: 1.4rem 1.4rem 1.3rem;
	text-decoration: none;
	color: var(--uc-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.uc-book:hover,
a.uc-book:focus {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(13, 36, 56, 0.14);
	border-color: var(--uc-primary);
	color: var(--uc-ink);
}
.uc-book__cover {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 230px;
	margin-bottom: 1.1rem;
}
.uc-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);
}
.uc-book__titlerow {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.4rem;
}
.uc-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(--uc-heading);
	margin: 0;
}
.uc-book__desc {
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0 0 1rem;
	flex: 1 1 auto;
}
.uc-book__go {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--uc-primary);
}
.uc-book__go::after {
	content: '\2192';
	margin-left: 0.4em;
	transition: margin-left 0.15s ease;
}
a.uc-book:hover .uc-book__go::after,
a.uc-book:focus .uc-book__go::after {
	margin-left: 0.7em;
}

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


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

/* Team grid */
.uc-team {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.2rem 1.6rem;
	margin: 2rem 0 0;
}
.uc-member {
	flex: 0 1 200px;
	text-align: center;
}
.uc-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;
}
.uc-member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.uc-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(--uc-heading);
	margin: 0 0 0.1rem;
}
.uc-member__role {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--uc-primary);
	margin: 0 0 0.6rem;
}
.uc-member__bio {
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0 0 0.6rem;
	color: var(--uc-ink);
}
.uc-member__link {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--uc-primary);
	text-decoration: none;
}
.uc-member__link::after {
	content: '\2192';
	margin-left: 0.35em;
}

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

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

/* Podcast credibility line */
.uc-aboutline {
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.6;
	max-width: 680px;
	margin: 0 auto;
}
.uc-aboutline a {
	color: var(--uc-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). */
.uc-about .uc-cred,
.uc-about .uc-about-quote {
	text-align: left;
}
/* Bulletproof the centered intros against Avada's global paragraph styles. */
.uc-about .uc-center > p {
	text-align: center;
}

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


/* ==========================================================================
   SECTION 10: Global footer (.uc-footer) (v1.12.0)
   Lives in the Avada global footer (one Code Block), NOT per page. Unscoped
   (no .uc-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.
   ========================================================================== */
.uc-footer {
	background: #1f2430;
	color: #b3bfc9;
	font-family: 'Barlow', sans-serif;
	font-size: 0.95rem;
}
.uc-footer * {
	box-sizing: border-box;
}
.uc-footer a {
	color: #aeb9c4;
	text-decoration: none;
	transition: color 0.15s ease;
}
.uc-footer a:hover,
.uc-footer a:focus {
	color: var(--uc-primary);
}
.uc-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3.2rem 2rem 1.4rem;
}
.uc-footer__top {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 2rem;
}
.uc-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;
}
.uc-footer__tag {
	margin: 0.7rem 0 1.1rem;
	color: #8a97a3;
	line-height: 1.5;
	max-width: 30ch;
}
.uc-footer__social {
	display: flex;
	gap: 0.7rem;
}
.uc-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;
}
.uc-footer__social a:hover,
.uc-footer__social a:focus {
	border-color: var(--uc-primary);
	color: var(--uc-primary);
}
.uc-footer__social svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.uc-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;
}
.uc-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.uc-footer__col li {
	margin-bottom: 0.5rem;
	line-height: 1.35;
}
.uc-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;
}
.uc-footer__legal a {
	color: #8a97a3;
}
@media (max-width: 1000px) {
	.uc-footer__top {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.uc-footer__brand {
		grid-column: 1 / -1;
	}
}
@media (max-width: 620px) {
	.uc-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 1.6rem;
	}
	.uc-footer__brand {
		grid-column: 1 / -1;
	}
	.uc-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}


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

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

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


/* 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
   .uc-sheet so the /books/ page is unaffected. */
.uc-sheet .uc-books {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.4rem;
}
.uc-sheet .uc-book {
	flex: 0 1 190px;
}
.uc-sheet .uc-book__cover {
	height: 180px;
	margin-bottom: 0.9rem;
}
.uc-sheet .uc-book__cover img {
	max-height: 180px;
}


/* ==========================================================================
   SECTION 12: Gear page (.uc-gear) (v1.14.0)
   Wrap in <div class="uc-home uc-sales uc-gear-page">. Categorised gear
   cards with affiliate links + a disclosure. Reuses .uc-grouphead,
   .uc-academy-cta. Also used for the recommended-sites list.
   ========================================================================== */
.uc-disclosure {
	max-width: 660px;
	margin: 1.4rem auto 0;
	padding: 0.9rem 1.3rem;
	background: #fff8ee;
	border: 1px solid #f3e4cb;
	border-radius: 8px;
	font-size: 0.86rem;
	line-height: 1.5;
	color: #5a6070;
	text-align: center;
}
.uc-gear {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.2rem;
	margin: 1.4rem 0 0;
}
.uc-gearitem {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #f3e4cb;
	border-radius: 10px;
	padding: 1.3rem 1.4rem;
	box-shadow: 0 4px 14px rgba(13, 36, 56, 0.05);
}
.uc-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(--uc-heading);
	margin: 0 0 0.4rem;
}
.uc-gearitem__note {
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0 0 1rem;
	flex: 1 1 auto;
}
.uc-gearitem__link {
	align-self: flex-start;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--uc-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.4);
	transition: border-color 0.15s ease;
}
.uc-gearitem__link:hover,
.uc-gearitem__link:focus {
	border-bottom-color: var(--uc-primary);
}
.uc-gearitem__link::after {
	content: '\2197';
	margin-left: 0.3em;
}
.uc-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 (.uc-guide) (v1.15.0)
   Wrap in <div class="uc-home uc-sales uc-guide">. Readable article column
   with restrained headings (not display), a table of contents, quick-answer
   callouts, comparison tables, and "further reading" links. Reuses
   .uc-section (scroll-margin anchors), .uc-academy-cta, .uc-eyebrow.
   ========================================================================== */
.uc-guide__body {
	max-width: 820px;
	margin: 0 auto;
}
.uc-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(--uc-heading);
	margin: 0 0 0.9rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #f6ead6;
}
.uc-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(--uc-heading);
	margin: 1.8rem 0 0.5rem;
}
.uc-guide__body p,
.uc-guide__body li {
	font-size: 1.04rem;
	line-height: 1.7;
	color: #3b424f;
}
.uc-guide__body p {
	margin: 0 0 1.1rem;
}
.uc-guide__body ul,
.uc-guide__body ol {
	margin: 0 0 1.2rem;
	padding-left: 1.3rem;
}
.uc-guide__body li {
	margin-bottom: 0.45rem;
	line-height: 1.6;
}
.uc-guide__body a {
	color: var(--uc-primary);
	text-decoration: none;
	border-bottom: 1px solid rgba(31, 154, 182, 0.35);
	transition: border-color 0.15s ease;
}
.uc-guide__body a:hover,
.uc-guide__body a:focus {
	border-bottom-color: var(--uc-primary);
}
.uc-guide__body a.uc-more {
	display: inline-block;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	border-bottom: none;
	margin: 0.1rem 0 0;
}
.uc-guide__body a.uc-more::after {
	content: ' \2192';
}

/* Table of contents */
.uc-toc {
	max-width: 820px;
	margin: 0 auto 3.2rem;
	background: #fff8ee;
	border: 1px solid #f3e4cb;
	border-radius: 12px;
	padding: 1.6rem 1.9rem;
}
.uc-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(--uc-heading);
	margin: 0 0 0.9rem;
}
.uc-toc ol {
	columns: 2;
	column-gap: 2.4rem;
	margin: 0;
	padding: 0 0 0 1.2rem;
}
.uc-toc li {
	margin-bottom: 0.45rem;
	line-height: 1.4;
	break-inside: avoid;
}
.uc-toc a {
	color: var(--uc-primary);
	text-decoration: none;
}
.uc-toc a:hover,
.uc-toc a:focus {
	text-decoration: underline;
}
@media (max-width: 560px) {
	.uc-toc ol {
		columns: 1;
	}
}

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

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


/* ==========================================================================
   SECTION 14: Lesson hub template (.uc-hub) (v1.16.0)
   Wrap in <div class="uc-home uc-sales uc-hub">. Reusable across the free
   lesson category pages (beginners, repertoire, technique, practice,
   sight-reading, theory). New: featured lesson cards. Reuses .uc-pieces for
   the grouped lesson directory, .uc-magnet--banner, .uc-academy-cta,
   .uc-testimonials.
   NOTE: the featured-card grid is .uc-lesson-cards (NOT .uc-lessons, which
   is the Free Lessons page wrapper in Section 2).
   ========================================================================== */
.uc-lesson-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.5rem;
	margin: 1.8rem 0 0;
}
a.uc-lesson {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #f3e4cb;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: var(--uc-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.uc-lesson:hover,
a.uc-lesson:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(13, 36, 56, 0.12);
	border-color: var(--uc-primary);
	color: var(--uc-ink);
}
.uc-lesson__img {
	height: 170px;
	background: #fff6e8;
	overflow: hidden;
}
.uc-lesson__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.uc-lesson__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 1.1rem 1.25rem 1.2rem;
}
.uc-lesson__label {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--uc-primary);
	margin: 0 0 0.35rem;
}
.uc-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(--uc-heading);
	margin: 0 0 0.4rem;
}
.uc-lesson__text {
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0 0 0.9rem;
	flex: 1 1 auto;
}
.uc-lesson__go {
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--uc-primary);
}
.uc-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 .uc-ult
   + !important on the side margins restores the intended centering. */
.uc-ult .uc-pricing-note {
	margin: 1.6rem auto 0 !important;
	text-align: center;
}
.uc-ult .uc-bapair__quote {
	margin: 0 auto 0.5rem !important;
	text-align: center;
}
.uc-ult .uc-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. .uc-academy-cta p (the "join us" box on books, about,
   easy, sheet music, resources, gear, hub, guide, free lessons) and the gear
   .uc-disclosure note both used margin:0 auto on a bare class; Avada's global
   <p> margin was left-pinning them. !important restores the centering. */
.uc-academy-cta p {
	margin: 0 auto 1.4rem !important;
	text-align: center;
}
.uc-disclosure {
	margin: 1.4rem auto 0 !important;
}


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


/* v1.17.1: reviews page enrichment - member photos, CSS-only "read full review"
   expander for long testimonials, and broadened before/after quote centering
   so the video section aligns on /reviews/ (.uc-hub) as well as the sales page. */
.uc-review__img {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
	border-radius: 8px;
	margin: 0 0 1rem;
}
.uc-review--press .uc-review__img {
	height: 150px;
}
/* expandable (long) review = <details class="uc-review uc-review--exp"> */
.uc-review--exp summary {
	list-style: none;
	cursor: pointer;
	display: block;
}
.uc-review--exp summary::-webkit-details-marker {
	display: none;
}
.uc-review--exp:not([open]) .uc-review__clamp {
	max-height: 11em;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(180deg, #000 62%, transparent);
	mask-image: linear-gradient(180deg, #000 62%, transparent);
}
.uc-review__toggle {
	display: inline-block;
	margin: 0.6rem 0 0;
	font-family: 'Barlow', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--uc-primary);
}
.uc-review--exp:not([open]) .uc-review__toggle::after {
	content: 'Read full review \25BE';
}
.uc-review--exp[open] .uc-review__toggle::after {
	content: 'Show less \25B4';
}
/* before/after quote centering, unscoped so it also holds on /reviews/ */
.uc-bapair__quote {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center;
}

/* ==========================================================================
   UC ACCENT OVERRIDES (amber)
   --------------------------------------------------------------------------
   The tokens above set the structural colour to slate (#454e62) so buttons /
   bands keep white text legible. This block layers UC amber (#ffad2b) onto the
   accent roles: primary CTA buttons (amber fill + slate text), Free flags,
   accent links and focus rings. .uc-btn--ghost is left as the outline style.
   ========================================================================== */

/* Primary call-to-action buttons: amber fill, slate text. */
.uc-capture__button,
.uc-magnet__button,
.uc-btn:not(.uc-btn--ghost),
a.uc-blog-aside__offer .uc-magnet__button {
  background: var(--uc-accent) !important;
  color: var(--uc-primary) !important;
  border-color: var(--uc-accent) !important;
  text-shadow: none !important;
}
.uc-capture__button:hover,
.uc-magnet__button:hover,
.uc-btn:not(.uc-btn--ghost):hover,
a.uc-blog-aside__offer .uc-magnet__button:hover {
  background: var(--uc-accent-deep) !important;
  color: #ffffff !important;
}

/* "Free" flags pop better in amber than slate. */
.uc-badge:not(.uc-badge--soon),
.uc-tag--free { background: var(--uc-accent) !important; color: var(--uc-primary) !important; }

/* Accent link hovers / route indicator. */
.uc-jumpnav a:hover,
.uc-route__go { color: var(--uc-accent-text) !important; }

/* Focus ring. */
.uc-capture__field:focus,
.uc-btn:focus-visible,
a.uc-route:focus-visible {
  outline: 2px solid var(--uc-accent) !important;
  outline-offset: 2px;
}
