/**
 * EntrataExtra — Side Hustle Template Styles
 * Modern, clean design with soft palette and generous spacing.
 *
 * Palette:
 *   Primary:    #0d9488 (teal-600)
 *   Primary-lt: #ccfbf1 (teal-100)
 *   Accent:     #f59e0b (amber-500)
 *   Surface:    #f8fafc (slate-50)
 *   Card:       #ffffff
 *   Text:       #1e293b (slate-800)
 *   Muted:      #64748b (slate-500)
 *   Border:     #e2e8f0 (slate-200)
 *   Success:    #10b981
 *   Danger:     #ef4444
 */

/* ===== CSS Variables ===== */
:root {
	--ee-primary: #0d9488;
	--ee-primary-light: #ccfbf1;
	--ee-primary-dark: #0f766e;
	--ee-accent: #f59e0b;
	--ee-accent-light: #fef3c7;
	--ee-surface: #f8fafc;
	--ee-card: #ffffff;
	--ee-text: #1e293b;
	--ee-text-secondary: #475569;
	--ee-muted: #64748b;
	--ee-border: #e2e8f0;
	--ee-success: #10b981;
	--ee-danger: #ef4444;
	--ee-radius-sm: 8px;
	--ee-radius-md: 12px;
	--ee-radius-lg: 20px;
	--ee-radius-xl: 28px;
	--ee-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
	--ee-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	--ee-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
	--ee-font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
	--ee-font-heading: 'DM Serif Display', 'Georgia', serif;
	--ee-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Reset & Base ===== */
.ee-single-side-hustle {
	background: var(--ee-surface);
	color: var(--ee-text);
	font-family: var(--ee-font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

.ee-single-side-hustle *,
.ee-single-side-hustle *::before,
.ee-single-side-hustle *::after {
	box-sizing: border-box;
}

/* ===== Container ===== */
.ee-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== Typography ===== */
.ee-single-side-hustle h1,
.ee-single-side-hustle h2,
.ee-single-side-hustle h3,
.ee-single-side-hustle h4 {
	font-family: var(--ee-font-heading);
	color: var(--ee-text);
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.ee-single-side-hustle h2 {
	font-size: 1.65rem;
	margin: 0 0 1rem;
	position: relative;
	padding-bottom: 0.65rem;
}

.ee-single-side-hustle h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--ee-primary);
	border-radius: 3px;
}

.ee-single-side-hustle h3 {
	font-size: 1.2rem;
	margin: 1.5rem 0 0.75rem;
	font-family: var(--ee-font-body);
	font-weight: 700;
	color: var(--ee-text-secondary);
}

.ee-single-side-hustle h4 {
	font-size: 1.05rem;
	margin: 0 0 0.4rem;
	font-family: var(--ee-font-body);
	font-weight: 700;
}

.ee-single-side-hustle a {
	color: var(--ee-primary);
	text-decoration: underline;
	text-decoration-color: rgba(13, 148, 136, 0.35);
	text-underline-offset: 2px;
	transition: color var(--ee-transition), text-decoration-color var(--ee-transition);
}

.ee-single-side-hustle a:hover {
	color: var(--ee-primary-dark);
	text-decoration-color: var(--ee-primary-dark);
}

/* ===== Hero ===== */
.ee-hero {
	padding: 56px 0 32px;
}

.ee-hero__content {
	max-width: 720px;
	margin-bottom: 32px;
}

.ee-kicker {
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ee-primary);
	background: var(--ee-primary-light);
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.entry-title {
	font-family: var(--ee-font-heading);
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.15;
	margin: 0 0 16px;
	color: var(--ee-text);
	letter-spacing: -0.02em;
}

.ee-standfirst p {
	font-size: 1.2rem;
	color: var(--ee-text-secondary);
	line-height: 1.65;
	margin: 0;
}

/* ===== Meta Grid (Hero Cards) ===== */
.ee-hero__meta {
	border: none;
	border-radius: 0;
	padding: 0;
	background: transparent;
}

.ee-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.ee-meta-card {
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-md);
	padding: 20px 24px;
	box-shadow: var(--ee-shadow-sm);
	transition: box-shadow var(--ee-transition), transform var(--ee-transition);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ee-meta-card:hover {
	box-shadow: var(--ee-shadow-md);
	transform: translateY(-2px);
}

.ee-meta-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ee-muted);
	font-weight: 600;
}

.ee-meta-value {
	font-size: 1.15rem;
	color: var(--ee-text);
	font-weight: 700;
}

/* ===== Featured Image ===== */
.ee-featured-image {
	margin: 8px 0 40px;
	border-radius: var(--ee-radius-lg);
	overflow: hidden;
	box-shadow: var(--ee-shadow-lg);
}

.ee-featured-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}

/* ===== Layout (Main + Sidebar) ===== */
.ee-layout {
	display: grid;
	grid-template-columns: minmax(0, 2.4fr) minmax(280px, 1fr);
	gap: 48px;
	align-items: start;
	padding-bottom: 72px;
}

/* ===== Sections ===== */
.ee-section {
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-lg);
	padding: 36px 40px;
	box-shadow: var(--ee-shadow-sm);
}

.ee-main > .ee-section + .ee-section {
	margin-top: 24px;
}

.ee-rich-text {
	color: var(--ee-text-secondary);
	line-height: 1.8;
}

.ee-rich-text p {
	margin: 0 0 1rem;
}

.ee-rich-text p:last-child {
	margin-bottom: 0;
}

/* ===== Highlight (income range) ===== */
.ee-highlight {
	background: linear-gradient(135deg, var(--ee-primary-light), #e0f7f3);
	border-left: 4px solid var(--ee-primary);
	padding: 18px 24px;
	border-radius: 0 var(--ee-radius-md) var(--ee-radius-md) 0;
	font-size: 1.1rem;
	margin: 0 0 1.25rem;
}

.ee-highlight strong {
	color: var(--ee-primary-dark);
	font-size: 1.25rem;
}

/* ===== Checklist ===== */
.ee-checklist {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.ee-checklist li {
	position: relative;
	padding: 10px 0 10px 32px;
	border-bottom: 1px solid var(--ee-border);
}

.ee-checklist li:last-child {
	border-bottom: none;
}

.ee-checklist li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 10px;
	width: 22px;
	height: 22px;
	background: var(--ee-primary-light);
	color: var(--ee-primary);
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ee-checklist--plain li::before {
	content: '✕';
	background: #fee2e2;
	color: var(--ee-danger);
}

/* ===== Card Grid (Tools & Platforms) ===== */
.ee-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 16px;
}

.ee-info-card {
	background: var(--ee-surface);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-md);
	padding: 24px;
	transition: box-shadow var(--ee-transition), transform var(--ee-transition);
}

.ee-info-card:hover {
	box-shadow: var(--ee-shadow-md);
	transform: translateY(-2px);
}

.ee-info-card h4 a {
	font-weight: 700;
	text-decoration: none;
	color: var(--ee-primary);
}

.ee-info-card h4 a:hover {
	color: var(--ee-primary-dark);
	text-decoration: underline;
}

.ee-info-card p a {
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(13, 148, 136, 0.35);
}

.ee-card-type {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ee-muted);
	background: var(--ee-border);
	padding: 3px 10px;
	border-radius: 999px;
	margin: 0 0 8px;
}

.ee-info-card p {
	color: var(--ee-text-secondary);
	font-size: 0.95rem;
	margin: 0 0 8px;
}

.ee-info-card p:last-child {
	margin-bottom: 0;
}

.ee-info-card p a {
	font-weight: 600;
}

/* ===== Two Col (Pros & Cons) ===== */
.ee-two-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.ee-two-col > div {
	background: var(--ee-surface);
	border-radius: var(--ee-radius-md);
	padding: 24px;
	border: 1px solid var(--ee-border);
}

.ee-two-col > div:first-child {
	border-left: 3px solid var(--ee-success);
}

.ee-two-col > div:last-child {
	border-left: 3px solid var(--ee-danger);
}

.ee-two-col h3 {
	margin-top: 0;
}

/* ===== Stack (Mistakes) ===== */
.ee-stack {
	display: grid;
	gap: 16px;
}

.ee-stack .ee-info-card {
	border-left: 3px solid var(--ee-accent);
}

/* ===== Facts List ===== */
.ee-facts {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.ee-facts li {
	padding: 10px 0;
	border-bottom: 1px dashed var(--ee-border);
	font-size: 0.95rem;
}

.ee-facts li:last-child {
	border-bottom: none;
}

.ee-facts li strong {
	color: var(--ee-text);
	font-weight: 600;
}

/* ===== Steps ===== */
.ee-steps {
	list-style: none;
	padding-left: 0;
	margin: 0;
	counter-reset: step-counter;
}

.ee-steps li {
	counter-increment: step-counter;
	position: relative;
	padding: 20px 0 20px 64px;
	border-bottom: 1px solid var(--ee-border);
	min-height: 56px;
}

.ee-steps li:last-child {
	border-bottom: none;
}

.ee-steps li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 20px;
	width: 40px;
	height: 40px;
	background: var(--ee-primary);
	color: #fff;
	font-family: var(--ee-font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ee-steps li strong {
	display: block;
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.ee-steps li p {
	margin: 0;
	color: var(--ee-text-secondary);
	font-size: 0.95rem;
}

/* ===== FAQ ===== */
.ee-faq {
	display: grid;
	gap: 12px;
}

.ee-faq-item {
	background: var(--ee-surface);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-md);
	overflow: hidden;
	transition: box-shadow var(--ee-transition);
}

.ee-faq-item:hover {
	box-shadow: var(--ee-shadow-sm);
}

.ee-faq-item[open] {
	box-shadow: var(--ee-shadow-md);
}

.ee-faq-item summary {
	cursor: pointer;
	padding: 18px 48px 18px 24px;
	font-weight: 700;
	font-size: 1rem;
	color: var(--ee-text);
	list-style: none;
	position: relative;
	transition: background var(--ee-transition);
}

.ee-faq-item summary::-webkit-details-marker {
	display: none;
}

.ee-faq-item summary::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: var(--ee-primary);
	font-weight: 400;
	transition: transform var(--ee-transition);
}

.ee-faq-item[open] summary::after {
	content: '−';
}

.ee-faq-item summary:hover {
	background: rgba(13, 148, 136, 0.04);
}

.ee-faq-answer {
	padding: 0 24px 20px;
	color: var(--ee-text-secondary);
	line-height: 1.75;
}

/* ===== Warning ===== */
.ee-warning {
	border-left: 4px solid var(--ee-accent);
	padding: 18px 24px;
	background: var(--ee-accent-light);
	border-radius: 0 var(--ee-radius-sm) var(--ee-radius-sm) 0;
	margin-top: 1rem;
}

.ee-warning p {
	margin: 0;
	font-size: 0.95rem;
	color: #92400e;
}

/* ===== Sources ===== */
.ee-sources {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.ee-sources li {
	padding: 12px 0;
	border-bottom: 1px solid var(--ee-border);
	font-size: 0.92rem;
	color: var(--ee-text-secondary);
}

.ee-sources li a {
	color: var(--ee-primary);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(13, 148, 136, 0.35);
	text-underline-offset: 2px;
}

.ee-sources li a:hover {
	color: var(--ee-primary-dark);
	text-decoration-color: var(--ee-primary-dark);
}

.ee-sources li:last-child {
	border-bottom: none;
}

.ee-source-note {
	font-size: 0.85rem;
	color: var(--ee-muted);
	margin-top: 4px;
	font-style: italic;
}

/* ===== Sidebar ===== */
.ee-sidebar {
	min-width: 0;
}

.ee-sticky {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 20px;
}

.ee-sidebar-card {
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-lg);
	padding: 28px;
	box-shadow: var(--ee-shadow-sm);
}

.ee-sidebar-card h2 {
	font-size: 1.15rem;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--ee-primary-light);
}

.ee-sidebar-card h2::after {
	display: none;
}

/* ===== Score List ===== */
.ee-score-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.ee-score-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 11px 0;
	border-bottom: 1px solid var(--ee-border);
	font-size: 0.9rem;
}

.ee-score-list li:last-child {
	border-bottom: none;
}

.ee-score-list li span {
	color: var(--ee-text-secondary);
}

.ee-score-list li strong {
	background: var(--ee-primary-light);
	color: var(--ee-primary-dark);
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.85rem;
	white-space: nowrap;
}

/* ===== Sidebar CTA ===== */
.ee-sidebar-card:last-child {
	background: linear-gradient(145deg, var(--ee-primary), var(--ee-primary-dark));
	border: none;
	color: #fff;
}

.ee-sidebar-card:last-child h2 {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.2);
}

.ee-sidebar-card:last-child p {
	margin: 0;
}

.ee-sidebar-card:last-child a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.5);
	text-underline-offset: 3px;
}

.ee-sidebar-card:last-child a:hover {
	text-decoration-color: #fff;
	color: #fff;
}

/* ===== Archive Page Base ===== */
.ee-archive-side-hustle {
	background: var(--ee-surface);
	color: var(--ee-text);
	font-family: var(--ee-font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

.ee-archive-side-hustle *,
.ee-archive-side-hustle *::before,
.ee-archive-side-hustle *::after {
	box-sizing: border-box;
}

.ee-archive-side-hustle a {
	color: var(--ee-primary);
	text-decoration: underline;
	text-decoration-color: rgba(13, 148, 136, 0.35);
	text-underline-offset: 2px;
	transition: color var(--ee-transition), text-decoration-color var(--ee-transition);
}

.ee-archive-side-hustle a:hover {
	color: var(--ee-primary-dark);
	text-decoration-color: var(--ee-primary-dark);
}

.ee-archive-side-hustle h1,
.ee-archive-side-hustle h2 {
	font-family: var(--ee-font-heading);
	color: var(--ee-text);
	line-height: 1.25;
	letter-spacing: -0.01em;
}

/* ===== Archive Header ===== */
.ee-archive-header {
	padding: 56px 0 32px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
}

.ee-archive-header h1 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}

.ee-archive-header .ee-kicker {
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ee-primary);
	background: var(--ee-primary-light);
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.ee-archive-header p,
.ee-archive-header .archive-description p {
	color: var(--ee-text-secondary);
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 0;
	max-width: 600px;
}

.ee-archive-summary {
	display: flex;
	align-items: baseline;
	gap: 8px;
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-md);
	padding: 16px 24px;
	box-shadow: var(--ee-shadow-sm);
	white-space: nowrap;
}

.ee-archive-summary strong {
	font-family: var(--ee-font-heading);
	font-size: 1.8rem;
	color: var(--ee-primary);
	line-height: 1;
}

.ee-archive-summary span {
	font-size: 0.88rem;
	color: var(--ee-muted);
	font-weight: 500;
}

.ee-filter-box {
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-lg);
	padding: 32px;
	box-shadow: var(--ee-shadow-sm);
}

.ee-filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	align-items: end;
}

.ee-filter-item label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ee-muted);
	font-weight: 600;
	margin-bottom: 6px;
}

.ee-filter-item select {
	width: 100%;
	padding: 11px 14px;
	border-radius: var(--ee-radius-sm);
	border: 1px solid var(--ee-border);
	font-size: 0.95rem;
	font-family: var(--ee-font-body);
	background: var(--ee-surface);
	color: var(--ee-text);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
	cursor: pointer;
	transition: border-color var(--ee-transition), box-shadow var(--ee-transition);
}

.ee-filter-item select:focus {
	outline: none;
	border-color: var(--ee-primary);
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

/* Checkbox filter items */
.ee-filter-item--checkbox {
	display: flex;
	align-items: center;
}

.ee-filter-item--checkbox label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: var(--ee-text-secondary);
	margin-bottom: 0;
	cursor: pointer;
	padding: 10px 0;
	user-select: none;
}

.ee-filter-item--checkbox input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid var(--ee-border);
	border-radius: 5px;
	background: var(--ee-surface);
	cursor: pointer;
	position: relative;
	transition: background var(--ee-transition), border-color var(--ee-transition);
}

.ee-filter-item--checkbox input[type="checkbox"]:checked {
	background: var(--ee-primary);
	border-color: var(--ee-primary);
}

.ee-filter-item--checkbox input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.ee-filter-item--checkbox input[type="checkbox"]:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

/* Filter actions */
.ee-filter-actions {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--ee-border);
}

.ee-filter-actions button {
	padding: 12px 32px;
	border-radius: var(--ee-radius-sm);
	border: none;
	font-size: 0.95rem;
	font-family: var(--ee-font-body);
	font-weight: 700;
	cursor: pointer;
	background: var(--ee-primary);
	color: #fff;
	box-shadow: var(--ee-shadow-sm);
	transition: background var(--ee-transition), transform var(--ee-transition), box-shadow var(--ee-transition);
}

.ee-filter-actions button:hover {
	background: var(--ee-primary-dark);
	transform: translateY(-1px);
	box-shadow: var(--ee-shadow-md);
}

.ee-filter-actions button:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.ee-filter-actions a {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ee-muted);
	text-decoration: none;
}

.ee-filter-actions a:hover {
	color: var(--ee-primary);
	text-decoration: underline;
}

/* ===== Archive Cards ===== */
.ee-card-grid--archive {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	margin: 32px 0;
}

.ee-archive-card {
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-lg);
	overflow: hidden;
	box-shadow: var(--ee-shadow-sm);
	transition: box-shadow var(--ee-transition), transform var(--ee-transition);
	display: flex;
	flex-direction: column;
}

.ee-archive-card:hover {
	box-shadow: var(--ee-shadow-lg);
	transform: translateY(-4px);
}

.ee-card-thumb {
	display: block;
	text-decoration: none;
	overflow: hidden;
}

.ee-card-thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ee-archive-card:hover .ee-card-thumb img {
	transform: scale(1.04);
}

.ee-card-body {
	padding: 20px 24px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ee-card-kicker {
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ee-primary);
	margin: 0 0 8px;
}

.ee-card-title {
	font-family: var(--ee-font-heading);
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 0 0 10px;
}

.ee-card-title a {
	color: var(--ee-text);
	text-decoration: none;
}

.ee-card-title a:hover {
	color: var(--ee-primary);
	text-decoration: none;
}

.ee-card-excerpt {
	font-size: 0.92rem;
	color: var(--ee-text-secondary);
	line-height: 1.6;
	margin: 0 0 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ee-card-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	font-size: 0.82rem;
	color: var(--ee-muted);
}

.ee-card-meta li strong {
	color: var(--ee-text-secondary);
}

.ee-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 16px;
}

.ee-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--ee-primary-light);
	color: var(--ee-primary-dark);
	font-size: 0.78rem;
	font-weight: 600;
	margin: 0;
}

/* Card CTA link */
.ee-card-link {
	margin: auto 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--ee-border);
}

.ee-card-link a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--ee-primary);
	text-decoration: none;
	transition: gap var(--ee-transition), color var(--ee-transition);
}

.ee-card-link a::after {
	content: '→';
	font-size: 1.1em;
	transition: transform var(--ee-transition);
}

.ee-card-link a:hover {
	color: var(--ee-primary-dark);
	text-decoration: none;
	gap: 10px;
}

.ee-card-link a:hover::after {
	transform: translateX(2px);
}

/* ===== Pagination ===== */
.ee-pagination {
	padding: 40px 0 64px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}

.ee-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: var(--ee-radius-sm);
	font-size: 0.9rem;
	font-weight: 600;
	font-family: var(--ee-font-body);
	color: var(--ee-text-secondary);
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	text-decoration: none;
	transition: all var(--ee-transition);
}

.ee-pagination a.page-numbers:hover {
	background: var(--ee-primary-light);
	border-color: var(--ee-primary);
	color: var(--ee-primary-dark);
	text-decoration: none;
}

.ee-pagination .page-numbers.current {
	background: var(--ee-primary);
	border-color: var(--ee-primary);
	color: #fff;
}

.ee-pagination .page-numbers.dots {
	border: none;
	background: none;
	color: var(--ee-muted);
	min-width: 28px;
	padding: 0;
}

.ee-pagination .page-numbers.prev,
.ee-pagination .page-numbers.next {
	font-weight: 600;
	gap: 4px;
}

/* ===== Empty State ===== */
.ee-empty-state {
	padding: 72px 24px 80px;
	text-align: center;
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-lg);
	margin: 32px 0 48px;
}

.ee-empty-state h2 {
	font-family: var(--ee-font-heading);
	font-size: 1.5rem;
	margin: 0 0 8px;
	color: var(--ee-text);
}

.ee-empty-state h2::after {
	display: none;
}

.ee-empty-state p {
	color: var(--ee-muted);
	margin: 0 0 8px;
	font-size: 1rem;
}

.ee-empty-state p:last-child {
	margin-top: 16px;
}

.ee-empty-state p a {
	font-weight: 700;
	color: var(--ee-primary);
	text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
	.ee-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.ee-sticky {
		position: static;
	}

	.ee-section {
		padding: 28px 24px;
	}

	.ee-hero {
		padding: 36px 0 20px;
	}

	.entry-title {
		font-size: 1.8rem;
	}

	.ee-meta-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ee-two-col {
		grid-template-columns: 1fr;
	}

	.ee-featured-image {
		border-radius: var(--ee-radius-md);
	}

	/* Archive responsive */
	.ee-archive-header {
		flex-direction: column;
		align-items: flex-start;
		padding: 36px 0 24px;
	}

	.ee-filter-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ee-card-grid--archive {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 540px) {
	.ee-container {
		padding: 0 16px;
	}

	.ee-section {
		padding: 24px 20px;
		border-radius: var(--ee-radius-md);
	}

	.ee-meta-grid {
		grid-template-columns: 1fr;
	}

	.ee-card-grid {
		grid-template-columns: 1fr;
	}

	.ee-steps li {
		padding-left: 52px;
	}

	.ee-steps li::before {
		width: 34px;
		height: 34px;
		font-size: 0.95rem;
	}

	.ee-sidebar-card {
		padding: 24px 20px;
		border-radius: var(--ee-radius-md);
	}

	/* Archive small screen */
	.ee-filter-box {
		padding: 24px 20px;
	}

	.ee-filter-grid {
		grid-template-columns: 1fr;
	}

	.ee-card-grid--archive {
		grid-template-columns: 1fr;
	}

	.ee-filter-actions {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.ee-pagination {
		gap: 3px;
	}

	.ee-pagination .page-numbers {
		min-width: 36px;
		height: 36px;
		font-size: 0.85rem;
		padding: 0 8px;
	}
}

/* =============================================================
   HOMEPAGE — ee-home
   ============================================================= */

/* ── Base ──────────────────────────────────────────────── */
.ee-home {
	background: var(--ee-surface);
	color: var(--ee-text);
	font-family: var(--ee-font-body);
	font-size: 1.05rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.ee-home *,
.ee-home *::before,
.ee-home *::after {
	box-sizing: border-box;
}

.ee-home a {
	color: var(--ee-primary);
	text-decoration: underline;
	text-decoration-color: rgba(13, 148, 136, 0.35);
	text-underline-offset: 2px;
	transition: color var(--ee-transition), text-decoration-color var(--ee-transition);
}

.ee-home a:hover {
	color: var(--ee-primary-dark);
	text-decoration-color: var(--ee-primary-dark);
}

.ee-home h1,
.ee-home h2,
.ee-home h3 {
	font-family: var(--ee-font-heading);
	color: var(--ee-text);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

/* ── Buttons ───────────────────────────────────────────── */
.ee-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: var(--ee-radius-sm);
	font-family: var(--ee-font-body);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--ee-transition);
	border: 2px solid transparent;
}

a.ee-btn,
a.ee-btn:hover,
a.ee-btn:focus,
a.ee-btn:visited {
	text-decoration: none;
}

a.ee-btn.ee-btn--primary,
a.ee-btn.ee-btn--primary:visited {
	background: var(--ee-primary);
	color: #fff;
	border-color: var(--ee-primary);
	box-shadow: var(--ee-shadow-md);
}

a.ee-btn.ee-btn--primary:hover,
a.ee-btn.ee-btn--primary:focus {
	background: var(--ee-primary-dark);
	border-color: var(--ee-primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--ee-shadow-lg);
}

a.ee-btn.ee-btn--outline,
a.ee-btn.ee-btn--outline:visited {
	background: transparent;
	color: var(--ee-primary);
	border-color: var(--ee-primary);
}

a.ee-btn.ee-btn--outline:hover,
a.ee-btn.ee-btn--outline:focus {
	background: var(--ee-primary);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--ee-shadow-md);
}

a.ee-btn.ee-btn--white,
a.ee-btn.ee-btn--white:visited {
	background: #fff;
	color: var(--ee-primary-dark);
	border-color: #fff;
	font-size: 1.05rem;
	padding: 16px 40px;
	box-shadow: var(--ee-shadow-md);
}

a.ee-btn.ee-btn--white:hover,
a.ee-btn.ee-btn--white:focus {
	background: var(--ee-primary-light);
	border-color: var(--ee-primary-light);
	color: var(--ee-primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--ee-shadow-lg);
}

/* ── Hero ──────────────────────────────────────────────── */
.ee-home-hero {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
	padding: 72px 0 64px;
	min-height: 520px;
}

.ee-home-hero__badge {
	display: inline-block;
	background: var(--ee-primary-light);
	color: var(--ee-primary-dark);
	font-size: 0.82rem;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 20px;
	letter-spacing: 0.01em;
}

.ee-home-hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	margin: 0 0 20px;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.ee-home-hero h1 em {
	font-style: normal;
	color: var(--ee-primary);
}

.ee-home-hero__lead {
	font-size: 1.15rem;
	color: var(--ee-text-secondary);
	line-height: 1.7;
	margin: 0 0 32px;
	max-width: 540px;
}

.ee-home-hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.ee-home-hero__counter {
	font-size: 0.88rem;
	color: var(--ee-muted);
	margin: 0;
}

.ee-home-hero__counter strong {
	color: var(--ee-primary);
	font-family: var(--ee-font-heading);
	font-size: 1.1rem;
}

/* Hero visual (decorative) */
.ee-home-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 340px;
}

.ee-home-hero__blob {
	position: absolute;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle at 30% 40%, var(--ee-primary-light) 0%, rgba(13, 148, 136, 0.08) 60%, transparent 70%);
	border-radius: 50%;
	animation: ee-blob-float 8s ease-in-out infinite;
}

@keyframes ee-blob-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50%      { transform: translateY(-16px) scale(1.04); }
}

.ee-home-hero__cards-stack {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 280px;
}

.ee-home-hero__card-preview {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-md);
	padding: 18px 22px;
	box-shadow: var(--ee-shadow-md);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ee-text);
	animation: ee-cards-slide-in 0.6s ease-out both;
}

.ee-home-hero__card-preview:nth-child(1) { animation-delay: 0.15s; }
.ee-home-hero__card-preview:nth-child(2) { animation-delay: 0.3s; }
.ee-home-hero__card-preview:nth-child(3) { animation-delay: 0.45s; }

@keyframes ee-cards-slide-in {
	from { opacity: 0; transform: translateX(30px); }
	to   { opacity: 1; transform: translateX(0); }
}

.ee-home-hero__card-icon {
	font-size: 1.5rem;
	line-height: 1;
}

/* ── Section wrapper ───────────────────────────────────── */
.ee-home-section {
	padding: 64px 0;
}

.ee-home-section + .ee-home-section {
	border-top: 1px solid var(--ee-border);
}

.ee-home-section__header {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 40px;
}

.ee-home-section__header h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin: 0 0 10px;
}

.ee-home-section__header h2::after {
	display: none;
}

.ee-home-section__header p {
	color: var(--ee-text-secondary);
	font-size: 1.05rem;
	margin: 0;
}

.ee-home-section__cta {
	text-align: center;
	margin-top: 40px;
}

/* ── How it works ──────────────────────────────────────── */
.ee-how-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ee-how-card {
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-lg);
	padding: 36px 32px;
	box-shadow: var(--ee-shadow-sm);
	text-align: center;
	transition: box-shadow var(--ee-transition), transform var(--ee-transition);
}

.ee-how-card:hover {
	box-shadow: var(--ee-shadow-md);
	transform: translateY(-4px);
}

.ee-how-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--ee-primary);
	color: #fff;
	font-family: var(--ee-font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 50%;
	margin-bottom: 20px;
}

.ee-how-card h3 {
	font-size: 1.2rem;
	margin: 0 0 12px;
	font-family: var(--ee-font-body);
	font-weight: 700;
	color: var(--ee-text);
}

.ee-how-card p {
	color: var(--ee-text-secondary);
	font-size: 0.95rem;
	line-height: 1.65;
	margin: 0;
}

/* ── Categories grid ───────────────────────────────────── */
.ee-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.ee-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background: var(--ee-card);
	border: 1px solid var(--ee-border);
	border-radius: var(--ee-radius-lg);
	padding: 28px 20px;
	text-decoration: none;
	text-align: center;
	box-shadow: var(--ee-shadow-sm);
	transition: all var(--ee-transition);
}

.ee-cat-card:hover {
	box-shadow: var(--ee-shadow-md);
	transform: translateY(-4px);
	border-color: var(--ee-primary);
	text-decoration: none;
}

.ee-cat-card__icon {
	font-size: 2rem;
	line-height: 1;
}

.ee-cat-card__name {
	font-weight: 700;
	font-size: 1rem;
	color: var(--ee-text);
}

.ee-cat-card__count {
	font-size: 0.8rem;
	color: var(--ee-muted);
	font-weight: 500;
}

/* ── Home FAQ (reuses .ee-faq-item from single) ────────── */
.ee-home-faq {
	max-width: 740px;
	margin: 0 auto;
	display: grid;
	gap: 12px;
}

/* ── CTA finale ────────────────────────────────────────── */
.ee-home-cta {
	margin: 32px 0 0;
	background: linear-gradient(145deg, var(--ee-primary), var(--ee-primary-dark));
	border-radius: var(--ee-radius-xl);
	padding: 64px 40px;
	text-align: center;
}

.ee-home-cta__content {
	max-width: 560px;
	margin: 0 auto;
}

.ee-home-cta h2 {
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 12px;
}

.ee-home-cta p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	margin: 0 0 28px;
}

/* ── Homepage responsive ───────────────────────────────── */
@media (max-width: 900px) {
	.ee-home-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 48px 0 40px;
		min-height: auto;
	}

	.ee-home-hero__visual {
		min-height: 240px;
	}

	.ee-home-hero__blob {
		width: 260px;
		height: 260px;
	}

	.ee-home-hero__cards-stack {
		width: 240px;
	}

	.ee-how-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.ee-home-section {
		padding: 48px 0;
	}

	.ee-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ee-home-cta {
		padding: 48px 24px;
		border-radius: var(--ee-radius-lg);
	}
}

@media (max-width: 540px) {
	.ee-home-hero {
		padding: 36px 0 32px;
	}

	.ee-home-hero__actions {
		flex-direction: column;
	}

	.ee-home-hero__actions .ee-btn {
		justify-content: center;
		width: 100%;
	}

	.ee-home-hero__visual {
		display: none;
	}

	.ee-cat-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.ee-cat-card {
		padding: 20px 14px;
	}

	.ee-home-section {
		padding: 36px 0;
	}

	.ee-home-cta {
		padding: 40px 20px;
		margin: 24px 0 0;
	}

	.ee-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}

/* ===== Google Fonts Loader ===== */
/* Add this to your <head> or @import at top of stylesheet:
   <link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Source+Sans+3:wght@400;600;700&display=swap" rel="stylesheet">
*/