/*
Theme Name: Marketing Engineer
Theme URI: https://marketingengineer.io
Author: Marketing Engineer
Author URI: https://marketingengineer.io
Description: Marketing Engineer theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marketingengineer
*/

/* ==================================================================
   SHARED STYLES
   ================================================================== */

/* MarketingEngineer.io - Shared Styles */

/* Reset & Variables */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--teal: #0d7c7f;
	--teal-dark: #0a5f61;
	--teal-pale: #f0fafa;
	--dark-header: #2A2C30;
	--gray-50: #fafafa;
	--gray-100: #f5f5f5;
	--gray-200: #e5e5e5;
	--gray-300: #d4d4d4;
	--gray-400: #a3a3a3;
	--gray-500: #737373;
	--gray-600: #525252;
	--gray-700: #404040;
	--gray-800: #262626;
	--gray-900: #171717;
	--black: #000000;
	--white: #ffffff;
}

html, body {
	height: 100%;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	color: var(--gray-900);
	background: var(--white);
	line-height: 1.5;
	padding-top: 64px;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Container */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header */
header {
	background: var(--dark-header);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

body.admin-bar header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar header {
		top: 46px;
	}
}

.header-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.logo:hover {
	text-decoration: none;
}

.logo-group {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.logo-byline {
	font-size: 0.875rem;
	color: var(--gray-400);
	font-weight: 400;
}

.byline-from {
	font-size: 0.75rem;
	color: var(--gray-600);
}

.logo-byline a {
	color: var(--gray-400);
	text-decoration: none;
}

.logo-byline a:hover {
	color: var(--white);
	text-decoration: none;
}

nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

nav a {
	color: var(--gray-300);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color 0.2s;
}

nav a:hover {
	color: var(--white);
	text-decoration: none;
}

.dropdown {
	position: relative;
}

.dropdown-toggle {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	color: var(--gray-300);
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color 0.2s;
}

.dropdown-toggle:hover {
	color: var(--white);
}

.dropdown-toggle::after {
	content: '▾';
	font-size: 0.625rem;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--dark-header);
	border: 1px solid #3d3f44;
	border-radius: 8px;
	min-width: 180px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	padding: 0.5rem;
	padding-top: 1rem;
	margin-top: 0;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu a {
	display: block;
	padding: 0.625rem 0.875rem;
	font-size: 0.875rem;
	border-radius: 4px;
	color: var(--gray-300);
}

.dropdown-menu a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	text-decoration: none;
}

/* Mobile menu */
.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
	padding: 8px;
}

.menu-icon span {
	display: block;
	width: 22px;
	height: 2px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 2px;
	transition: all 0.3s;
	transform-origin: center;
}

/* Buttons */
.btn-primary {
	background: var(--teal);
	color: white;
	padding: 0.875rem 1.75rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	display: inline-block;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: var(--teal-dark);
	transform: translateY(-1px);
	text-decoration: none;
}

.btn-secondary {
	border: 1px solid var(--gray-300);
	color: var(--gray-900);
	padding: 0.875rem 1.75rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	display: inline-block;
	transition: all 0.2s;
	background: white;
	cursor: pointer;
}

.btn-secondary:hover {
	border-color: var(--gray-400);
	background: var(--gray-50);
	text-decoration: none;
}

.btn-light {
	background: white;
	color: var(--teal-dark);
	padding: 0.875rem 1.75rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	display: inline-block;
	transition: all 0.2s;
	cursor: pointer;
}

.btn-light:hover {
	background: var(--gray-100);
	text-decoration: none;
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
}

/* Section styles */
section {
	padding: 5rem 0;
}

.section-header {
	margin-bottom: 3.5rem;
	max-width: 720px;
}

.section-header.centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-label {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--teal);
	margin-bottom: 0.75rem;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

h2 {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--gray-900);
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--gray-600);
	line-height: 1.6;
}

/* Footer */
footer {
	background: var(--dark-header);
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-col h4 {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.25rem;
	color: var(--white);
}

.footer-col p {
	color: var(--gray-400);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 0.75rem;
}

.footer-col a {
	color: var(--gray-400);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--white);
	text-decoration: none;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.social-links a {
	width: 32px;
	height: 32px;
	border: 1px solid var(--gray-600);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	transition: border-color 0.2s, color 0.2s;
}

.social-links a:hover {
	border-color: var(--teal);
	color: var(--teal);
	text-decoration: none;
}

.social-links svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: var(--gray-500);
}

/* Newsletter */
.newsletter-section {
	background: var(--gray-100);
	padding: 4rem 0;
	border-bottom: 1px solid var(--gray-300);
}

.newsletter-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-content h2 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.newsletter-content p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
}

.newsletter-form {
	display: flex;
	gap: 0.75rem;
	max-width: 450px;
	margin: 0 auto;
}

.newsletter-form input {
	flex: 1;
	padding: 0.875rem 1rem;
	border: 1px solid var(--gray-300);
	border-radius: 6px;
	font-size: 0.9375rem;
	background: white;
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--teal);
}

.newsletter-form button {
	background: var(--teal);
	color: white;
	padding: 0.875rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: background 0.2s;
}

.newsletter-form button:hover {
	background: var(--teal-dark);
}

/* CTA Section */
.cta-section {
	background: var(--teal);
	padding: 5rem 2rem;
	text-align: center;
	border-bottom: 1px solid var(--teal-dark);
}

.cta-section h2 {
	color: white;
	margin-bottom: 1rem;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

/* Responsive - Base */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.menu-icon {
		display: flex;
	}

	nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--dark-header);
		flex-direction: column;
		gap: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		border-top: 1px solid rgba(255, 255, 255, 0.10);
	}

	nav a {
		padding: 12px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.menu-toggle:checked ~ nav {
		max-height: 300px;
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.header-wrap {
		position: relative;
	}

	.dropdown {
		display: none;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.875rem;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
	}

	nav {
		gap: 1rem;
	}

	.newsletter-form {
		flex-direction: column;
	}
}

/* Print */
@media print {
	header, footer {
		display: none;
	}

	.container {
		width: 100%;
		margin: 0;
	}

	body {
		background: #fff;
	}
}

/* ==================================================================
   HOMEPAGE STYLES
   ================================================================== */

/* Homepage-specific styles */

/* Hero */
.hero {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 50%, #3a4a52 100%);
	border-bottom: 1px solid var(--teal-dark);
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.hero h1 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 3.25rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	color: var(--white);
}

.hero-divider {
	width: 60px;
	height: 2px;
	background: rgba(255, 255, 255, 0.4);
	margin: 2rem 0;
}

.hero .subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 0;
	font-weight: 400;
	max-width: 600px;
}

.hero .credentials {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	letter-spacing: 0.02em;
}

.hero .credentials span {
	color: rgba(255, 255, 255, 0.85);
}

/* Value Proposition Section */
.value-prop {
	padding: 5rem 0;
	background: white;
	border-bottom: 1px solid var(--gray-200);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.value-card {
	text-align: center;
	padding: 2rem;
}

.value-icon {
	width: 56px;
	height: 56px;
	background: var(--teal-pale);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	color: var(--teal);
}

.value-icon svg {
	width: 28px;
	height: 28px;
	stroke-width: 1.5;
}

.value-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.value-card p {
	color: var(--gray-600);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Curriculum Section */
.curriculum-section {
	padding: 5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.curriculum-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.curriculum-block {
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2.5rem;
	background: white;
}

.curriculum-block h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.curriculum-block .module-label {
	color: var(--teal);
	font-weight: 600;
	margin-bottom: 1.25rem;
	font-size: 0.9375rem;
}

.curriculum-block p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.curriculum-block h4 {
	font-size: 0.9375rem;
	font-weight: 600;
	margin: 1.5rem 0 1rem;
	color: var(--gray-900);
}

.curriculum-block ul {
	list-style: none;
	display: grid;
	gap: 0.5rem;
}

.curriculum-block li {
	color: var(--gray-700);
	font-size: 0.9375rem;
	padding-left: 1.5rem;
	position: relative;
}

.curriculum-block li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--teal);
}

/* Stats Bar */
.stats-bar {
	background: var(--teal);
	padding: 3rem 0;
	border-bottom: 1px solid var(--teal-dark);
}

.stats-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
}

.stat {
	text-align: center;
	color: white;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.375rem;
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 0.9375rem;
	opacity: 0.9;
}

/* Topics Section */
.topics-section {
	padding: 5rem 0;
	background: var(--teal-pale);
	border-bottom: 1px solid #d0e8e8;
}

.topics-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.topics-content h2 {
	margin-bottom: 1.25rem;
}

.topics-content p {
	color: var(--gray-600);
	line-height: 1.65;
	margin-bottom: 1.5rem;
}

.topic-list {
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.topic-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	background: white;
	border-radius: 8px;
	font-weight: 500;
	color: var(--gray-800);
	font-size: 0.9375rem;
}

.topic-list li span {
	color: var(--teal);
	font-weight: 600;
}

.topics-visual {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(13, 124, 127, 0.2);
}

.topics-visual pre {
	font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--gray-700);
	overflow-x: auto;
}

/* Learning Outcomes */
.outcomes-section {
	padding: 5rem 0;
	background: white;
	border-bottom: 1px solid var(--gray-200);
}

.outcomes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.outcome-card {
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2rem;
	background: white;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.outcome-card:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 20px rgba(13, 124, 127, 0.1);
}

.outcome-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.outcome-card p {
	color: var(--gray-600);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Audience Section */
.audience-section {
	padding: 5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.audience-card {
	background: white;
	border-radius: 12px;
	padding: 2.5rem;
	border: 1px solid var(--gray-200);
}

.audience-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--gray-900);
}

.audience-card .audience-role {
	color: var(--teal);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.audience-card p {
	color: var(--gray-600);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.audience-card ul {
	list-style: none;
}

.audience-card li {
	color: var(--gray-700);
	font-size: 0.9375rem;
	padding: 0.375rem 0;
	padding-left: 1.25rem;
	position: relative;
}

.audience-card li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--teal);
	font-weight: bold;
}

/* Founder Section */
.founder-section {
	background: #0f0f0f;
	color: white;
	padding: 5rem 0;
	border-bottom: 1px solid #1a1c20;
}

.founder-section h2,
.founder-section h3 {
	color: white;
}

.founder-section .section-subtitle {
	color: #a3a3a3;
}

.founder-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 5rem;
}

.founder-text h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.founder-text p {
	color: #a3a3a3;
	margin-bottom: 1.5rem;
	line-height: 1.65;
	font-size: 0.9375rem;
}

.expertise-list {
	list-style: none;
}

.expertise-list li {
	padding: 1.125rem 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	margin-bottom: 0.75rem;
	border-left: 2px solid var(--teal);
	color: #e5e5e5;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: background 0.2s;
}

.expertise-list li:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* Differentiator Section */
.differentiator {
	padding: 5rem 0;
	background: var(--gray-900);
	color: white;
	border-bottom: 1px solid var(--gray-800);
}

.differentiator h2 {
	color: white;
}

.differentiator .section-subtitle {
	color: var(--gray-400);
}

.differentiator-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.diff-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-card h3 {
	color: white;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.diff-card p {
	color: var(--gray-400);
	line-height: 1.6;
}

.diff-card ul {
	list-style: none;
	margin-top: 1rem;
}

.diff-card li {
	color: var(--gray-300);
	padding: 0.5rem 0;
	padding-left: 1.25rem;
	position: relative;
	font-size: 0.9375rem;
}

.diff-card li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--teal);
}

/* FAQ Section */
.faq-section {
	padding: 5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.faq-item {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 1.75rem;
}

.faq-item h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.faq-item p {
	color: var(--gray-600);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Code Examples */
.code-section {
	background: white;
	padding: 5rem 0;
	border-bottom: 1px solid var(--gray-200);
}

.code-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.code-block {
	background: var(--gray-900);
	border-radius: 12px;
	overflow: hidden;
}

.code-block-header {
	background: var(--gray-800);
	padding: 0.75rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.code-block-header span {
	color: var(--gray-400);
	font-size: 0.8125rem;
	font-weight: 500;
}

.code-block-header .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--gray-600);
}

.code-block pre {
	padding: 1.25rem;
	margin: 0;
	overflow-x: auto;
	font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--gray-300);
}

.code-block .keyword { color: #c792ea; }
.code-block .string { color: #c3e88d; }
.code-block .comment { color: #546e7a; }
.code-block .function { color: #82aaff; }

/* Resources Section */
.resources-section {
	background: white;
	padding: 5rem 0;
	border-bottom: 1px solid var(--gray-200);
}

.resources-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.resource-card {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
}

.resource-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--gray-900);
}

.resource-card p {
	color: var(--gray-600);
	font-size: 0.9375rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.resource-card a {
	color: var(--teal);
	font-weight: 500;
	text-decoration: none;
	font-size: 0.9375rem;
}

.resource-card a:hover {
	text-decoration: underline;
}

/* ============================================================
		ROADMAP SECTIONS - All Three Versions
		============================================================ */

/* Shared: Black background style */
.roadmap-v1,
.roadmap-v2,
.roadmap-v3 {
	background: #0f0f0f;
	color: white;
	padding: 5rem 0;
	border-bottom: 1px solid #1a1c20;
}

.roadmap-v1 h2,
.roadmap-v2 h2,
.roadmap-v3 h2 {
	color: white;
}

.roadmap-v1 .section-subtitle,
.roadmap-v2 .section-subtitle,
.roadmap-v3 .section-subtitle {
	color: #a3a3a3;
}

/* White Spacer Sections */
.spacer-section {
	background: white;
	padding: 3rem 0;
	border-bottom: 1px solid var(--gray-200);
}

.spacer-content {
	text-align: center;
}

.spacer-label {
	color: var(--teal);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.spacer-content h3 {
	font-size: 1.25rem;
	color: var(--gray-400);
	font-weight: 500;
}

/* ----------------------------------------
		VERSION 1: Collapsible Accordion
		---------------------------------------- */
.roadmap-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.roadmap-week {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.roadmap-week summary {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	list-style: none;
	transition: background 0.2s;
}

.roadmap-week summary::-webkit-details-marker {
	display: none;
}

.roadmap-week summary:hover {
	background: rgba(255, 255, 255, 0.05);
}

.roadmap-week[open] summary {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.week-number {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	min-width: 55px;
}

.week-title {
	flex: 1;
	font-weight: 600;
	font-size: 1rem;
	color: white;
}

.week-count {
	font-size: 0.8125rem;
	color: #666;
}

.week-content {
	padding: 1rem 1.5rem 1.5rem;
}

.episode-list {
	display: grid;
	gap: 0.5rem;
}

.episode {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.625rem 0;
	color: #a3a3a3;
	font-size: 0.9375rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.episode:last-child {
	border-bottom: none;
}

.episode .day {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--teal);
	min-width: 45px;
}

.roadmap-note {
	text-align: center;
	color: #666;
	font-size: 0.875rem;
	margin-top: 2rem;
	font-style: italic;
}

/* ----------------------------------------
		VERSION 2: Compact Grid Cards
		---------------------------------------- */
.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.roadmap-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 1.75rem;
	transition: border-color 0.2s, background 0.2s;
}

.roadmap-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
}

.card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.card-week {
	font-size: 2rem;
	font-weight: 700;
	color: var(--teal);
	letter-spacing: -0.02em;
	line-height: 1;
}

.card-badge {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #666;
	background: rgba(255, 255, 255, 0.06);
	padding: 0.25rem 0.625rem;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.roadmap-card h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	color: white;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.card-topics {
	list-style: none;
	padding: 0;
	margin: 0;
}

.card-topics li {
	font-size: 0.8125rem;
	color: #888;
	padding: 0.375rem 0;
	padding-left: 1rem;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.card-topics li:last-child {
	border-bottom: none;
}

.card-topics li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--teal);
	font-size: 0.75rem;
}

/* ----------------------------------------
		Roadmap Links - Maintain colors, underline on hover
		---------------------------------------- */
.roadmap-v2 a {
	text-decoration: none;
	transition: text-decoration 0.15s;
}

.roadmap-v2 a:hover {
	text-decoration: underline;
}

.roadmap-card h3 a,
.roadmap-card-b h3 a,
.roadmap-card-c h3 a {
	color: white;
}

.roadmap-card .card-topics a {
	color: #888;
}

.roadmap-card a.card-week {
	color: var(--teal);
}

.roadmap-card a.card-badge {
	color: #666;
}

/* Coming Soon state */
.roadmap-card.coming-soon {
	opacity: 0.7;
}

.roadmap-card.coming-soon .card-week {
	color: #555;
}

.card-badge.soon {
	background: rgba(255, 255, 255, 0.08);
	color: #888;
	border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* ============================================================
		Responsive - Roadmap sections
		============================================================ */
@media (max-width: 1024px) {
	.roadmap-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.roadmap-grid {
		grid-template-columns: 1fr;
	}
}

/* Responsive - Homepage specific */
@media (max-width: 1024px) {
	.hero h1 {
		font-size: 2.75rem;
	}

	.curriculum-grid,
	.topics-grid,
	.audience-grid,
	.differentiator-grid,
	.founder-grid {
		grid-template-columns: 1fr;
	}

	.outcomes-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.value-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.code-grid {
		grid-template-columns: 1fr;
	}

	.resources-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.founder-grid {
		gap: 3rem;
	}
}

@media (max-width: 640px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero .subtitle {
		font-size: 1.0625rem;
	}

	.hero-ctas {
		flex-direction: column;
	}

	.outcomes-grid,
	.faq-grid,
	.value-grid,
	.resources-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ==================================================================
   RECENT EPISODES LIST (Front Page)
   ================================================================== */

.recent-episodes-section {
	padding: 4rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.episodes-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.episode-row {
	display: grid;
	grid-template-columns: 7rem 1fr auto;
	gap: 1.5rem;
	align-items: start;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--gray-200);
	text-decoration: none;
	color: inherit;
	transition: background 0.15s;
}

.episode-row:first-child {
	border-top: 1px solid var(--gray-200);
}

.episode-row:hover {
	background: white;
	text-decoration: none;
}

.episode-date {
	font-size: 0.8125rem;
	color: var(--gray-500);
	white-space: nowrap;
	padding-top: 0.125rem;
}

.episode-info {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	min-width: 0;
}

.episode-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--gray-900);
	line-height: 1.4;
}

.episode-row:hover .episode-title {
	color: var(--teal);
}

.episode-summary {
	font-size: 0.875rem;
	color: var(--gray-600);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.episode-meta {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	white-space: nowrap;
	padding-top: 0.125rem;
}

.episode-level,
.episode-duration {
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-weight: 500;
}

.episode-level {
	background: var(--teal-pale);
	color: var(--teal-dark);
	border: 1px solid #d0e8e8;
}

.episode-duration {
	background: var(--gray-100);
	color: var(--gray-600);
	border: 1px solid var(--gray-200);
}

.episode-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	margin-top: 0.25rem;
}

.episode-content-type {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 0.2rem 0.5rem;
	border-radius: 3px;
	background: var(--teal);
	color: white;
}

.episode-category {
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.2rem 0.5rem;
	border-radius: 3px;
	background: var(--gray-700);
	color: white;
}

.episode-tag {
	font-size: 0.6875rem;
	font-weight: 400;
	padding: 0.2rem 0.5rem;
	border-radius: 3px;
	background: transparent;
	color: var(--gray-500);
	border: 1px solid var(--gray-300);
}

.episode-keypoints {
	margin: 0.5rem 0 0 1.125rem;
	padding: 0;
	list-style: disc;
	font-size: 0.8125rem;
	color: var(--gray-500);
	line-height: 1.5;
}

.episode-keypoints li {
	margin-bottom: 0.125rem;
}

.episodes-archive-link {
	text-align: center;
	margin-top: 2rem;
}

.episodes-archive-link a {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--teal);
	border: 1px solid var(--teal);
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s;
}

.episodes-archive-link a:hover {
	background: var(--teal-pale);
}

@media (max-width: 768px) {
	.episode-row {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding: 1rem;
	}

	.episode-meta {
		order: -1;
	}
}

/* ==================================================================
   EPISODE STYLES
   ================================================================== */

/*
	COMBINED — All liked sections from V1, V2, V3, V4
	Sections are labeled with <!-- V1: ... --> etc. in the HTML.
	Delete the sections you don't want; keep the ones you do.
*/

/* ════════════════════════════════════════════════════════════════════════════
	 SHARED — Breadcrumbs, Hero, Video (identical across all variants)
	 ════════════════════════════════════════════════════════════════════════════ */

/* Breadcrumbs removed — using flat nav instead */

.episode-hero {
	background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 50%, #3a4a52 100%);
	padding: 5rem 0 4.5rem;
	border-bottom: 1px solid var(--teal-dark);
}

.episode-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 1.75rem 0;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.hero-week {
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-week-label {
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 700;
	margin-bottom: 1rem;
}

.hero-week-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: start;
	margin-top: 2.5rem;
}

.hero-text p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.0625rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.hero-text p:last-child {
	margin-bottom: 0;
}

.hero-text h2 {
	color: white;
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
}

.hero-text .section-label {
	color: rgba(255, 255, 255, 0.5);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.btn-hero-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.2s;
	cursor: pointer;
}

.btn-hero-outline:hover {
	border-color: white;
	color: white;
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}

.btn-hero-outline.primary {
	border-color: rgba(255, 255, 255, 0.6);
	color: white;
	background: rgba(255, 255, 255, 0.08);
}

.btn-hero-outline.primary:hover {
	background: rgba(255, 255, 255, 0.15);
}

.hero-sidebar {
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 2rem;
	backdrop-filter: blur(4px);
}

.hero-sidebar .side-label {
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-sidebar .kv-grid {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 0.5rem 0.75rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero-sidebar .kv-grid .label {
	color: rgba(255, 255, 255, 0.45);
}

.hero-sidebar .side-block {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-sidebar .side-block:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.hero-chip {
	font-size: 0.75rem;
	padding: 0.375rem 0.625rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.2s;
}

.hero-chip:hover {
	text-decoration: none;
	border-color: rgba(255, 255, 255, 0.4);
	color: white;
	background: rgba(255, 255, 255, 0.1);
}

.video-section {
	padding: 3rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.video-frame {
	border-radius: 12px;
	overflow: hidden;
	background: var(--gray-900);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-frame iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}

/* Shared utilities */
.audio-note {
	margin-top: 0.75rem;
	font-size: 0.8125rem;
	color: var(--gray-500);
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.chip {
	font-size: 0.75rem;
	padding: 0.375rem 0.625rem;
	border: 1px solid var(--gray-200);
	border-radius: 4px;
	background: var(--gray-50);
	color: var(--gray-700);
	transition: all 0.2s;
}

.chip:hover {
	text-decoration: none;
	border-color: var(--teal);
	background: var(--teal-pale);
	color: var(--teal-dark);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid var(--gray-300);
	border-radius: 6px;
	background: var(--white);
	color: var(--gray-700);
	transition: all 0.2s;
	cursor: pointer;
}

.btn-outline:hover {
	border-color: var(--teal);
	color: var(--teal);
	text-decoration: none;
}

.btn-outline.primary {
	border-color: var(--teal);
	color: var(--teal);
}

.btn-outline.primary:hover {
	background: var(--teal-pale);
}

.episode-cta {
	background: var(--teal);
	padding: 4rem 2rem;
	text-align: center;
	border-bottom: 1px solid var(--teal-dark);
}

.episode-cta h2 {
	color: white;
	margin-bottom: 1rem;
}

.episode-cta p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

/* ════════════════════════════════════════════════════════════════════════════
	 V1 — Full-Width Magazine Layout
	 ════════════════════════════════════════════════════════════════════════════ */

/* V1: Subscribe Strip */
.subscribe-strip {
	background: var(--gray-100);
	padding: 3.5rem 0;
	border-bottom: 1px solid var(--gray-300);
}

.subscribe-strip-inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.subscribe-strip-inner h2 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.subscribe-strip-inner p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
}

.subscribe-strip-inner .newsletter-form {
	max-width: 450px;
	margin: 0 auto;
}

/* V1: Episode Stats Bar */
.ep-stats-bar {
	background: var(--teal);
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--teal-dark);
}

.ep-stats-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	text-align: center;
	color: white;
}

.ep-stat-number {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	letter-spacing: -0.02em;
}

.ep-stat-label {
	font-size: 0.8125rem;
	opacity: 0.9;
}

/* V1: Overview */
.overview-section {
	padding: 4rem 0;
	background: white;
	border-bottom: 1px solid var(--gray-200);
}

.overview-inner {
	max-width: 800px;
	margin: 0 auto;
}

.overview-inner .section-label {
	margin-bottom: 0.75rem;
}

.overview-inner h2 {
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

.overview-body {
	color: var(--gray-700);
	font-size: 1.0625rem;
	line-height: 1.75;
	margin-bottom: 2rem;
}

.overview-section .overview-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* V1: Key Points (Outcome Cards) */
.keypoints-section {
	padding: 4rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.keypoints-section .keypoints-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.keypoint-card {
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2rem;
	background: white;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.keypoint-card:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 20px rgba(13, 124, 127, 0.1);
}

.keypoint-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.keypoint-card p {
	color: var(--gray-600);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* V1: Audio */
.audio-section {
	padding: 3.5rem 0;
	background: var(--teal-pale);
	border-bottom: 1px solid #d0e8e8;
}

.audio-inner {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.audio-inner h2 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.audio-inner audio {
	width: 100%;
	max-width: 500px;
	height: 40px;
}

/* V1: Transcript */
.transcript-section {
	padding: 4rem 0;
	background: white;
	border-bottom: 1px solid var(--gray-200);
}

.transcript-inner {
	max-width: 800px;
	margin: 0 auto;
}

.transcript-inner h2 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.transcript-inner p {
	color: var(--gray-700);
	font-size: 0.9375rem;
	line-height: 1.75;
	margin-bottom: 1.25rem;
}

.transcript-inner p:last-child {
	margin-bottom: 0;
}

/* V1: This Week (Roadmap Cards) */
.thisweek-section {
	background: #0f0f0f;
	color: white;
	padding: 4rem 0;
	border-bottom: 1px solid #1a1c20;
}

.thisweek-section h2 {
	color: white;
}

.thisweek-section .section-subtitle {
	color: #a3a3a3;
}

.thisweek-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
}

.thisweek-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 1.5rem;
	transition: border-color 0.2s, background 0.2s;
}

.thisweek-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
}

.thisweek-card.current {
	border-color: var(--teal);
	background: rgba(13, 124, 127, 0.1);
}

.thisweek-day {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.75rem;
}

.thisweek-card h3 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: white;
	line-height: 1.35;
	margin-bottom: 0.5rem;
}

.thisweek-card p {
	font-size: 0.8125rem;
	color: #888;
	line-height: 1.5;
}

.thisweek-card a {
	color: inherit;
}

.thisweek-card a:hover {
	text-decoration: underline;
}

/* V1: Resources (3-Column Cards) */
.resources-section {
	padding: 4rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.resources-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.resource-card {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2rem;
}

.resource-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.resource-link {
	display: block;
	font-size: 0.875rem;
	color: var(--gray-700);
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--gray-100);
	font-weight: 500;
}

.resource-link:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.resource-link:hover {
	color: var(--teal);
	text-decoration: none;
}

.resource-link .desc {
	display: block;
	font-size: 0.75rem;
	color: var(--gray-500);
	font-weight: 400;
	margin-top: 0.125rem;
}

/* ════════════════════════════════════════════════════════════════════════════
	 V2 — Dark-Theme Content Area
	 ════════════════════════════════════════════════════════════════════════════ */

/* V2: Meta Strip */
.meta-strip {
	background: var(--teal);
	padding: 2rem 0;
	border-bottom: 1px solid var(--teal-dark);
}

.meta-strip-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	text-align: center;
	color: white;
}

.meta-strip-val {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.125rem;
}

.meta-strip-lbl {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.85;
}

/* V2: Overview (dark, founder-style) */
.overview-dark {
	background: #0f0f0f;
	padding: 4.5rem 0;
	border-bottom: 1px solid #1a1c20;
}

.overview-dark h2 {
	color: white;
}

.overview-dark-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: start;
}

.overview-text p {
	color: #a3a3a3;
	font-size: 1.0625rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.overview-text p:last-child {
	margin-bottom: 0;
}

.overview-dark .overview-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.btn-dark-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	background: transparent;
	color: #e5e5e5;
	transition: all 0.2s;
	cursor: pointer;
}

.btn-dark-outline:hover {
	border-color: var(--teal);
	color: var(--teal);
	text-decoration: none;
}

.btn-dark-outline.primary {
	border-color: var(--teal);
	color: var(--teal);
}

.btn-dark-outline.primary:hover {
	background: rgba(13, 124, 127, 0.1);
}

.overview-sidebar {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 2rem;
}

.overview-sidebar .side-label {
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 1rem;
	font-weight: 700;
}

.overview-sidebar .kv-grid {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 0.5rem 0.75rem;
	font-size: 0.875rem;
	color: #e5e5e5;
}

.overview-sidebar .kv-grid .label {
	color: #666;
}

.overview-sidebar .side-block {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.overview-sidebar .side-block:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.dark-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.dark-chip {
	font-size: 0.75rem;
	padding: 0.375rem 0.625rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.04);
	color: #a3a3a3;
	transition: all 0.2s;
}

.dark-chip:hover {
	text-decoration: none;
	border-color: var(--teal);
	color: var(--teal);
	background: rgba(13, 124, 127, 0.1);
}

/* V2: Key Points (differentiator-style cards) */
.keypoints-dark {
	padding: 4.5rem 0;
	background: var(--gray-900);
	border-bottom: 1px solid var(--gray-800);
}

.keypoints-dark h2 {
	color: white;
}

.keypoints-dark .section-subtitle {
	color: var(--gray-400);
}

.keypoints-dark-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.kp-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: border-color 0.2s, background 0.2s;
}

.kp-card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.07);
}

.kp-card h3 {
	color: white;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.kp-card p {
	color: var(--gray-400);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* V2: Subscribe CTA (full-width teal) */
.subscribe-cta {
	background: var(--teal);
	padding: 4rem 2rem;
	text-align: center;
	border-bottom: 1px solid var(--teal-dark);
}

.subscribe-cta h2 {
	color: white;
	margin-bottom: 0.75rem;
}

.subscribe-cta p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.0625rem;
	margin-bottom: 1.5rem;
}

.subscribe-cta .newsletter-form {
	max-width: 450px;
	margin: 0 auto;
}

.subscribe-cta .newsletter-form input {
	border-color: rgba(255, 255, 255, 0.4);
}

.subscribe-cta .newsletter-form input:focus {
	border-color: white;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.subscribe-cta .newsletter-form button {
	background: var(--dark-header);
}

.subscribe-cta .newsletter-form button:hover {
	background: var(--gray-800);
}

/* V2: Audio (dark) */
.audio-dark {
	background: #0f0f0f;
	padding: 3.5rem 0;
	border-bottom: 1px solid #1a1c20;
}

.audio-dark-inner {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.audio-dark-inner h2 {
	color: white;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.audio-dark-inner audio {
	width: 100%;
	max-width: 500px;
	height: 40px;
}

.audio-dark-inner .audio-note {
	color: #666;
}

/* Episode Article (blog-post-style transcript) */
.episode-article {
	background: var(--gray-50);
	padding: 4.5rem 0;
	border-bottom: 1px solid var(--gray-200);
}

.article-inner {
	max-width: 100%;
	margin: 0 auto;
}

.article-inner .section-label {
	margin-bottom: 0.5rem;
}

.article-inner > h2:first-of-type {
	font-size: 2rem;
	color: var(--gray-900);
	margin-bottom: 0.5rem;
	line-height: 1.25;
}

.article-meta {
	font-size: 0.8125rem;
	color: var(--gray-500);
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--gray-200);
}

.article-body h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 2.5rem 0 1rem;
	line-height: 1.3;
}

.article-body h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--gray-800);
	margin: 2rem 0 0.75rem;
	line-height: 1.4;
}

.article-body p {
	color: var(--gray-700);
	font-size: 1.0625rem;
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.article-body a {
	color: var(--teal);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.article-body a:hover {
	color: var(--teal-dark);
}

.article-body strong {
	color: var(--gray-900);
	font-weight: 600;
}

.article-body em {
	font-style: italic;
}

.article-body u {
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: var(--gray-400);
}

.article-body ul,
.article-body ol {
	margin: 1.25rem 0;
	padding-left: 1.5rem;
	color: var(--gray-700);
}

.article-body ul {
	list-style-type: disc;
}

.article-body ol {
	list-style-type: decimal;
}

.article-body li {
	font-size: 1.0625rem;
	line-height: 1.75;
	margin-bottom: 0.5rem;
}

.article-body li::marker {
	color: var(--teal);
}

.article-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	font-size: 0.9375rem;
}

.article-body thead th {
	background: var(--gray-100);
	color: var(--gray-800);
	font-weight: 600;
	text-align: left;
	padding: 0.75rem 1rem;
	border-bottom: 2px solid var(--gray-300);
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.article-body tbody td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--gray-200);
	color: var(--gray-700);
	vertical-align: top;
}

.article-body tbody tr:last-child td {
	border-bottom: none;
}

.article-body tbody tr:hover {
	background: white;
}

.article-body .callout {
	background: white;
	border-left: 3px solid var(--teal);
	padding: 1.25rem 1.5rem;
	margin: 1.5rem 0;
	border-radius: 0 8px 8px 0;
}

.article-body .callout p {
	margin-bottom: 0;
	font-size: 0.9375rem;
	color: var(--gray-600);
}

.article-body figure {
	margin: 2rem 0;
}

.article-body figure img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid var(--gray-200);
	display: block;
}

.article-body figcaption {
	font-size: 0.8125rem;
	color: var(--gray-500);
	margin-top: 0.625rem;
	text-align: center;
	line-height: 1.5;
}

/* Transcript (light, code-block-inspired) */
.transcript-light {
	background: white;
	padding: 4rem 0;
	border-bottom: 1px solid var(--gray-200);
}

.transcript-light-inner {
	max-width: 800px;
	margin: 0 auto;
}

.transcript-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gray-100);
	padding: 0.75rem 1.25rem;
	border-radius: 12px 12px 0 0;
	border: 1px solid var(--gray-200);
	border-bottom: none;
}

.transcript-header .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--gray-400);
}

.transcript-header span {
	color: var(--gray-600);
	font-size: 0.8125rem;
	font-weight: 500;
}

.transcript-body {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-top: none;
	border-radius: 0 0 12px 12px;
	padding: 2rem;
	max-height: 500px;
	overflow-y: auto;
}

.transcript-body p {
	color: var(--gray-700);
	font-size: 0.9375rem;
	line-height: 1.75;
	margin-bottom: 1.25rem;
}

.transcript-body p:last-child {
	margin-bottom: 0;
}

/* This Week (hero-gradient style) */
.thisweek-hero {
	background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 50%, #3a4a52 100%);
	padding: 4.5rem 0;
	border-bottom: 1px solid var(--teal-dark);
}

.thisweek-hero h2 {
	color: white;
}

.thisweek-hero .section-label {
	color: rgba(255, 255, 255, 0.5);
}

.thisweek-hero .section-subtitle {
	color: rgba(255, 255, 255, 0.65);
}

.tw-card {
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 1.5rem;
	transition: border-color 0.2s, background 0.2s;
	backdrop-filter: blur(4px);
}

.tw-card:hover {
	background: rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.25);
}

.tw-card.current {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
}

.tw-day {
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.75rem;
}

.tw-card h3 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: white;
	line-height: 1.35;
	margin-bottom: 0.5rem;
}

.tw-card p {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

.tw-card a {
	color: inherit;
}

.tw-card a:hover {
	text-decoration: underline;
}

/* Resources / Go Deeper (light, 2-column) */
.resources-light {
	padding: 4.5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.resources-light-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.rl-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid var(--gray-200);
}

.rl-card h3 {
	color: var(--gray-900);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.75rem 1rem;
	margin: -2rem -2rem 1.25rem;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-200);
	border-radius: 12px 12px 0 0;
}

.rl-link {
	display: block;
	padding: 0.625rem 0;
	padding-left: 1.25rem;
	position: relative;
	font-size: 0.9375rem;
	color: var(--gray-700);
	font-weight: 500;
	border-bottom: 1px solid var(--gray-100);
}

.rl-link:last-child {
	border-bottom: none;
}

.rl-link::before {
	content: '\2192';
	position: absolute;
	left: 0;
	color: var(--teal);
	font-size: 0.8125rem;
}

.rl-link:hover {
	color: var(--teal);
	text-decoration: none;
}

.rl-link .desc {
	display: block;
	font-size: 0.75rem;
	color: var(--gray-500);
	font-weight: 400;
	margin-top: 0.125rem;
}

/* ════════════════════════════════════════════════════════════════════════════
	 V3 — Clean Alternating Sections (light theme)
	 ════════════════════════════════════════════════════════════════════════════ */

/* V3: Subscribe */
.subscribe-section {
	background: var(--gray-100);
	padding: 3.5rem 0;
	border-bottom: 1px solid var(--gray-300);
}

.subscribe-inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.subscribe-inner h2 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
}

.subscribe-inner p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
}

.subscribe-inner .newsletter-form {
	max-width: 450px;
	margin: 0 auto;
}

/* V3: Overview (topics-section style) */
.overview-topics {
	padding: 4.5rem 0;
	background: var(--teal-pale);
	border-bottom: 1px solid #d0e8e8;
}

.overview-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: start;
}

.overview-topics .overview-text .section-label {
	margin-bottom: 0.75rem;
}

.overview-topics .overview-text h2 {
	margin-bottom: 1.25rem;
}

.overview-topics .overview-text p {
	color: var(--gray-600);
	font-size: 1.0625rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.overview-topics .overview-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.details-visual {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(13, 124, 127, 0.2);
}

.details-visual .dv-label {
	font-size: 0.6875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal-dark);
	margin-bottom: 0.75rem;
	font-weight: 700;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--gray-200);
}

.details-visual .dv-block {
	margin-top: 1.25rem;
}

.details-visual .dv-block:first-child {
	margin-top: 0;
}

.details-visual .kv-grid {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 0.5rem 0.75rem;
	font-size: 0.8125rem;
	color: var(--gray-900);
}

.details-visual .kv-grid .label {
	color: var(--gray-500);
}

/* V3: Key Points (curriculum-block style) */
.keypoints-curriculum {
	padding: 4.5rem 0;
	background: white;
	border-bottom: 1px solid var(--gray-200);
}

.keypoints-curriculum .keypoints-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.kp-block {
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2.5rem;
	background: white;
}

.kp-block .kp-number {
	color: var(--teal);
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-size: 0.9375rem;
}

.kp-block h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.kp-block p {
	color: var(--gray-600);
	line-height: 1.6;
	font-size: 0.9375rem;
}

/* V3: Audio (teal-pale) */
.audio-teal {
	padding: 3.5rem 0;
	background: var(--teal-pale);
	border-bottom: 1px solid #d0e8e8;
}

/* V3: This Week (audience-card style) */
.thisweek-audience {
	padding: 4.5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.thisweek-audience .thisweek-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tw-acard {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid var(--gray-200);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.tw-acard:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 20px rgba(13, 124, 127, 0.08);
}

.tw-acard.current {
	border-color: var(--teal);
	background: var(--teal-pale);
}

.tw-acard .tw-day {
	color: var(--teal);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.tw-acard h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--gray-900);
}

.tw-acard p {
	color: var(--gray-600);
	font-size: 0.875rem;
	line-height: 1.5;
}

.tw-acard a {
	color: inherit;
}

.tw-acard a:hover {
	color: var(--teal);
	text-decoration: none;
}

/* V3: Resources (faq-grid style, 2-col) */
.resources-faq {
	padding: 4.5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.resources-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.rf-card {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 1.75rem;
}

.rf-card h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

.rf-link {
	display: block;
	font-size: 0.9375rem;
	color: var(--gray-700);
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--gray-100);
	font-weight: 500;
	transition: color 0.2s;
}

.rf-link:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.rf-link:hover {
	color: var(--teal);
	text-decoration: none;
}

.rf-link .desc {
	display: block;
	font-size: 0.75rem;
	color: var(--gray-500);
	font-weight: 400;
	margin-top: 0.125rem;
}

/* ════════════════════════════════════════════════════════════════════════════
	 V4 — Hub-Style (This Week + Resources only)
	 ════════════════════════════════════════════════════════════════════════════ */

/* V4: This Week (hub cards with big day numbers) */
.thisweek-hub {
	padding: 4.5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.thisweek-scroll {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.25rem;
}

.tw-hub-card {
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 1.75rem;
	background: white;
	transition: border-color 0.2s, box-shadow 0.2s;
	text-align: center;
}

.tw-hub-card:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 20px rgba(13, 124, 127, 0.1);
}

.tw-hub-card.current {
	border-color: var(--teal);
	background: var(--teal-pale);
	box-shadow: 0 4px 20px rgba(13, 124, 127, 0.1);
}

.tw-hub-day {
	font-size: 2rem;
	font-weight: 700;
	color: var(--teal);
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 0.75rem;
}

.tw-hub-card h3 {
	font-size: 0.9375rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--gray-900);
	line-height: 1.35;
}

.tw-hub-card p {
	font-size: 0.8125rem;
	color: var(--gray-500);
	line-height: 1.5;
}

.tw-hub-card a {
	color: inherit;
}

.tw-hub-card a:hover {
	text-decoration: none;
	color: var(--teal);
}

/* V4: Resources (3-col centered) */
.resources-hub {
	padding: 4.5rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.resources-hub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.rh-card {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
}

.rh-card h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

.rh-link {
	display: block;
	font-size: 0.875rem;
	color: var(--teal);
	font-weight: 500;
	padding: 0.375rem 0;
	transition: color 0.2s;
}

.rh-link:hover {
	text-decoration: underline;
}

.rh-card p.rh-desc {
	color: var(--gray-600);
	font-size: 0.8125rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

/* ════════════════════════════════════════════════════════════════════════════
	 RESPONSIVE — Combined breakpoints for all variants
	 ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
	/* V1 */
	.thisweek-grid { grid-template-columns: repeat(3, 1fr); }
	.keypoints-section .keypoints-grid { grid-template-columns: repeat(2, 1fr); }
	.ep-stats-grid { grid-template-columns: repeat(3, 1fr); }
	.resources-grid { grid-template-columns: repeat(2, 1fr); }

	/* V2 */
	.hero-grid { grid-template-columns: 1fr; }
	.keypoints-dark-grid { grid-template-columns: repeat(2, 1fr); }
	.resources-light-grid { grid-template-columns: 1fr; }
	.meta-strip-grid { grid-template-columns: repeat(3, 1fr); }

	/* V3 */
	.overview-grid { grid-template-columns: 1fr; }
	.keypoints-curriculum .keypoints-grid { grid-template-columns: repeat(2, 1fr); }
	.thisweek-audience .thisweek-grid { grid-template-columns: repeat(2, 1fr); }
	.resources-faq-grid { grid-template-columns: 1fr; }

	/* V4 */
	.thisweek-scroll { grid-template-columns: repeat(3, 1fr); }
	.resources-hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.episode-hero h1 { font-size: 1.75rem; }
	.hero-grid { grid-template-columns: 1fr; gap: 2rem; }
	.hero-week-grid { grid-template-columns: repeat(3, 1fr); }

	/* V1 */
	.thisweek-grid { grid-template-columns: 1fr 1fr; }
	.keypoints-section .keypoints-grid,
	.resources-grid { grid-template-columns: 1fr; }
	.ep-stats-grid { grid-template-columns: repeat(2, 1fr); }

	/* V2 */
	.keypoints-dark-grid { grid-template-columns: 1fr; }
	.resources-light-grid { grid-template-columns: 1fr; }
	.meta-strip-grid { grid-template-columns: repeat(2, 1fr); }

	/* V3 */
	.keypoints-curriculum .keypoints-grid,
	.thisweek-audience .thisweek-grid { grid-template-columns: 1fr; }

	/* V4 */
	.thisweek-scroll { grid-template-columns: 1fr 1fr; }
	.resources-hub-grid { grid-template-columns: 1fr; }

	.overview-actions {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.thisweek-scroll { grid-template-columns: 1fr; }
	.ep-stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.hero-week-grid { grid-template-columns: 1fr; }
	.meta-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; }
	.thisweek-scroll { grid-template-columns: 1fr; }
	.newsletter-form { flex-direction: column; }
	.cta-buttons { flex-direction: column; }
}

/* ==================================================================
   ARCHIVE / BLOG / PAGE / 404 STYLES
   ================================================================== */

/* ── Archive & Blog Hero ── */
.archive-hero {
	background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 50%, #3a4a52 100%);
	padding: 5rem 0 4rem;
	text-align: center;
	border-bottom: 1px solid var(--teal-dark);
}

.archive-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.archive-hero h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.archive-hero-desc {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.125rem;
	line-height: 1.65;
	max-width: 600px;
	margin: 1rem auto 0;
}

/* ── Archive Content / Post List ── */
.archive-list-section {
	padding: 4rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.archive-content {
	max-width: 800px;
	margin: 0 auto;
}

.post-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.post-card {
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2rem;
	background: var(--white);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.post-card:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 20px rgba(13, 124, 127, 0.1);
}

.post-card-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.post-card h2 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.post-card h2 a {
	color: var(--gray-900);
	transition: color 0.2s;
}

.post-card h2 a:hover {
	color: var(--teal);
	text-decoration: none;
}

.post-meta {
	font-size: 0.8125rem;
	color: var(--gray-500);
	margin-bottom: 1rem;
}

.post-excerpt {
	color: var(--gray-600);
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

a.read-more {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--teal);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	transition: gap 0.2s;
}

a.read-more:hover {
	text-decoration: none;
	gap: 0.5rem;
}

/* Archive Empty State */
.archive-empty {
	text-align: center;
	padding: 4rem 2rem;
}

.archive-empty h2 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
}

.archive-empty p {
	color: var(--gray-600);
	font-size: 1.0625rem;
	max-width: 500px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

/* Pagination */
.pagination {
	margin-top: 3rem;
	text-align: center;
}

.pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.625rem;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--gray-700);
	background: var(--white);
	transition: all 0.2s;
}

.pagination .page-numbers.current {
	background: var(--teal);
	border-color: var(--teal);
	color: var(--white);
}

.pagination .page-numbers:hover {
	border-color: var(--teal);
	color: var(--teal);
	text-decoration: none;
}

.pagination .page-numbers.current:hover {
	color: var(--white);
}

/* ── Page Template ── */
.page-hero {
	background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 50%, #3a4a52 100%);
	padding: 5rem 0 4rem;
	text-align: center;
	border-bottom: 1px solid var(--teal-dark);
}

.page-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.page-hero h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin-bottom: 0;
}

.page-body-section {
	padding: 4rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-200);
}

.page-content {
	max-width: 100%;
	margin: 0 auto;
}

.page-content .article-body > p:first-child {
	font-size: 1.1875rem;
	line-height: 1.75;
	color: var(--gray-800);
}

.page-content .article-body h2 {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--gray-200);
}

.page-content .article-body h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.article-body blockquote {
	border-left: 3px solid var(--teal);
	margin: 1.75rem 0;
	padding: 1rem 1.5rem;
	background: var(--white);
	border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
	color: var(--gray-600);
	font-size: 1.0625rem;
	font-style: italic;
	margin-bottom: 0;
}

.article-body hr {
	border: none;
	height: 1px;
	background: var(--gray-200);
	margin: 2.5rem 0;
}

.article-body code {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.875em;
	background: var(--gray-100);
	padding: 0.15em 0.4em;
	border-radius: 4px;
	color: var(--gray-800);
}

.article-body pre {
	background: var(--gray-900);
	color: var(--gray-100);
	padding: 1.25rem 1.5rem;
	border-radius: 8px;
	overflow-x: auto;
	margin: 1.5rem 0;
	font-size: 0.875rem;
	line-height: 1.6;
}

.article-body pre code {
	background: none;
	padding: 0;
	color: inherit;
	font-size: inherit;
}

/* ── 404 Page ── */
.error-hero {
	background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 50%, #3a4a52 100%);
	padding: 5rem 0;
	text-align: center;
	border-bottom: 1px solid var(--teal-dark);
}

.error-hero-content {
	max-width: 600px;
	margin: 0 auto;
}

.error-hero-content .section-label {
	color: rgba(255, 255, 255, 0.5);
}

.error-hero-content h1 {
	font-size: 8rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
	margin-bottom: 1rem;
	letter-spacing: -0.04em;
}

.error-subtitle {
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.125rem;
	line-height: 1.65;
	max-width: 500px;
	margin: 0 auto 2rem;
}

.error-search {
	max-width: 450px;
	margin: 0 auto;
}

.error-search .search-form {
	display: flex;
	gap: 0.75rem;
}

.error-search .search-field {
	flex: 1;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	font-size: 0.9375rem;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	backdrop-filter: blur(4px);
}

.error-search .search-field::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.error-search .search-field:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.15);
}

.error-search .search-submit {
	background: var(--white);
	color: var(--teal-dark);
	padding: 0.875rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: background 0.2s;
}

.error-search .search-submit:hover {
	background: var(--gray-100);
}

/* 404 Helpful Links */
.error-links {
	padding: 4rem 0;
	background: var(--gray-50);
	border-bottom: 1px solid var(--gray-300);
}

.error-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.error-card {
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 2rem;
	background: var(--white);
	text-align: center;
	transition: border-color 0.2s, box-shadow 0.2s;
	display: block;
}

.error-card:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 20px rgba(13, 124, 127, 0.1);
	text-decoration: none;
}

.error-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

.error-card p {
	color: var(--gray-600);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* ── Blog Summary (single.php fallback) ── */
.blog-summary {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem 2rem 0;
	font-size: 1.125rem;
	color: var(--gray-600);
	line-height: 1.7;
	border-bottom: 1px solid var(--gray-200);
	padding-bottom: 2rem;
}

.blog-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem 2rem;
	color: var(--gray-700);
	font-size: 1.0625rem;
	line-height: 1.8;
}

/* ── Search Results ── */
.search-hero {
	background: linear-gradient(135deg, #2c5f6f 0%, #1a3d47 50%, #3a4a52 100%);
	padding: 5rem 0 4rem;
	text-align: center;
	border-bottom: 1px solid var(--teal-dark);
}

.search-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.search-hero h1 {
	color: var(--white);
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -0.025em;
}

.search-hero h1 span {
	color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
}

/* ── Responsive — Archive / Page / 404 ── */
@media (max-width: 1024px) {
	.error-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.archive-hero h1 {
		font-size: 2.25rem;
	}

	.page-hero h1 {
		font-size: 2.25rem;
	}

	.error-hero-content h1 {
		font-size: 5rem;
	}

	.error-grid {
		grid-template-columns: 1fr;
	}

	.error-search .search-form {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.archive-hero h1,
	.page-hero h1 {
		font-size: 2rem;
	}

	.error-hero-content h1 {
		font-size: 4rem;
	}

	.archive-hero-desc {
		font-size: 1rem;
	}
}

/* ════════════════════════════════════════════════════════════════════════════
   HOME NEWSLETTER FORM (Fluent Forms)
   Scoped styling for the newsletter signup on the homepage.
   Renders as an inline name + email + submit row.
   ════════════════════════════════════════════════════════════════════════════ */

.home-newsletter-form {
	max-width: 680px;
	margin: 1rem auto 0;
}

.home-newsletter-form form {
	display: flex !important;
	gap: 0.75rem;
	align-items: stretch;
	flex-wrap: nowrap;
}

/* Flatten ALL Fluent Forms intermediate wrappers so field groups
   and the submit wrapper become direct flex items. */
.home-newsletter-form fieldset,
.home-newsletter-form .ff-t-container,
.home-newsletter-form .ff-t-cell {
	display: contents !important;
}

/* Visually hide labels, legends, and Fluent Forms label wrappers */
.home-newsletter-form legend,
.home-newsletter-form label,
.home-newsletter-form .ff-el-input--label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Base field group — all groups are flex items */
.home-newsletter-form .ff-el-group {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	flex: 1 1 auto;
	min-width: 0;
}

/* Name field: ~30% width */
.home-newsletter-form .ff-el-group:has(input[type="text"]) {
	flex: 0 1 30% !important;
}

/* Email field: fills remaining space */
.home-newsletter-form .ff-el-group:has(input[type="email"]) {
	flex: 1 1 50% !important;
}

.home-newsletter-form .ff-el-input--content {
	display: block !important;
}

/* Inputs — shared styles for text and email */
.home-newsletter-form input[type="text"],
.home-newsletter-form input[type="email"] {
	width: 100% !important;
	max-width: none !important;
	padding: 0.875rem 1rem;
	border: 1px solid var(--gray-300);
	border-radius: 6px;
	font-size: 0.9375rem;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	color: var(--gray-900);
	background: var(--white);
	transition: border-color 0.2s, box-shadow 0.2s;
	line-height: 1.5;
	box-sizing: border-box;
}

.home-newsletter-form input[type="text"]:focus,
.home-newsletter-form input[type="email"]:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(13, 124, 127, 0.15);
}

.home-newsletter-form input[type="text"]::placeholder,
.home-newsletter-form input[type="email"]::placeholder {
	color: var(--gray-500);
}

/* Submit button wrapper */
.home-newsletter-form .ff_submit_btn_wrapper {
	margin: 0 !important;
	padding: 0 !important;
	flex-shrink: 0;
}

/* Submit button */
.home-newsletter-form button[type="submit"],
.home-newsletter-form .ff-btn-submit {
	background: var(--teal) !important;
	color: var(--white) !important;
	padding: 0.875rem 1.75rem;
	border: none !important;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: all 0.2s;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	white-space: nowrap;
	height: 100%;
}

.home-newsletter-form button[type="submit"]:hover,
.home-newsletter-form .ff-btn-submit:hover {
	background: var(--teal-dark) !important;
	color: var(--white) !important;
	transform: translateY(-1px);
}

.home-newsletter-form button[type="submit"]:active {
	transform: translateY(0);
}

/* CTA section override: white-on-teal treatment */
.cta-section .home-newsletter-form input[type="text"],
.cta-section .home-newsletter-form input[type="email"] {
	border-color: rgba(255, 255, 255, 0.3);
	background: var(--white);
}

.cta-section .home-newsletter-form input[type="text"]:focus,
.cta-section .home-newsletter-form input[type="email"]:focus {
	border-color: var(--white);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.cta-section .home-newsletter-form button[type="submit"],
.cta-section .home-newsletter-form .ff-btn-submit {
	background: linear-gradient(135deg, var(--dark-header) 0%, #1a1c20 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.cta-section .home-newsletter-form button[type="submit"]:hover,
.cta-section .home-newsletter-form .ff-btn-submit:hover {
	background: linear-gradient(135deg, #1a1c20 0%, var(--dark-header) 100%) !important;
	border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Error handling */
.home-newsletter-form .ff-errors-in-stack {
	margin-top: 0.75rem;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(220, 38, 38, 0.3);
	border-radius: 6px;
	color: #dc2626;
	font-size: 0.875rem;
	display: none;
}

.home-newsletter-form .ff-errors-in-stack:not(:empty) {
	display: block;
}

.home-newsletter-form .ff-el-form-control[aria-invalid="true"] {
	border-color: rgba(220, 38, 38, 0.6);
	background: rgba(255, 255, 255, 0.95);
}

.home-newsletter-form .ff-el-form-control[aria-invalid="true"]:focus {
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

@media (max-width: 640px) {
	.home-newsletter-form form {
		flex-direction: column !important;
		align-items: stretch;
	}

	.home-newsletter-form .ff-el-group,
	.home-newsletter-form .ff-el-group:has(input[type="text"]),
	.home-newsletter-form .ff-el-group:has(input[type="email"]) {
		flex: 1 1 auto !important;
	}

	.home-newsletter-form button[type="submit"],
	.home-newsletter-form .ff-btn-submit {
		width: 100%;
	}
}
