/**
 * EZ Golf Academy Custom Styles
 * Elite Performance Design System
 * WCAG 2.1 AA | Premium minimal layout
 *
 * @package EZGolfAcademy
 * @since 1.0.0
 */

/* Legacy aliases for compatibility */
:root {
	--ez-blue-primary: var(--ez-primary);
	--ez-blue-secondary: #003366;
	--ez-blue-light: #0055AA;
	--ez-gold-primary: #FFC72C;
	--ez-gold-light: #E6B325;
	--ez-white: var(--ez-surface);
	--ez-gray-light: var(--ez-surface-alt);
	--ez-gray-medium: var(--ez-text-muted);
	--ez-gray-dark: var(--ez-text);
}

/* Accessibility: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Base Typography - Elite Performance */
body, html {
	font-family: var(--ez-font-body);
	font-size: var(--ez-text-base);
	line-height: var(--ez-leading-relaxed);
	color: var(--ez-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ez-font-display);
	font-weight: 700;
	line-height: var(--ez-leading-tight);
	color: var(--ez-primary);
	letter-spacing: var(--ez-tracking-tight);
}

/* Allow override for specific contexts */
.hero-title,
.hero-logo-container .hero-title {
	color: var(--ez-text-inverse) !important;
}

/* Header Styles - Elite Performance (match footer navy) */
#masthead.site-header,
.site-header,
header.site-header {
	background-color: var(--ez-navy, #0E2A47) !important;
	background: var(--ez-navy, #0E2A47) !important;
	color: var(--ez-white) !important;
	padding: 8px 0 !important;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 199, 44, 0.2);
	min-height: auto !important;
	height: auto !important;
}

.site-header.scrolled {
	background-color: var(--ez-navy) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	padding: 6px 0;
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	flex-shrink: 0;
}

/* Header Logo - Transparent, EXACTLY Match Footer */
.site-header .site-logo,
.site-header .custom-logo-link,
.site-header .ez-logo {
	background: transparent !important;
	background-color: transparent !important;
	padding: 0 !important;
	border: none !important;
	margin: 0;
	display: inline-block;
	line-height: 0;
}

.site-header .site-logo img,
.site-header .custom-logo-link img,
.site-header .ez-logo img,
.site-header .ez-logo .logo-icon img {
	max-height: 45px !important;
	width: auto;
	height: auto;
	background: transparent !important;
	background-color: transparent !important;
	padding: 0 !important;
	display: block;
	border: none !important;
	margin: 0;
}

.site-title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
}

.site-title a {
	color: var(--ez-text-inverse);
	text-decoration: none;
	transition: var(--ez-transition);
}

.site-title a:hover {
	opacity: 0.8;
}

/* Main Navigation */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	gap: 20px;
}

/* Header Login Styles - Icons Only */
.header-login {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 20px;
}

.header-login .btn-login-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: var(--ez-gold-primary);
	font-size: 1.3rem;
	transition: all 0.3s ease;
	text-decoration: none;
	flex-shrink: 0;
}

.header-login .btn-login-icon:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--ez-gold-primary);
	color: var(--ez-gold-light);
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
}

.header-login .btn-icon {
	font-size: 1.3rem;
	line-height: 1;
}

.header-login .btn-text {
	display: none; /* Hide text, show only icons */
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	color: var(--ez-white);
	cursor: pointer;
	padding: 8px 12px;
	font-size: 1rem;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.menu-toggle:hover {
	opacity: 0.8;
}

.menu-toggle-icon {
	display: none;
}

.primary-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 35px;
}

.primary-menu-list li {
	margin: 0;
	position: relative;
}

.primary-menu-list a {
	color: var(--ez-white);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	transition: color 0.3s ease;
	padding: 5px 0;
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Dropdown arrow indicator */
.primary-menu-list .menu-item-has-children > a::after {
	content: '▼';
	font-size: 0.65em;
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.primary-menu-list .menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

.primary-menu-list a:hover,
.primary-menu-list a:focus,
.primary-menu-list a:focus-visible {
	color: var(--ez-accent);
	outline: 2px solid var(--ez-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.primary-menu-list .current-menu-item > a,
.primary-menu-list .current_page_item > a {
	color: var(--ez-accent);
}

.primary-menu-list .current-menu-item > a::after,
.primary-menu-list .current_page_item > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--ez-accent);
}

/* Submenu Dropdown Styles */
.primary-menu-list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #1a252f;
	background-color: rgba(26, 37, 47, 0.98);
	min-width: 220px;
	padding: 15px 0;
	margin-top: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
	list-style: none;
	border-radius: 5px;
	z-index: 999;
	flex-direction: column;
	gap: 0;
}

.primary-menu-list li:hover > .sub-menu,
.primary-menu-list li.focus > .sub-menu,
.primary-menu-list .menu-item-has-children:hover > .sub-menu,
.primary-menu-list .menu-item-has-children.focus > .sub-menu {
	display: block;
}

.primary-menu-list .sub-menu li {
	width: 100%;
	margin: 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.primary-menu-list .sub-menu li:last-child {
	border-bottom: none;
}

.primary-menu-list .sub-menu a {
	padding: 12px 25px;
	display: block;
	color: var(--ez-white);
	font-size: 0.95rem;
	white-space: nowrap;
}

.primary-menu-list .sub-menu a::after {
	display: none; /* Hide dropdown arrow in submenu items */
}

.primary-menu-list .sub-menu a:hover,
.primary-menu-list .sub-menu a:focus {
	background-color: rgba(255,255,255,0.1);
	color: var(--ez-gold-primary);
	padding-left: 30px;
}

/* Nested submenus (second level) */
.primary-menu-list .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-top: 0;
	margin-left: 5px;
}

/* Page Container */
.site {
	background-color: var(--ez-white);
}

/* Founder (Bootstrap template) - match theme */
.page-founder .card {
	border-radius: 16px;
}

.page-founder .card-body {
	font-family: 'Open Sans', sans-serif;
}

.page-founder .border-top,
.page-founder .border-bottom {
	border-color: rgba(0, 31, 63, 0.12) !important;
}

.page-founder h1,
.page-founder h2,
.page-founder h3 {
	color: #001F3F;
}

.page-founder .text-muted {
	color: rgba(0, 31, 63, 0.55) !important;
}

.page-founder ul li span[aria-hidden="true"] {
	color: var(--ez-gold-primary, #FFC72C);
	font-weight: 700;
}

#main-content {
	min-height: 60vh;
}

/* Single Scroll Homepage Styles */
.homepage-single-scroll {
	scroll-behavior: smooth;
}

.homepage-single-scroll section {
	padding: var(--ez-section-padding) 0;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

/* Hero Section - Elite Performance */
.hero-section {
	position: relative;
	background: linear-gradient(135deg, var(--ez-primary) 0%, #003366 100%);
	background-image: 
		radial-gradient(circle at 20% 50%, var(--ez-accent-muted) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(var(--ez-accent-rgb), 0.05) 0%, transparent 50%),
		linear-gradient(135deg, var(--ez-primary) 0%, #003366 100%);
	color: var(--ez-text-inverse);
	text-align: center;
	padding: var(--ez-section-padding) var(--ez-space-lg);
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 30px 30px;
	background-position: 0 0;
	opacity: 0.3;
	z-index: 1;
	pointer-events: none;
}

.homepage-hero {
	position: relative;
	background: linear-gradient(135deg, #001F3F 0%, #003366 100%);
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(255, 199, 44, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 199, 44, 0.05) 0%, transparent 50%),
		linear-gradient(135deg, #001F3F 0%, #003366 100%);
	color: var(--ez-white);
	text-align: center;
	padding: 150px 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.homepage-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 30px 30px;
	background-position: 0 0;
	opacity: 0.3;
	z-index: 1;
	pointer-events: none;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.2;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-title {
	font-family: var(--ez-font-display);
	font-size: var(--ez-text-hero);
	font-weight: 800;
	margin-bottom: var(--ez-space-lg);
	color: var(--ez-text-inverse);
	letter-spacing: var(--ez-tracking-tight);
	text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-subtitle {
	font-size: var(--ez-text-xl);
	font-weight: 400;
	margin-bottom: var(--ez-space-2xl);
	color: var(--ez-text-inverse);
	opacity: 0.95;
}

.hero-cta {
	display: flex;
	gap: var(--ez-space-lg);
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: var(--ez-space-xl);
	margin-bottom: var(--ez-space-2xl);
}

/* Hero Feedback Section */
.hero-feedback {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.feedback-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.feedback-item {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	border-radius: var(--ez-card-radius-lg);
	padding: var(--ez-space-xl);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: var(--ez-transition);
}

.feedback-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--ez-card-shadow-hover);
	background: rgba(255, 255, 255, 0.12);
}

.feedback-quote {
	margin: 0 0 var(--ez-space-lg) 0;
	font-size: var(--ez-text-lg);
	line-height: var(--ez-leading-relaxed);
	color: var(--ez-text-inverse);
	font-style: italic;
	position: relative;
	padding-left: var(--ez-space-lg);
}

.feedback-quote::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -10px;
	font-size: var(--ez-text-3xl);
	color: var(--ez-accent);
	opacity: 0.7;
	font-family: Georgia, serif;
	line-height: 1;
}

.feedback-author {
	font-size: var(--ez-text-base);
	font-weight: 600;
	color: var(--ez-accent);
	text-align: right;
	margin-top: var(--ez-space-md);
}

/* Buttons - CTA Hierarchy (Elite Performance) */
.btn {
	display: inline-block;
	padding: var(--ez-btn-padding-y) var(--ez-btn-padding-x);
	border-radius: var(--ez-btn-radius);
	text-decoration: none;
	font-family: var(--ez-font-display);
	font-weight: 600;
	font-size: var(--ez-text-base);
	letter-spacing: var(--ez-tracking-wide);
	transition: var(--ez-transition);
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
}

/* Primary CTA - Gold pill, navy text (WCAG AA) */
.btn-primary {
	background: var(--ez-accent);
	color: var(--ez-text-on-accent);
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(var(--ez-accent-rgb), 0.35);
	border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
	background: var(--ez-accent-hover);
	color: var(--ez-text-on-accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(var(--ez-accent-rgb), 0.35);
	outline: 2px solid var(--ez-primary);
	outline-offset: 2px;
}

/* Secondary CTA - Ghost/outline */
.btn-secondary {
	background-color: transparent;
	color: var(--ez-text-inverse);
	border: 2px solid var(--ez-text-inverse);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:focus-visible {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--ez-text-inverse);
	color: var(--ez-text-inverse);
	outline: 2px solid var(--ez-text-inverse);
	outline-offset: 2px;
}

/* Hero secondary = same as primary for visual balance */
.hero-cta .btn-secondary,
.hero-section .btn-secondary {
	background: var(--ez-accent);
	color: var(--ez-text-on-accent);
	border: none;
	padding: var(--ez-btn-padding-y) var(--ez-btn-padding-x);
	border-radius: var(--ez-btn-radius);
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(var(--ez-accent-rgb), 0.35);
}

.hero-cta .btn-secondary:hover,
.hero-section .btn-secondary:hover {
	background: var(--ez-accent-hover);
	color: var(--ez-text-on-accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(var(--ez-accent-rgb), 0.35);
	border: none;
}

/* Hero Login/Portal Buttons */
.btn-login-hero,
.btn-portal-hero {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	border-radius: 9999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.btn-login-hero:hover,
.btn-portal-hero:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.btn-login-hero .login-icon,
.btn-portal-hero .portal-icon {
	font-size: 1.3rem;
	line-height: 1;
}

.btn-large {
	padding: 16px 40px;
	font-size: 1.1rem;
}

/* Section Headers - Elite Performance */
.section-header {
	text-align: center;
	margin-bottom: var(--ez-space-3xl);
}

.section-title {
	font-family: var(--ez-font-display);
	font-size: var(--ez-text-4xl);
	font-weight: 700;
	margin-bottom: var(--ez-space-md);
	color: var(--ez-primary);
	line-height: var(--ez-leading-tight);
	letter-spacing: var(--ez-tracking-tight);
}

.page-about .section-title,
.homepage-about .section-title,
.founder-section .section-title {
	font-size: var(--ez-text-4xl);
	font-weight: 700;
	color: var(--ez-primary);
	margin-bottom: var(--ez-space-lg);
}

.section-subtitle {
	font-size: var(--ez-text-lg);
	color: var(--ez-text-muted);
	font-weight: 400;
	line-height: var(--ez-leading-relaxed);
	max-width: 42ch;
	margin-left: auto;
	margin-right: auto;
}

/* About Page Styling - Consistent with Theme */
.page-about {
	padding: 80px 0;
}

.page-about .page-header {
	text-align: center;
	margin-bottom: 60px;
}

.page-about .page-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #001F3F;
	margin-bottom: 20px;
}

.page-about .about-mission {
	margin-bottom: 80px;
	padding: 40px;
	background: var(--ez-white);
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about .about-mission h2 {
	margin-bottom: 30px;
}

.page-about .about-mission p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--ez-gray-dark);
	margin-bottom: 20px;
}

/* Founder Section Styles */
.founder-section {
	padding: var(--ez-section-padding) 0 !important;
	margin: var(--ez-space-3xl) 0 !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: 100% !important;
	position: relative !important;
	background: #ffffff !important;
	min-height: 500px !important;
}

/* Ensure founder section is never hidden */
#founder.founder-section,
section#founder,
.founder-section#founder {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	height: auto !important;
	overflow: visible !important;
}

.founder-header {
	text-align: center;
	margin-bottom: 50px;
}

.founder-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.founder-info {
	background: var(--ez-white);
	border-radius: 15px;
	padding: 50px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.founder-name {
	font-size: 2.5rem;
	font-weight: 700;
	color: #001F3F;
	margin: 0 0 15px;
}

.founder-title,
.founder-location,
.founder-experience {
	font-size: 1.1rem;
	color: var(--ez-gray-medium);
	margin: 10px 0;
}

.founder-method {
	margin: var(--ez-space-2xl) 0;
	padding: var(--ez-space-xl);
	background: var(--ez-surface-alt);
	border-radius: var(--ez-card-radius);
	border-left: 4px solid var(--ez-primary);
}

.founder-method h4 {
	font-family: var(--ez-font-display);
	font-size: var(--ez-text-xl);
	color: var(--ez-primary);
	margin: 0 0 var(--ez-space-md);
}

.founder-method-list {
	margin: 20px 0;
	padding-left: 30px;
}

.founder-method-list li {
	margin: 15px 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--ez-gray-dark);
}

.founder-bio {
	margin: 40px 0;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--ez-gray-dark);
}

.founder-bio p {
	margin: 20px 0;
}

.founder-certifications,
.founder-locations {
	margin: 40px 0;
	padding: 30px;
	background: #F8FAFC;
	border-radius: 10px;
}

.founder-certifications h4,
.founder-locations h4 {
	font-family: var(--ez-font-display);
	font-size: var(--ez-text-xl);
	color: var(--ez-primary);
	margin: 0 0 var(--ez-space-lg);
}

.certifications-list,
.locations-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.certifications-list li,
.locations-list li {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--ez-gray-dark);
	border-bottom: 1px solid rgba(11, 31, 58, 0.12);
}

.certifications-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #001F3F;
	font-weight: bold;
	font-size: 1.2rem;
}

.locations-list li:last-child {
	border-bottom: none;
}

.locations-list li strong {
	color: #001F3F;
	font-size: 1.1rem;
}

.locations-list li em {
	color: var(--ez-gray-medium);
	font-size: 0.95rem;
}

.founder-cta {
	margin-top: 50px;
	text-align: center;
}

.founder-cta p {
	margin: 15px 0;
}

.founder-cta .btn {
	margin: 0 10px;
}

/* Homepage Founder (single-scroll) */
.homepage-founder {
	background: var(--ez-white);
	padding: 100px 0;
}

.homepage-founder .founder-content {
	max-width: 1400px;
	margin: 0 auto;
}

.homepage-founder .founder-name {
	font-size: 2rem;
	margin: 0 0 18px;
	color: #001F3F;
}

.homepage-founder .founder-about p {
	color: rgba(0, 31, 63, 0.85);
	font-size: 1.05rem;
	line-height: 1.85;
	margin: 0 0 16px;
}

/* Horizontal layout: About (left) + Experience (right) */
.homepage-founder .founder-layout {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 28px;
	align-items: start;
}

.founder-experience {
	margin-top: 0;
	background: var(--ez-white);
	border-radius: 16px;
	border: 1px solid rgba(0, 31, 63, 0.08);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 34px;
}

.founder-eyebrow {
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	font-weight: 700;
	color: rgba(0, 31, 63, 0.55);
	margin: 0 0 10px;
}

.founder-experience-title {
	font-size: 2.1rem;
	font-weight: 800;
	color: #001F3F;
	margin: 0 0 20px;
}

.founder-experience-rows {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.founder-experience-row {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 22px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 31, 63, 0.10);
}

.founder-experience-row:first-child {
	padding-top: 0;
	border-top: none;
}

.founder-experience-left {
	font-size: 1.6rem;
	font-weight: 800;
	color: #001F3F;
}

.founder-experience-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.founder-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.founder-checklist li {
	position: relative;
	padding-left: 26px;
	margin: 10px 0;
	color: rgba(0, 31, 63, 0.9);
	font-weight: 600;
}

.founder-checklist li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--ez-accent);
	font-weight: 900;
}

@media (max-width: 900px) {
	.homepage-founder .founder-layout {
		grid-template-columns: 1fr;
	}
	.founder-experience-row {
		grid-template-columns: 1fr;
	}
	.founder-experience-right {
		grid-template-columns: 1fr;
	}
	.founder-experience-title {
		font-size: 1.8rem;
	}
	.founder-experience-left {
		font-size: 1.35rem;
	}
}

/* Programs Grid - Card Styling */
.programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--ez-space-xl);
}

.program-card, .ez-program-card {
	background: var(--ez-surface);
	border-radius: var(--ez-card-radius-lg);
	overflow: hidden;
	box-shadow: var(--ez-card-shadow);
	border: var(--ez-card-border);
	transition: var(--ez-transition);
	padding: var(--ez-space-2xl) var(--ez-space-xl);
	text-align: center;
}

.program-card:hover, .ez-program-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ez-card-shadow-hover);
	border-color: var(--ez-accent);
}

.program-icon {
	font-size: 4rem;
	margin-bottom: 20px;
	display: block;
}

.program-title {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #001F3F;
}

.program-title a {
	color: #001F3F;
	text-decoration: none;
	transition: color 0.3s ease;
}

.program-title a:hover,
.program-title a:focus {
	color: var(--ez-gold-primary);
	outline: 1px solid var(--ez-gold-primary);
	outline-offset: 2px;
}

.program-description {
	font-size: 1rem;
	color: var(--ez-gray-medium);
	margin-bottom: 20px;
	line-height: 1.7;
}

.program-link {
	color: #001F3F;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.program-link:hover,
.program-link:focus {
	color: var(--ez-gold-primary);
	outline: 1px solid var(--ez-gold-primary);
	outline-offset: 2px;
}

/* Standardize all program section buttons */
.program-card .btn,
.ez-program-card .btn,
.programs-section .btn {
	background: var(--ez-gold-primary, #FFC72C);
	color: var(--ez-navy-primary, #0B1F3A);
	padding: 12px 30px;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 1rem;
	border: 2px solid var(--ez-gold-dark, #E6B325);
	box-shadow: 0 4px 14px rgba(255, 199, 44, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	text-decoration: none;
	display: inline-block;
}

.program-card .btn:hover,
.ez-program-card .btn:hover,
.programs-section .btn:hover {
	background: var(--ez-gold-dark, #E6B325);
	color: var(--ez-navy-primary, #0B1F3A);
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(255, 199, 44, 0.35);
}

/* Results/Transformations Section */
.homepage-results, .ez-transformations {
	background: linear-gradient(135deg, var(--ez-gray-light) 0%, #e8f5e9 100%);
	padding: 100px 0;
}

.transformations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.transformation-card {
	background: var(--ez-white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.transformation-card:hover {
	transform: translateY(-5px);
}

.transformation-content {
	padding: 30px;
}

.transformation-progress {
	margin: 20px 0;
	font-weight: 600;
	color: #001F3F;
}

.score-before {
	color: var(--ez-gray-medium);
}

.score-arrow {
	margin: 0 10px;
	color: var(--ez-blue-primary);
}

.score-after {
	color: #001F3F;
}

/* Stories/Testimonials Carousel */
.homepage-stories, .ez-stories-carousel {
	padding: 100px 0;
}

.testimonials-carousel-wrapper {
	position: relative;
	margin-bottom: 60px;
}

.testimonials-carousel {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: 30px;
	padding: 20px 0;
}

.testimonials-carousel::-webkit-scrollbar {
	display: none;
}

.testimonial-slide {
	min-width: 350px;
	background: var(--ez-white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--ez-navy);
	color: var(--ez-white);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-prev {
	left: -25px;
}

.carousel-next {
	right: -25px;
}

.carousel-nav:hover {
	background: var(--ez-blue-primary);
	transform: translateY(-50%) scale(1.1);
}

/* Testimonial Submission Form */
.testimonial-submission {
	background: var(--ez-gray-light);
	padding: 40px;
	border-radius: 15px;
	margin-top: 40px;
}

.testimonial-submission h3 {
	color: #001F3F;
	margin-bottom: 25px;
}

.ez-testimonial-form input,
.ez-testimonial-form textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	margin-bottom: 15px;
	transition: border-color 0.3s ease;
}

.ez-testimonial-form input:focus,
.ez-testimonial-form textarea:focus {
	outline: 2px solid #001F3F;
	outline-offset: 2px;
	border-color: #001F3F;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

/* Why EZ Section */
.ez-why-section {
	background: var(--ez-white);
	padding: 100px 0;
}

.why-ez-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 50px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.why-ez-item {
	text-align: center;
	padding: 30px 20px;
	background: var(--ez-gray-light);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.why-ez-item:hover {
	background: linear-gradient(135deg, var(--ez-green-light) 0%, var(--ez-blue-light) 100%);
	transform: translateY(-5px);
	color: var(--ez-white);
}

.why-ez-item:hover .why-ez-title,
.why-ez-item:hover .why-ez-description {
	color: var(--ez-white);
}

.why-ez-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.why-ez-title {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #001F3F;
	transition: color 0.3s ease;
}

.why-ez-description {
	font-size: 0.95rem;
	color: var(--ez-gray-medium);
	transition: color 0.3s ease;
}

.why-ez-cta {
	text-align: center;
	margin-top: 40px;
}

/* About Section */
.ez-about-section {
	background: linear-gradient(135deg, #F8FAFC 0%, #e8f5e9 100%);
	padding: 100px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text .section-title {
	text-align: left;
}

/* Video Testimonials */
.ez-testimonials-video {
	background: var(--ez-white);
	padding: 100px 0;
}

.testimonials-video-gallery {
	margin-top: 40px;
}

.video-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.video-testimonial-card {
	background: var(--ez-white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.video-testimonial-card:hover {
	transform: translateY(-5px);
}

.video-placeholder {
	background: linear-gradient(135deg, var(--ez-green-primary) 0%, var(--ez-blue-primary) 100%);
	height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--ez-white);
	position: relative;
}

.play-icon {
	font-size: 4rem;
	margin-bottom: 10px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.play-icon:hover {
	transform: scale(1.2);
}

.video-testimonial-info {
	padding: 25px;
}

.video-testimonial-info h4 {
	color: #001F3F;
	margin-bottom: 10px;
}

/* SimplyBook.me Modal */
.ezgolf-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.ezgolf-modal-content {
	background-color: var(--ez-white);
	margin: 5% auto;
	padding: 0;
	border-radius: 15px;
	width: 90%;
	max-width: 900px;
	position: relative;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.ezgolf-modal-close {
	color: var(--ez-gray-medium);
	float: right;
	font-size: 32px;
	font-weight: bold;
	position: absolute;
	right: 20px;
	top: 15px;
	z-index: 10000;
	cursor: pointer;
	transition: color 0.3s ease;
}

.ezgolf-modal-close:hover,
.ezgolf-modal-close:focus {
	color: #001F3F;
	outline: 2px solid #001F3F;
	outline-offset: 2px;
}

#ezgolf-simplybook-widget {
	padding: 40px;
	min-height: 600px;
}

#ezgolf-simplybook-widget iframe {
	width: 100%;
	height: 700px;
	border: none;
	border-radius: 10px;
}

/* Footer Styles - Elite Performance */
#colophon.site-footer,
.site-footer,
footer.site-footer {
	background-color: var(--ez-primary) !important;
	background: var(--ez-primary) !important;
	color: var(--ez-text-inverse) !important;
	padding: var(--ez-space-sm) 0 !important;
	margin-top: var(--ez-space-2xl) !important;
	min-height: auto !important;
	height: auto !important;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.footer-logo {
	margin-bottom: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo,
.footer-logo a,
.footer-logo .custom-logo-link {
	background: transparent !important;
	background-color: transparent !important;
	padding: 0;
	border: none;
	display: inline-block;
	line-height: 0;
}

.footer-logo img,
.footer-logo .custom-logo-link img {
	max-height: 45px !important;
	width: auto;
	height: auto;
	background: transparent !important;
	background-color: transparent !important;
	padding: 0;
	display: block;
	border: none;
}

.footer-nav {
	margin: 0;
	padding: 0;
	display: none; /* Hide nav in footer to match header compactness */
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
}

.footer-menu a {
	color: var(--ez-white);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-menu a:hover {
	color: var(--ez-gold-primary);
}

.footer-copyright {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.7rem;
	line-height: 1;
}

.footer-copyright p {
	margin: 0;
	padding: 0;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Subpage Styles */
.page-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 60px 0 40px;
}

.page-title {
	font-size: 3rem;
	color: #001F3F;
	margin-bottom: 20px;
}

.page-subtitle {
	font-size: 1.3rem;
	color: var(--ez-gray-medium);
}

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

/* Contact Page */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 40px;
}

.ez-contact-form input,
.ez-contact-form textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 15px;
	transition: border-color 0.3s ease;
}

.ez-contact-form input:focus,
.ez-contact-form textarea:focus {
	outline: 2px solid #001F3F;
	outline-offset: 2px;
	border-color: #001F3F;
}

.map-placeholder {
	background: var(--ez-gray-light);
	border-radius: 15px;
	padding: 60px 40px;
	text-align: center;
	color: var(--ez-gray-medium);
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Lessons Page */
.lessons-section {
	margin: 60px 0;
	padding: 40px;
	background: var(--ez-gray-light);
	border-radius: 15px;
}

.lessons-section h2 {
	color: #001F3F;
	margin-bottom: 20px;
}

/* Gallery Page */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

/* Blog Page */
.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

/* Success/Error Messages */
.success-message,
.error-message {
	padding: 15px;
	border-radius: 8px;
	margin-top: 20px;
}

.success-message {
	background: #e8f5e9;
	color: #001F3F;
	border: 2px solid var(--ez-gold-primary);
}

.error-message {
	background: #ffebee;
	color: #c62828;
	border: 2px solid #ef5350;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.about-content {
		grid-template-columns: 1fr;
	}
	
	.programs-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	/* Mobile Header */
	.header-container {
		padding: 0 20px;
		flex-wrap: wrap;
	}
	
	.site-title {
		font-size: 1.5rem;
	}
	
	.menu-toggle {
		display: block;
	}
	
	.primary-menu-list {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--ez-gray-dark);
		flex-direction: column;
		padding: 20px 0;
		gap: 0;
		box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	}
	
	.primary-menu-list.active {
		display: flex;
	}
	
	.primary-menu-list li {
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	
	.primary-menu-list a {
		display: block;
		padding: 15px 30px;
	}
	
	.primary-menu-list a::after {
		float: right;
		margin-left: auto;
	}
	
	/* Mobile submenu */
	.primary-menu-list .sub-menu {
		position: static;
		display: none;
		background-color: rgba(0,0,0,0.2);
		margin-top: 0;
		padding: 0;
		box-shadow: none;
	}
	
	.primary-menu-list li.submenu-open > .sub-menu {
		display: block;
	}
	
	.primary-menu-list .sub-menu a {
		padding-left: 50px;
		font-size: 0.9rem;
	}
	
	/* Hero Section */
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
	
	.hero-cta {
		flex-direction: column;
		align-items: stretch;
	}
	
	.btn {
		width: 100%;
		max-width: 300px;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.programs-grid,
	.testimonials-grid,
	.video-testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.carousel-nav {
		display: none;
	}
	
	.testimonial-slide {
		min-width: 100%;
	}
	
	.why-ez-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	@media (max-width: 480px) {
	.why-ez-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	@media (max-width: 480px) {
		.why-ez-list {
			grid-template-columns: 1fr;
		}
	}
	}
	
	.homepage-single-scroll section {
		padding: 60px 0;
		min-height: auto;
	}
	
	.ezgolf-modal-content {
		width: 95%;
		margin: 10% auto;
	}
	
	.contact-content {
		grid-template-columns: 1fr;
	}
	
	.page-title {
		font-size: 2.25rem;
	}
	
	.lessons-section {
		padding: 30px 20px;
	}
	
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	.blog-posts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.section-title {
		font-size: 1.75rem;
	}
	
	.container {
		padding: 0 20px;
	}
}

/* =========================================
   JOURNAL (Blog) — page-journal template
   ========================================= */

.journal-hero {
	background: var(--ez-navy-primary, #0B1F3A);
	color: #fff;
	padding: 100px 0 60px;
	text-align: center;
}

.journal-hero__title {
	font-family: var(--ez-font-display, 'DM Sans', sans-serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
	color: #fff;
}

.journal-hero__subtitle {
	max-width: 640px;
	margin: 0 auto;
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.6;
	color: rgba(255,255,255,.82);
}

.journal-featured {
	padding: 48px 0 24px;
}

.journal-featured__link {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 28px;
	align-items: center;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 199, 44, 0.25);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.journal-featured__link:hover {
	border-color: rgba(255, 199, 44, 0.55);
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

.journal-featured__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.journal-featured__body {
	padding: 28px 32px 28px 0;
}

.journal-featured__title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ez-navy-primary, #0B1F3A);
	margin: 8px 0 10px;
}

.journal-featured__excerpt {
	color: rgba(11,31,58,.68);
	font-size: 0.95rem;
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 768px) {
	.journal-featured__link {
		grid-template-columns: 1fr;
	}
	.journal-featured__body {
		padding: 20px 24px 24px;
	}
}

.journal-grid-section {
	padding: 24px 0 80px;
}

.journal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.journal-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 199, 44, 0.25);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.journal-card:hover {
	border-color: rgba(255, 199, 44, 0.55);
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

.journal-card__link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.journal-card__img {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.journal-card__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.journal-card__body {
	padding: 20px 22px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.journal-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ez-navy-primary, #0B1F3A);
	margin: 6px 0 8px;
	line-height: 1.35;
}

.journal-card__excerpt {
	color: rgba(11,31,58,.65);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0 0 12px;
	flex: 1;
}

.journal-card__more {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--ez-gold-primary, #FFC72C);
	letter-spacing: 0.02em;
}

.journal-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ez-navy-primary, #0B1F3A);
	background: rgba(14,42,71,.06);
	border-radius: 9999px;
	padding: 4px 10px;
}

.journal-badge-video {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #0B1F3A;
	background: var(--ez-gold-primary, #FFC72C);
	border-radius: 9999px;
	padding: 4px 10px;
	margin-left: 6px;
}

.journal-card__img .journal-badge-video {
	position: absolute;
	top: 10px;
	right: 10px;
	margin-left: 0;
}

.journal-pagination {
	text-align: center;
	margin-top: 40px;
}

.journal-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	margin: 0 3px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--ez-navy-primary, #0B1F3A);
	text-decoration: none;
	transition: background 150ms ease;
}

.journal-pagination .page-numbers:hover {
	background: rgba(14,42,71,.06);
}

.journal-pagination .page-numbers.current {
	background: var(--ez-navy-primary, #0B1F3A);
	color: #fff;
}

@media (max-width: 1023px) {
	.journal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 699px) {
	.journal-grid { grid-template-columns: 1fr; }
	.journal-hero { padding: 80px 0 44px; }
}

/* =========================================
   SINGLE POST — Premium Editorial Layout
   ========================================= */

.article-page {
    background: var(--ez-surface, #fff);
}

.article-container {
    max-width: 820px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* --- Hero / Header --- */

.article-hero {
    background: var(--ez-primary, #0E2A47);
    padding: 48px 0 52px;
    border-bottom: 3px solid var(--ez-accent, #FFC72C);
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 13px;
    margin-bottom: 18px;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s ease;
}

.article-breadcrumb a:hover {
    color: var(--ez-accent, #FFC72C);
}

.article-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.article-breadcrumb__current {
    color: rgba(255, 255, 255, 0.85);
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ez-text-on-accent, #001F3F);
    background: var(--ez-accent, #FFC72C);
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.article-title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    line-height: 1.18;
    color: rgba(255, 255, 255, 0.97);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.article-meta__sep {
    font-size: 18px;
    line-height: 1;
}

/* --- Back link --- */

.article-back {
    display: inline-block;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s ease;
}

.article-back:hover {
    color: var(--ez-accent, #FFC72C);
}

/* --- Featured image --- */

.article-featured {
    margin-top: 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.10);
}

.article-featured img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Video embed --- */

.article-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.10);
    margin: 36px 0 0;
}

.article-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Article body & typography --- */

.article-body {
    padding: 56px 0 0;
}

.article-content {
    font-family: var(--ez-font-body, 'Inter', sans-serif);
    font-size: 17px;
    line-height: 1.85;
    color: var(--ez-text, #0D1B2A);
}

.article-content > p:first-child::first-letter {
    float: left;
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 3.2em;
    font-weight: 900;
    line-height: 0.85;
    margin: 0.05em 0.12em 0 0;
    color: var(--ez-primary, #0E2A47);
}

.article-content h2 {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--ez-primary, #0E2A47);
    margin: 48px 0 16px;
    padding-top: 12px;
    border-top: 1px solid var(--ez-border, rgba(14, 42, 71, 0.08));
}

.article-content h3 {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ez-primary, #0E2A47);
    margin: 36px 0 12px;
}

.article-content p {
    margin: 0 0 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 24px 24px;
    padding: 0;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.75;
}

.article-content a {
    color: var(--ez-accent-hover, #E6B325);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.article-content a:hover {
    color: var(--ez-accent, #FFC72C);
}

.article-content blockquote {
    margin: 32px 0;
    padding: 20px 24px 20px 28px;
    background: rgba(14, 42, 71, 0.03);
    border-left: 4px solid var(--ez-accent, #FFC72C);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ez-text-muted, #4A5568);
}

.article-content blockquote p:last-child {
    margin-bottom: 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.article-content table th,
.article-content table td {
    padding: 12px 16px;
    border: 1px solid var(--ez-border-strong, rgba(14, 42, 71, 0.15));
    text-align: left;
}

.article-content table th {
    background: var(--ez-primary, #0E2A47);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-content table tr:nth-child(even) {
    background: rgba(14, 42, 71, 0.025);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

/* --- Tags --- */

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 28px 0 0;
    margin-top: 40px;
    border-top: 1px solid var(--ez-border, rgba(14, 42, 71, 0.08));
    font-size: 14px;
}

.article-tags__label {
    font-weight: 700;
    color: var(--ez-primary, #0E2A47);
    margin-right: 4px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ez-primary, #0E2A47);
    background: rgba(14, 42, 71, 0.05);
    border: 1px solid rgba(14, 42, 71, 0.10);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.article-tags a:hover {
    background: rgba(14, 42, 71, 0.10);
    border-color: rgba(14, 42, 71, 0.20);
}

/* =========================================
   JOURNAL — Category filter pills
   ========================================= */

.journal-filters {
	padding: 20px 0 0;
}

.journal-filters__pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.journal-filter-pill {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	text-decoration: none;
	color: var(--ez-navy-primary, #0B1F3A);
	background: rgba(14,42,71,.05);
	border: 1px solid rgba(14,42,71,.10);
	transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.journal-filter-pill:hover {
	background: rgba(14,42,71,.10);
	border-color: rgba(14,42,71,.18);
	color: var(--ez-navy-primary, #0B1F3A);
}

.journal-filter-pill--active {
	background: var(--ez-navy-primary, #0B1F3A);
	color: #fff;
	border-color: var(--ez-navy-primary, #0B1F3A);
}

.journal-filter-pill--active:hover {
	background: var(--ez-navy-primary, #0B1F3A);
	color: #fff;
}

/* =========================================
   SINGLE POST — Author box
   ========================================= */

.article-author {
    padding: 48px 0 0;
}

.article-author__card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 32px;
    background: var(--ez-surface-alt, #F5F2EA);
    border-radius: 16px;
    border: 1px solid rgba(255, 199, 44, 0.25);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
}

.article-author__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--ez-accent, #FFC72C);
}

.article-author__role {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ez-accent-hover, #E6B325);
    margin-bottom: 2px;
}

.article-author__name {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ez-primary, #0E2A47);
    text-decoration: none;
    margin-bottom: 6px;
}

.article-author__name:hover {
    color: var(--ez-accent, #FFC72C);
}

.article-author__bio {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--ez-text-muted, #4A5568);
    margin: 0;
}

@media (max-width: 600px) {
    .article-author__card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* =========================================
   SINGLE POST — Related articles
   ========================================= */

.article-related {
    padding: 56px 0 0;
}

.article-related__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ez-primary, #0E2A47);
    margin: 0 0 24px;
    text-align: center;
}

.article-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1023px) {
    .article-related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 699px) {
    .article-related__grid { grid-template-columns: 1fr; }
}

/* =========================================
   SINGLE POST — Bottom CTA
   ========================================= */

.article-cta {
    padding: 64px 0 80px;
    background: var(--ez-primary, #0E2A47);
    margin-top: 56px;
}

.article-cta__inner {
    text-align: center;
}

.article-cta__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
}

.article-cta__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   SINGLE POST — Responsive refinements
   ========================================= */

@media (max-width: 768px) {
    .article-hero {
        padding: 36px 0 40px;
    }

    .article-title {
        font-size: 26px;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    }

    .article-featured {
        margin-top: 28px;
        border-radius: 10px;
    }

    .article-body {
        padding: 40px 0 0;
    }

    .article-content {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 22px;
        margin-top: 36px;
    }

    .article-content h3 {
        font-size: 18px;
    }

    .article-cta {
        padding: 48px 0 56px;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .article-breadcrumb__current {
        max-width: 200px;
    }

    .article-content > p:first-child::first-letter {
        font-size: 2.8em;
    }
}

/* =========================================
   VIDEO LIBRARY — placeholder thumbnail
   ========================================= */

.journal-card__img-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #0E2A47, #1a3a5c);
	color: rgba(255,255,255,.5);
}

/* =========================================
   RESOURCES HUB
   ========================================= */

.resources-container {
	width: min(1100px, 92vw);
	margin: 0 auto;
}

.resources-text-center { text-align: center; }

.resources-hero {
	background: #ffffff;
	padding: 92px 0 56px;
}

.resources-hero__title {
	font-weight: 900;
	letter-spacing: -0.02em;
	font-size: clamp(34px, 3.4vw, 52px);
	line-height: 1.06;
	margin: 0 0 12px;
	color: #0B1F3A;
}

.resources-hero__subtitle {
	max-width: 760px;
	margin: 0 auto 20px;
	color: rgba(11,31,58,.72);
	line-height: 1.6;
	font-size: 16px;
}

.resources-hero__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.resources-section {
	padding: 54px 0;
}

.resources-section__title {
	font-size: 28px;
	font-weight: 900;
	margin: 0 0 8px;
	color: #0B1F3A;
}

.resources-section__subtitle {
	margin: 0 auto 18px;
	max-width: 720px;
	color: rgba(11,31,58,.72);
	line-height: 1.6;
}

.resources-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.resources-card {
	background: #fff;
	border: 1px solid rgba(255, 199, 44, 0.25);
	border-radius: 16px;
	padding: 22px 22px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.resources-card:hover {
	border-color: rgba(255, 199, 44, 0.55);
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

.resources-card__meta { margin-bottom: 10px; }

.resources-chip {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 9999px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #0B1F3A;
	background: rgba(255,199,44,.18);
	border: 1px solid rgba(255,199,44,.45);
}

.resources-card__title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 900;
	color: #0B1F3A;
}

.resources-card__desc {
	margin: 0 0 14px;
	color: rgba(11,31,58,.74);
	line-height: 1.65;
}

.resources-link {
	font-weight: 900;
	color: #0E2A47;
	text-decoration: none;
}

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

.resources-pills {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.resources-pill {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid rgba(14,42,71,.16);
	text-decoration: none;
	color: rgba(11,31,58,.86);
	font-weight: 800;
	font-size: 13px;
	transition: border-color 150ms ease, background 150ms ease;
}

.resources-pill:hover {
	border-color: rgba(255,199,44,.70);
	background: rgba(255,199,44,.10);
}

.resources-featured-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.resources-featured__label {
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 12px;
	color: rgba(11,31,58,.70);
	margin-bottom: 10px;
}

.resources-featured__card {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 14px;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(14,42,71,.10);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(11,31,58,.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.resources-featured__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 50px rgba(11,31,58,.12);
}

.resources-featured__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.resources-thumb-placeholder {
	width: 100%;
	height: 100%;
	min-height: 120px;
	background: linear-gradient(135deg, #0E2A47, #0B1F3A);
}

.resources-thumb-placeholder--video {
	position: relative;
}

.resources-play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 22px;
	color: rgba(255,255,255,.92);
}

.resources-featured__body {
	padding: 14px 14px 14px 0;
	align-self: center;
}

.resources-featured__title {
	font-weight: 900;
	color: #0B1F3A;
	margin-bottom: 8px;
	font-size: 16px;
}

.resources-featured__excerpt {
	color: rgba(11,31,58,.72);
	line-height: 1.6;
	font-size: 13px;
	margin-bottom: 10px;
}

.resources-featured__cta {
	font-weight: 900;
	color: #0E2A47;
}

.resources-featured__empty {
	color: rgba(11,31,58,.5);
	font-style: italic;
	margin: 0;
}

.resources-bottom-cta {
	background: rgba(14,42,71,.04);
}

.resources-bottom-cta__title {
	font-size: 28px;
	font-weight: 900;
	margin: 0 0 10px;
	color: #0B1F3A;
}

.resources-bottom-cta__subtitle {
	max-width: 720px;
	margin: 0 auto 18px;
	color: rgba(11,31,58,.72);
	line-height: 1.6;
}

@media (max-width: 900px) {
	.resources-grid-2 { grid-template-columns: 1fr; }
	.resources-featured-grid { grid-template-columns: 1fr; }
	.resources-featured__card { grid-template-columns: 1fr; }
	.resources-featured__body { padding: 14px; }
}

/* =========================================
   RESOURCES — NEWSLETTER
   ========================================= */

.resources-newsletter {
	background: rgba(14,42,71,.04);
}

.resources-newsletter__title {
	font-size: 28px;
	font-weight: 900;
	margin: 0 0 10px;
	color: #0B1F3A;
}

.resources-newsletter__subtitle {
	max-width: 720px;
	margin: 0 auto 18px;
	color: rgba(11,31,58,.72);
	line-height: 1.6;
}

.resources-newsletter__embed {
	max-width: 560px;
	margin: 0 auto 14px;
	padding: 18px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(14,42,71,.10);
	box-shadow: 0 18px 44px rgba(11,31,58,.08);
}

.resources-newsletter__embed .klaviyo-form-TpAdFB button,
.resources-newsletter__embed [class*="klaviyo-form"] button {
	background: var(--ez-gold-primary, #FFC72C) !important;
	color: var(--ez-navy-primary, #0B1F3A) !important;
	border: 2px solid var(--ez-gold-dark, #E6B325) !important;
	border-radius: 9999px !important;
	font-weight: 700 !important;
	padding: 12px 28px !important;
	cursor: pointer;
	transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.resources-newsletter__embed [class*="klaviyo-form"] button:hover {
	background: var(--ez-gold-dark, #E6B325) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(255, 199, 44, 0.35);
}

.resources-newsletter__embed [class*="klaviyo-form"] input[type="email"],
.resources-newsletter__embed [class*="klaviyo-form"] input[type="text"] {
	border: 1px solid rgba(14,42,71,.18) !important;
	border-radius: 12px !important;
	padding: 12px 16px !important;
	font-size: 15px !important;
	outline: none !important;
}

.resources-newsletter__embed [class*="klaviyo-form"] input:focus {
	border-color: var(--ez-gold-primary, #FFC72C) !important;
	box-shadow: 0 0 0 3px rgba(255,199,44,.2) !important;
}

.resources-newsletter__fineprint {
	margin: 0;
	font-size: 13px;
	color: rgba(11,31,58,.60);
}

/* =========================================
   LOCAL TRAINING — SEO PILLAR PAGE
   Namespace: local-training-*
   ========================================= */

/* ---- Pillar page layout ---- */

.local-training-page {
    background: var(--ez-surface, #fff);
}

.local-training-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

.local-training-section {
    padding: clamp(56px, 8vw, 80px) 0;
}

.local-training-text-center {
    text-align: center;
}

/* ---- Section titles (matches homepage .hp-section-title) ---- */

.local-training-section__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--ez-primary, #0E2A47);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    text-align: center;
}

.local-training-section__title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--ez-accent, #FFC72C);
    border-radius: 2px;
    margin: 14px auto 0;
}

.local-training-section__subtitle {
    text-align: center;
    color: var(--ez-text-muted, #4A5568);
    margin: 16px auto 32px;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
}

/* ---- Breadcrumb ---- */

.local-training-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 13px;
    margin-bottom: 20px;
}

.local-training-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.15s ease;
}

.local-training-breadcrumb a:hover {
    color: var(--ez-accent, #FFC72C);
}

.local-training-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.local-training-breadcrumb__current {
    color: rgba(255, 255, 255, 0.8);
}

/* ---- 1 · HERO ---- */

.local-training-hero {
    background: var(--ez-primary, #0E2A47);
    padding: clamp(64px, 10vw, 100px) 0 clamp(56px, 8vw, 84px);
    text-align: center;
    color: #fff;
    border-bottom: 3px solid var(--ez-accent, #FFC72C);
}

.local-training-hero__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.97);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.local-training-hero__subtitle {
    max-width: 760px;
    margin: 0 auto 32px;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

.local-training-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.local-training-hero__trust {
    margin: 22px 0 0;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

.local-training-hero .hp-btn--outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.local-training-hero .hp-btn--outline:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
}

/* ---- 2 · WHO WE TRAIN ---- */

.local-training-audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.local-training-audience-card {
    background: var(--ez-surface, #fff);
    border: 1px solid rgba(255, 199, 44, 0.25);
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.local-training-audience-card:hover {
    border-color: rgba(255, 199, 44, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

.local-training-audience-card__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--ez-primary, #0E2A47);
    margin: 0 0 14px;
}

.local-training-audience-card__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.local-training-audience-card__bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ez-text-muted, #4A5568);
    margin-bottom: 8px;
}

.local-training-audience-card__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ez-accent, #FFC72C);
}

.local-training-audience-card__link {
    font-weight: 700;
    font-size: 14px;
    color: var(--ez-accent-hover, #E6B325);
    text-decoration: none;
    transition: color 0.15s ease;
}

.local-training-audience-card__link:hover {
    color: var(--ez-accent, #FFC72C);
}

/* ---- 3 · METHOD ---- */

.local-training-method-bg {
    background: var(--ez-surface-alt, #F5F2EA);
}

.local-training-method__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.local-training-method-step {
    text-align: center;
    padding: 32px 22px;
    background: var(--ez-surface, #fff);
    border: 1px solid rgba(255, 199, 44, 0.25);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.local-training-method-step:hover {
    border-color: rgba(255, 199, 44, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

.local-training-method-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ez-accent, #FFC72C);
    color: var(--ez-text-on-accent, #001F3F);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 16px;
}

.local-training-method-step__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--ez-primary, #0E2A47);
    margin: 0 0 8px;
}

.local-training-method-step__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ez-text-muted, #4A5568);
    margin: 0;
}

.local-training-method__links {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 32px;
}

.local-training-method__links a {
    font-weight: 700;
    font-size: 14px;
    color: var(--ez-accent-hover, #E6B325);
    text-decoration: none;
    transition: color 0.15s ease;
}

.local-training-method__links a:hover {
    color: var(--ez-accent, #FFC72C);
}

/* ---- 4 · LOCAL CREDIBILITY ---- */

.local-training-local {
    background: var(--ez-surface-alt, #F5F2EA);
}

.local-training-map {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 199, 44, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.local-training-map iframe {
    display: block;
    width: 100%;
    height: 380px;
}

/* ---- 5 · RESULTS ---- */

.local-training-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.local-training-result-card {
    background: var(--ez-surface, #fff);
    border: 1px solid rgba(255, 199, 44, 0.25);
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.local-training-result-card:hover {
    border-color: rgba(255, 199, 44, 0.55);
    transform: translateY(-3px);
}

.local-training-result-card__big {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-weight: 900;
    font-size: 20px;
    color: var(--ez-primary, #0E2A47);
    margin-bottom: 6px;
}

.local-training-result-card__small {
    color: var(--ez-text-muted, #4A5568);
    font-size: 14px;
    line-height: 1.55;
}

.local-training-results__link {
    text-align: center;
    margin: 0;
}

.local-training-results__link a {
    font-weight: 700;
    font-size: 14px;
    color: var(--ez-accent-hover, #E6B325);
    text-decoration: none;
    transition: color 0.15s ease;
}

.local-training-results__link a:hover {
    color: var(--ez-accent, #FFC72C);
}

/* ---- 6 · FAQ ---- */

.local-training-faq-bg {
    background: var(--ez-surface-alt, #F5F2EA);
}

.local-training-faq__list {
    max-width: 780px;
    margin: 0 auto;
}

.local-training-faq-item {
    border: 1px solid rgba(255, 199, 44, 0.25);
    border-radius: 16px;
    margin-bottom: 12px;
    background: var(--ez-surface, #fff);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.local-training-faq-item:hover {
    border-color: rgba(255, 199, 44, 0.45);
}

.local-training-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-weight: 700;
    font-size: 16px;
    color: var(--ez-primary, #0E2A47);
    list-style: none;
    transition: background 150ms ease;
}

.local-training-faq-q::-webkit-details-marker {
    display: none;
}

.local-training-faq-q::after {
    content: "+";
    flex-shrink: 0;
    margin-left: 16px;
    font-size: 22px;
    font-weight: 700;
    color: var(--ez-accent-hover, #E6B325);
    transition: transform 250ms ease;
}

.local-training-faq-item[open] > .local-training-faq-q::after {
    transform: rotate(45deg);
}

.local-training-faq-q:hover {
    background: rgba(14, 42, 71, 0.02);
}

.local-training-faq-a {
    padding: 0 24px 20px;
}

.local-training-faq-a p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ez-text-muted, #4A5568);
}

/* ---- 7 · FINAL CTA ---- */

.local-training-cta {
    background: var(--ez-primary, #0E2A47);
    color: #fff;
    border-top: 3px solid var(--ez-accent, #FFC72C);
}

.local-training-cta__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin: 0 0 12px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.local-training-cta__subtitle {
    max-width: 680px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.65;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
    .local-training-audience__grid,
    .local-training-method__grid,
    .local-training-results__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .local-training-method__links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .local-training-hero {
        padding: 56px 0 48px;
    }

    .local-training-section {
        padding: 48px 0;
    }

    .local-training-map iframe {
        height: 260px;
    }

    .local-training-section__title {
        font-size: 1.5rem;
    }

    .local-training-container {
        padding: 0 20px;
    }
}

/* =========================================
   RESOURCES — LOCAL TRAINING CALLOUT
   Namespace: resources-local*
   ========================================= */

.resources-local {
    padding: 32px 0 0;
}

.resources-local__card {
    background: #fff;
    border: 1px solid rgba(255, 199, 44, 0.25);
    border-radius: 16px;
    padding: 32px 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease;
}

.resources-local__card:hover {
    border-color: rgba(255, 199, 44, 0.55);
}

.resources-local__body .resources-chip {
    margin-bottom: 12px;
}

.resources-local__title {
    font-size: 22px;
    font-weight: 900;
    color: #0B1F3A;
    margin: 10px 0 8px;
}

.resources-local__desc {
    color: rgba(11, 31, 58, 0.72);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 640px;
}

.resources-local__body .hp-btn--outline {
    font-size: 0.9rem;
    padding: 10px 24px;
}

@media (max-width: 768px) {
    .resources-local__card {
        padding: 24px 20px;
    }

    .resources-local__title {
        font-size: 20px;
    }
}
