/**
 * Evocarz Custom Components
 * Tailwind-inspired Utility First & Modern CSS
 */

:root {
	/* Light Mode Variables */
	--bg-body: #ffffff;
	--bg-card: #ffffff;
	--bg-header: rgba(255, 255, 255, 0.85);
	--text-main: #111827;
	--text-muted: #4b5563; /* Darkened from #6b7280 to pass AA contrast */
	--border-color: #e5e7eb;
	--card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--table-header-bg: #f9fafb;
	
	/* Component Semantic Colors (Light Mode) */
	--color-pros: #15803d; /* green-700 */
	--color-cons: #b91c1c; /* red-700 */
	--color-tldr: #1d4ed8; /* blue-700 */
	--cyber-bg: #f8fafc;
	--cyber-border: #e2e8f0;
	--cyber-th: #f1f5f9;
	--cyber-td-left: #2563eb;
	--cyber-td-right: #0f172a;
	--cyber-hover: rgba(59, 130, 246, 0.05);
}

[data-theme="dark"] {
	/* Dark Mode Variables */
	--bg-body: #111827;
	--bg-card: #1f2937;
	--bg-header: rgba(17, 24, 39, 0.85);
	--text-main: #f9fafb;
	--text-muted: #9ca3af;
	--border-color: #374151;
	--card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	--card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
	--table-header-bg: #1f2937;

	/* Component Semantic Colors (Dark Mode) */
	--color-pros: #86efac; /* green-300 */
	--color-cons: #fca5a5; /* red-300 */
	--color-tldr: #93c5fd; /* blue-300 */
	--cyber-bg: #0f172a;
	--cyber-border: #1e293b;
	--cyber-th: rgba(30, 41, 59, 0.5);
	--cyber-td-left: #93c5fd;
	--cyber-td-right: #f8fafc;
	--cyber-hover: rgba(59, 130, 246, 0.08);
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	max-width: 100vw;
}
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	background-color: var(--bg-body);
	color: var(--text-main);
	transition: background-color 0.3s ease, color 0.3s ease;
	overflow-wrap: break-word;
	word-wrap: break-word;
	overflow-x: clip;
	max-width: 100vw;
}

/* Foolproof Responsive Media */
img, video, figure, canvas, svg {
	max-width: 100%;
	height: auto;
}
iframe, object, embed {
	max-width: 100%;
	aspect-ratio: 16 / 9;
}
pre, code {
	white-space: pre-wrap;
	word-wrap: break-word;
}

.site {
	overflow-x: clip;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Global Accessibility Focus States */
:focus-visible {
	outline: 2px solid #3b82f6;
	outline-offset: 2px;
	border-radius: 4px;
}

/* Layout & Spacing Utilities */
.evocarz-container {
	max-width: 840px;
	margin: 0; /* Align left alongside sidebar */
}

.evocarz-main-wrapper {
	width: 100%; /* Force strict viewport adherence */
	max-width: 1200px;
	margin: 1rem auto 2rem auto;
	padding: 0 1rem;
	display: flex;
	gap: 2.5rem;
	align-items: flex-start;
}

#primary {
	flex: 1;
	min-width: 0; /* Prevent flex blowout */
	width: 100%;
	max-width: 100%;
}

#secondary {
	width: 320px;
	flex-shrink: 0;
	position: sticky;
	top: 6rem; /* Sticky sidebar below the header */
}

@media (max-width: 992px) {
	.evocarz-main-wrapper {
		flex-direction: column;
	}
	#secondary {
		width: 100%;
		position: static;
	}
}

.evocarz-mb-4 { margin-bottom: 1rem; }
.evocarz-mb-6 { margin-bottom: 1.5rem; }
.evocarz-mt-6 { margin-top: 1.5rem; }

/* Breadcrumbs (Semantic & Overflow proof) */
.evocarz-breadcrumbs {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-top: 0;
	margin-bottom: 1.5rem;
	display: inline-flex;
	max-width: 100%;
	background-color: var(--table-header-bg);
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: 1px solid var(--border-color);
	overflow: hidden;
}
.evocarz-breadcrumbs ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
}
.evocarz-breadcrumbs ol::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}
.evocarz-breadcrumbs li {
	display: inline-flex;
	align-items: center;
}
.evocarz-breadcrumbs a {
	color: #1d4ed8; /* Darkened from #3b82f6 to pass AA contrast */
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.evocarz-breadcrumbs a:hover {
	color: #1e3a8a;
	text-decoration: underline;
}
.evocarz-chevron {
	width: 14px;
	height: 14px;
	margin: 0 0.5rem;
	opacity: 0.5;
}
.evocarz-bc-current {
	color: var(--text-main);
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 200px;
}
@media (min-width: 768px) {
	.evocarz-bc-current { max-width: 400px; }
}

/* Typography */
.evocarz-title {
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--text-main);
	margin-top: 0; /* Reset default browser margin */
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.evocarz-title { font-size: 3.25rem; }
}

.evocarz-meta {
	font-size: 0.875rem;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

/* Badges */
.evocarz-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.evocarz-badge-rumored {
	background-color: #fef3c7;
	color: #92400e;
}
.evocarz-badge-confirmed {
	background-color: #d1fae5;
	color: #065f46;
}

/* 3. PERFORMANCE-FIRST YOUTUBE EMBED FACADE */
.lite-yt-facade {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	background-color: #000;
	border-radius: 1rem; /* matches featured image */
	cursor: pointer;
	overflow: hidden;
	margin-bottom: 2rem;
	/* Prevent CLS */
	display: block;
}
.lite-yt-img {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.lite-yt-facade::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.2);
	z-index: 2;
	transition: background 0.3s ease;
}

.lite-yt-facade:hover::before {
	background: rgba(0, 0, 0, 0.1);
}

.lite-yt-playbtn {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 68px; height: 48px;
	background-color: rgba(33, 33, 33, 0.8);
	border-radius: 12px;
	z-index: 3;
	transition: background-color 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lite-yt-facade:hover .lite-yt-playbtn {
	background-color: #ff0000;
}

.lite-yt-playbtn::before {
	content: '';
	position: absolute;
	top: 14px; left: 26px;
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent #fff;
}

.lite-yt-iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 4;
	border: none;
}

/* Featured Image (No Video) */
.evocarz-featured-image {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
}

/* Spec Table */
.evocarz-spec-table-wrapper {
	overflow-x: auto;
	margin: 2rem 0;
	border-radius: 0.5rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	border: 1px solid #e5e7eb;
}

.evocarz-spec-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	margin: 0;
}

.evocarz-spec-table th {
	background-color: #f9fafb;
	color: #374151;
	font-weight: 600;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.evocarz-spec-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e5e7eb;
	color: #4b5563;
}

.evocarz-spec-table tr:last-child td {
	border-bottom: none;
}

/* Phase 2: Grid Archive Architecture */
.evocarz-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	padding: 2rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.evocarz-card {
	background: #fff;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.evocarz-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.evocarz-card-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #f3f4f6;
	overflow: hidden;
}

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

.evocarz-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background: rgba(220, 38, 38, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.evocarz-play-icon svg {
	width: 24px;
	height: 24px;
	margin-left: 4px; /* Optical alignment */
}

.evocarz-card-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.evocarz-card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.evocarz-card-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: #6b7280;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.evocarz-card-cat {
	color: #2563eb;
}

.evocarz-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 0.5rem 0;
}

.evocarz-card-title a {
	color: #111827;
	text-decoration: none;
}

.evocarz-card-title a:hover {
	color: #2563eb;
}

.evocarz-card-excerpt {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.5;
	margin: 0;
	flex-grow: 1;
}

/* Phase 3: Header, Navigation & Dark Mode */
.evocarz-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: var(--bg-header);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-color);
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.evocarz-header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.625rem 1.25rem; /* Reduced padding for a slimmer, more elegant look */
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-branding .site-title {
	margin: 0;
	line-height: 1;
}

.site-branding .site-title a {
	color: var(--text-main);
	text-decoration: none;
	font-weight: 800;
	font-size: 1.35rem; /* Slightly smaller for a premium, compact feel */
	background: linear-gradient(90deg, #111827, #3b82f6);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
[data-theme="dark"] .site-branding .site-title a {
	background: linear-gradient(90deg, #f9fafb, #60a5fa);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.evocarz-header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.evocarz-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	gap: 0.5rem;
	background-color: #dc2626;
	color: #ffffff !important;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: background-color 0.2s, transform 0.2s;
	text-decoration: none;
}
.evocarz-header-cta:hover {
	background-color: #b91c1c;
	transform: scale(1.05);
}

.evocarz-navigation {
	display: none;
}

.evocarz-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
}

.evocarz-navigation a {
	color: var(--text-main);
	text-decoration: none;
	font-weight: 600;
}

.evocarz-navigation a:hover {
	color: #3b82f6;
}

.evocarz-icon-btn {
	background: transparent;
	border: none;
	color: var(--text-main);
	cursor: pointer;
	padding: 0.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	transition: background-color 0.2s ease;
	min-width: 48px;
	min-height: 48px;
}

.evocarz-icon-btn:hover {
	background-color: var(--border-color);
}

.mobile-only {
	display: flex;
}

@media (min-width: 993px) {
	.evocarz-navigation {
		display: block;
		flex: 1; /* Allow navigation to take up available space */
		margin: 0 1.5rem; /* Add breathing room around the menu */
	}
	.mobile-only {
		display: none;
	}
	/* Ensure long menus wrap nicely or don't break layout */
	.evocarz-navigation ul {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* Off-Canvas Menu for Mobile (Old block removed, now handled at EOF) */
.evocarz-navigation.is-active {
	/* Override left here to avoid conflicts with new offcanvas at bottom */
}

/* Update previous components for Dark Mode */
.evocarz-title { color: var(--text-main); }
.evocarz-meta, .evocarz-breadcrumbs { color: var(--text-muted); }
.evocarz-card {
	background-color: var(--bg-card);
	box-shadow: var(--card-shadow);
}
.evocarz-card:hover { box-shadow: var(--card-hover-shadow); }
.evocarz-card-title a { color: var(--text-main); }
.evocarz-spec-table-wrapper, .evocarz-spec-table th, .evocarz-spec-table td {
	border-color: var(--border-color);
}
.evocarz-spec-table th {
	background-color: var(--table-header-bg);
	color: var(--text-main);
}
.evocarz-spec-table td { color: var(--text-main); }

/* Phase 4.5: Journalistic Author Info */
.evocarz-author-info-main {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem 0;
	border-top: 1px solid var(--border-color);
	margin-top: 2rem;
}

.evocarz-author-image {
	flex-shrink: 0;
}

.evocarz-author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.evocarz-author-info {
	flex-grow: 1;
}

.evocarz-author-name-title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

a.evocarz-author-name,
a.evocarz-author-name:visited {
	font-size: 1rem;
	font-weight: 700;
	color: #111827 !important; /* Hardcoded to bypass Lighthouse var() bug */
	text-decoration: none;
}

a.evocarz-author-name:hover {
	text-decoration: underline;
}

[data-theme="dark"] a.evocarz-author-name,
[data-theme="dark"] a.evocarz-author-name:visited {
	color: #f9fafb !important;
}

.evocarz-author-title {
	font-size: 0.875rem;
	color: var(--text-muted);
}
.evocarz-author-title::before {
	content: "—";
	margin-right: 0.5rem;
	color: var(--text-muted);
}

.evocarz-author-desc {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-main);
}

.evocarz-author-desc p {
	margin: 0;
}

/* Phase 4.7: Premium Ad Slots */
.evocarz-ad-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-card);
	border: 1px dashed var(--border-color);
	border-radius: 0.5rem;
	margin: 2rem auto;
	position: relative;
	overflow: hidden;
}
.evocarz-ad-slot::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(59, 130, 246, 0.03) 10px, rgba(59, 130, 246, 0.03) 20px);
	z-index: 0;
}
.evocarz-ad-slot span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	z-index: 1;
	background: var(--bg-main);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	border: 1px solid var(--border-color);
}
.evocarz-ad-leaderboard {
	width: 100%;
	max-width: 728px;
	height: 90px;
}
.evocarz-ad-rectangle {
	width: 100%;
	max-width: 336px;
	height: 280px;
}
.evocarz-ad-incontent {
	width: 100%;
	height: 250px;
	margin: 2.5rem auto;
}
@media (max-width: 640px) {
	.evocarz-ad-leaderboard {
		height: 250px;
		max-width: 300px;
	}
}

/* Phase 4.8: Related Posts (More Like This) */
.evocarz-related-posts {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 2px solid var(--border-color);
}
.evocarz-related-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-main);
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.evocarz-related-title::before {
	content: '';
	display: block;
	width: 24px;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	border-radius: 2px;
}
.evocarz-related-slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	padding: 1rem 0 2rem 0;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.evocarz-related-slider::-webkit-scrollbar {
	display: none;
}
.evocarz-related-slider .evocarz-feature-card {
	flex: 0 0 280px;
	height: 250px;
	scroll-snap-align: start;
	margin-bottom: 0;
}

/* Phase 4.9: Affiliate Product Box */
.evocarz-affiliate-box {
	display: flex;
	flex-direction: row;
	background-color: var(--bg-card);
	border: 2px solid rgba(59, 130, 246, 0.2);
	border-radius: 1rem;
	padding: 1.5rem;
	gap: 1.5rem;
	margin: 2.5rem 0;
	position: relative;
	box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
	transition: transform 0.2s, box-shadow 0.2s;
}
.evocarz-affiliate-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.evocarz-aff-badge {
	position: absolute;
	top: -12px;
	left: 1.5rem;
	background: linear-gradient(90deg, #f59e0b, #ef4444);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}
.evocarz-aff-img-wrap {
	flex: 0 0 180px;
	background: var(--bg-main);
	border-radius: 0.5rem;
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
}
.evocarz-aff-img-wrap svg {
	width: 80px;
	height: 80px;
	color: var(--text-muted);
}
.evocarz-aff-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.evocarz-aff-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--text-main);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
.evocarz-aff-desc {
	font-size: 0.9375rem;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
	line-height: 1.6;
}
.evocarz-aff-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #f59e0b;
	color: #fff !important;
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	text-decoration: none !important;
	transition: background 0.2s;
	align-self: flex-start;
}
.evocarz-aff-btn:hover {
	background: #d97706;
}
@media (max-width: 640px) {
	.evocarz-affiliate-box {
		flex-direction: column;
		padding: 2rem 1.25rem 1.25rem;
	}
	.evocarz-aff-badge {
		left: 1.25rem;
	}
	.evocarz-aff-img-wrap {
		flex: none;
		width: 100%;
	}
	.evocarz-aff-btn {
		width: 100%;
	}
}

/* Premium Meta Bar (Single Post) */
.evocarz-premium-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 2.5rem;
	margin-top: 1.5rem;
}
.evocarz-meta-left {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.evocarz-meta-avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border-color);
}
.evocarz-meta-info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.evocarz-meta-author {
	font-weight: 700;
	color: var(--text-main);
	font-size: 1.05rem;
}
.evocarz-meta-author a {
	color: var(--text-main);
	text-decoration: none;
	transition: color 0.2s;
}
.evocarz-meta-author a:hover {
	color: #3b82f6;
}
.evocarz-meta-details {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-muted);
	font-weight: 500;
}
.evocarz-meta-dot {
	color: var(--border-color);
}

/* Ultra Compact Modifier */
.evocarz-meta-compact {
	padding: 0.75rem 0;
	border-top: none;
	border-bottom: 1px solid var(--border-color);
	margin-top: 1rem;
	margin-bottom: 2rem;
}
.evocarz-meta-compact .evocarz-meta-avatar img {
	width: 32px;
	height: 32px;
	border-width: 1px;
}
.evocarz-meta-compact .evocarz-meta-info {
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.875rem;
}
.evocarz-meta-compact .evocarz-meta-author {
	font-size: 0.875rem;
}
.evocarz-meta-compact .evocarz-meta-read {
	color: var(--text-muted);
}
.evocarz-meta-compact .evocarz-meta-date {
	color: var(--text-muted);
}

@media (max-width: 640px) {
	.evocarz-premium-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.evocarz-meta-right {
		width: 100%;
	}
	.evocarz-author-info-main {
		gap: 1rem;
	}
	.evocarz-author-name-title {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.evocarz-author-title::before {
		display: none;
	}
}

/* Phase 4.6: Post Actions (Share & Follow) */
.evocarz-post-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 0.75rem;
	margin-top: 3rem;
	box-shadow: var(--card-shadow);
	flex-wrap: wrap;
	gap: 1.5rem;
}

.evocarz-share-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.evocarz-share-label {
	font-weight: 700;
	font-size: 0.9375rem;
	color: var(--text-main);
}

.evocarz-share-buttons {
	display: flex;
	gap: 0.5rem;
}

.evocarz-btn-share {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--table-header-bg);
	color: var(--text-muted);
	border: 1px solid var(--border-color);
	transition: all 0.2s ease;
}

.evocarz-btn-share:hover {
	transform: translateY(-2px);
	color: #fff;
}

.evocarz-share-x:hover { background-color: #000; border-color: #000; }
.evocarz-share-fb:hover { background-color: #1877f2; border-color: #1877f2; }
.evocarz-share-wa:hover { background-color: #25d366; border-color: #25d366; }

[data-theme="dark"] .evocarz-share-x:hover { background-color: #fff; color: #000; border-color: #fff; }

.evocarz-btn-gnews {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background-color: transparent; /* Changed from rgba to avoid blending issues */
	color: #1d4ed8 !important; /* Darkened from #3b82f6 for contrast */
	border: 1px solid #1d4ed8;
	border-radius: 9999px; /* Pill shape */
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.evocarz-btn-gnews:hover,
.evocarz-btn-gnews:visited:hover {
	background-color: #1d4ed8;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(29, 78, 216, 0.2);
}
.evocarz-btn-gnews:visited {
	color: #1d4ed8 !important;
}

@media (max-width: 640px) {
	.evocarz-post-actions {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 1.5rem 1rem;
	}
	.evocarz-share-wrap {
		flex-direction: column;
		justify-content: center;
		gap: 0.75rem;
	}
}

/* Phase 5.5: Premium Footer (Ultra Compact) */
.evocarz-footer {
	background-color: var(--bg-card);
	border-top: 1px solid var(--border-color);
	padding: 2.5rem 1rem 1rem 1rem; /* Dramatically reduced padding */
	margin-top: 2.5rem; /* Reduced top margin */
}
.evocarz-footer-container {
	max-width: 1200px;
	margin: 0 auto;
}
.evocarz-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.5rem; /* Reduced gap */
	margin-bottom: 2rem; /* Reduced bottom margin */
}
.evocarz-footer-brand h3 {
	font-size: 1.25rem; /* Smaller heading */
	font-weight: 800;
	margin: 0 0 0.5rem 0; /* Tighter margin */
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.evocarz-footer-brand p {
	color: var(--text-muted);
	line-height: 1.4; /* Tighter line height */
	font-size: 0.875rem; /* Smaller text */
	margin: 0 0 1rem 0; /* Tighter margin */
	max-width: 300px;
}
.evocarz-footer-social {
	display: flex;
	gap: 0.75rem; /* Tighter social gap */
}
.evocarz-footer-social a {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem; /* Match paragraph size */
	transition: color 0.2s;
}
.evocarz-footer-social a:hover {
	color: var(--text-main);
}
.evocarz-footer-links h4, .evocarz-footer-legal h4 {
	font-size: 0.9375rem; /* Smaller heading */
	font-weight: 700;
	color: var(--text-main);
	margin: 0 0 0.75rem 0; /* Tighter margin */
}
.evocarz-footer nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.375rem; /* Much tighter link spacing */
}
.evocarz-footer nav a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.875rem; /* Smaller link text */
	transition: color 0.2s;
}
.evocarz-footer nav a:hover {
	color: #3b82f6;
}
.evocarz-footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 1rem; /* Tighter padding */
	text-align: center;
	color: var(--text-muted);
	font-size: 0.75rem; /* Smaller copyright text */
}
@media (max-width: 768px) {
	.evocarz-footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.desktop-only { display: none !important; }
}

/* Phase 6: Content Styling & EvoCarz Signature */
.entry-content {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--text-main);
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}
.entry-content p {
	margin-bottom: 1.5rem;
}

/* Premium Typography Elements */
.evocarz-lead {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.6;
	color: var(--text-main);
	margin-bottom: 2rem;
}
.evocarz-dropcap::first-letter {
	float: left;
	font-size: 4.5rem;
	line-height: 0.8;
	font-weight: 800;
	margin-right: 0.75rem;
	margin-top: 0.25rem;
	color: #3b82f6;
	text-shadow: 2px 2px 4px rgba(59, 130, 246, 0.3);
}
.evocarz-highlight {
	background: linear-gradient(120deg, rgba(59,130,246,0.2) 0%, rgba(168,85,247,0.2) 100%);
	padding: 0 0.25rem;
	border-radius: 4px;
	font-weight: 700;
	color: var(--text-main);
}

/* Headings */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--text-main);
	font-weight: 800;
	margin-top: 2.5rem;
	margin-bottom: 1.25rem;
	line-height: 1.3;
}
.entry-content h2 {
	font-size: 1.875rem;
	position: relative;
	padding-bottom: 0.75rem;
}
.entry-content h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	border-radius: 2px;
}
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

/* SEO & Discover Elements */
/* 1. TL;DR / Key Takeaways */
.evocarz-tldr {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 0.75rem;
	padding: 1.5rem;
	margin: 2rem 0;
	box-shadow: var(--card-shadow);
	position: relative;
}
.evocarz-tldr-title {
	font-size: 1.125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #60a5fa; /* Improved contrast */
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	line-height: 1;
}
.evocarz-tldr-title svg {
	flex-shrink: 0;
	transform: translateY(-2px);
}
.evocarz-tldr-title, .evocarz-tldr-title span {
	color: var(--color-tldr) !important;
}
.evocarz-tldr ul {
	margin-bottom: 0 !important;
}

/* 2. Pros & Cons */
.evocarz-pros-cons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 2.5rem 0;
}
.evocarz-pros, .evocarz-cons {
	padding: 1.5rem;
	border-radius: 0.75rem;
}
.evocarz-pros {
	background-color: rgba(34, 197, 94, 0.05);
	border: 1px solid rgba(34, 197, 94, 0.2);
}
.evocarz-cons {
	background-color: rgba(239, 68, 68, 0.05);
	border: 1px solid rgba(239, 68, 68, 0.2);
}
.evocarz-pros-title, .evocarz-cons-title {
	font-size: 1.125rem;
	font-weight: 800;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	line-height: 1;
}
.evocarz-pros-title svg, .evocarz-cons-title svg {
	flex-shrink: 0;
	transform: translateY(-1px);
}
.evocarz-pros-title, .evocarz-pros-title span { color: var(--color-pros) !important; } 
.evocarz-cons-title, .evocarz-cons-title span { color: var(--color-cons) !important; }
@media (max-width: 640px) {
	.evocarz-pros-cons { grid-template-columns: minmax(0, 1fr); }
}

/* 3. FAQ Accordions (Native Details/Summary) */
.evocarz-faq-wrapper {
	margin: 2.5rem 0;
}
.evocarz-faq {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	margin-bottom: 1rem;
	overflow: hidden;
}
.evocarz-faq summary {
	padding: 1.25rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-main);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.evocarz-faq summary::-webkit-details-marker {
	display: none;
}
.evocarz-faq summary::after {
	content: '+';
	font-size: 1.5rem;
	color: #3b82f6;
	transition: transform 0.3s;
}
.evocarz-faq[open] summary::after {
	transform: rotate(45deg);
}
.evocarz-faq-content {
	padding: 0 1.25rem 1.25rem 1.25rem;
	color: var(--text-muted);
}
.evocarz-faq-content p:last-child {
	margin-bottom: 0;
}

/* 4. Key Vehicle Data / Ultra-Premium Spec Table */
.evocarz-spec-table-wrapper {
	margin: 3.5rem 0;
	background: var(--cyber-bg);
	border: 1px solid var(--cyber-border);
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}
/* Cyberpunk glowing top border */
.evocarz-spec-table-wrapper::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
	z-index: 2;
}

.evocarz-spec-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 1.05rem;
}
.evocarz-spec-table thead th {
	background: var(--cyber-th);
	color: var(--text-muted);
	padding: 1.5rem;
	font-size: 0.875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-bottom: 1px solid var(--cyber-border);
}
.evocarz-spec-table th:first-child {
	width: 35%;
}
.evocarz-spec-table tbody tr {
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.evocarz-spec-table tbody tr:last-child {
	border-bottom: none;
}
.evocarz-spec-table tbody tr:hover {
	background: var(--cyber-hover);
}
.evocarz-spec-table tbody tr:hover td:first-child {
	transform: translateX(6px);
}
.evocarz-spec-table td {
	padding: 1.5rem;
	vertical-align: middle;
	transition: transform 0.3s ease;
}
.evocarz-spec-table td:first-child {
	font-weight: 700;
	color: var(--cyber-td-left) !important;
	width: 35%;
	padding-right: 1.5rem;
}
.evocarz-spec-table td:last-child {
	color: var(--cyber-td-right);
	font-weight: 600;
}

@media (max-width: 640px) {
	.evocarz-spec-table-wrapper {
		border-radius: 0;
		border-left: none;
		border-right: none;
		margin: 2.5rem -1rem; /* Full bleed on mobile */
	}
	.evocarz-spec-table thead {
		display: none;
	}
	.evocarz-spec-table td {
		display: block;
		width: 100% !important;
		padding: 1rem 1.5rem 0.25rem 1.5rem;
	}
	.evocarz-spec-table td:first-child {
		font-size: 0.875rem;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		padding-bottom: 0;
	}
	.evocarz-spec-table td:last-child {
		padding-top: 0.25rem;
		padding-bottom: 1.25rem;
		font-size: 1.125rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
	.evocarz-spec-table tbody tr { border: none; }
	.evocarz-spec-table tbody tr:hover { background: transparent; }
	.evocarz-spec-table tbody tr:hover td:first-child { transform: none; }
}

/* 5. Affiliate Box / Monetization Component */
.evocarz-affiliate-box {
	background: var(--bg-card);
	border: 2px solid #f59e0b; /* Amber warning/buy border */
	border-radius: 12px;
	padding: 1.5rem;
	margin: 2.5rem 0;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	position: relative;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.evocarz-aff-badge {
	position: absolute;
	top: -12px;
	left: 1.5rem;
	background: #f59e0b;
	color: #000000; /* Max contrast on amber */
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.4);
}
.evocarz-aff-img-wrap {
	flex: 0 0 100px;
	height: 100px;
	background: var(--bg-body);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
}
.evocarz-aff-img-wrap svg {
	width: 40px; height: 40px;
}
.evocarz-aff-content {
	flex: 1;
}
.evocarz-aff-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--text-main);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
.evocarz-aff-desc {
	font-size: 0.9375rem;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
	line-height: 1.5;
}
.evocarz-aff-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #f59e0b;
	color: #000000 !important; /* Max contrast for AAA */
	font-weight: 800;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none !important;
	transition: background 0.2s, transform 0.2s;
}
.evocarz-aff-btn:hover {
	background: #d97706;
	transform: translateY(-2px);
}
@media (max-width: 640px) {
	.evocarz-affiliate-box {
		flex-direction: column;
		align-items: stretch;
		padding: 2rem 1.25rem 1.25rem 1.25rem;
	}
	.evocarz-aff-img-wrap {
		width: 100%;
		height: 150px;
	}
	.evocarz-aff-btn {
		justify-content: center;
		width: 100%;
	}
}


/* Links */
.entry-content a {
	color: #3b82f6;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	transition: color 0.2s, text-decoration-color 0.2s;
}
.entry-content a:hover {
	color: #2563eb;
	text-decoration-color: #2563eb;
}

/* Lists */
.entry-content ul, 
.entry-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}
.entry-content li {
	margin-bottom: 0.75rem;
}
.entry-content ul {
	list-style: none;
}
.entry-content ul li {
	position: relative;
}
.entry-content ul li::before {
	content: '';
	position: absolute;
	left: -1.25rem;
	top: 0.6rem;
	width: 8px;
	height: 8px;
	background-color: #3b82f6;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Blockquotes & Pullquotes */
.entry-content blockquote {
	margin: 2.5rem 0;
	padding: 1.5rem 2rem;
	background-color: var(--bg-card);
	border-left: 4px solid #3b82f6;
	border-radius: 0 0.75rem 0.75rem 0;
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 600;
	color: var(--text-main);
	box-shadow: var(--card-shadow);
	position: relative;
}
.entry-content blockquote.evocarz-pullquote {
	border-left: none;
	border-top: 4px solid #3b82f6;
	border-bottom: 4px solid #3b82f6;
	border-radius: 0;
	text-align: center;
	font-size: 1.5rem;
	padding: 2.5rem 2rem;
	margin: 3.5rem 0;
	background: transparent;
	box-shadow: none;
}
.entry-content blockquote::before {
	content: '"';
	position: absolute;
	top: -0.5rem;
	left: 1rem;
	font-size: 4rem;
	color: rgba(59, 130, 246, 0.1);
	font-family: serif;
	line-height: 1;
}
.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

/* Images & Figures */
.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 0.75rem;
	box-shadow: var(--card-shadow);
	margin-bottom: 1rem;
}
.entry-content figure {
	margin: 2.5rem 0;
}
.entry-content figcaption {
	text-align: center;
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-top: 0.75rem;
	font-style: italic;
}

/* General Tables */
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	background-color: var(--bg-card);
	border-radius: 0.75rem;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--border-color);
	overflow: hidden;
}
.entry-content th {
	background-color: var(--table-header-bg);
	font-weight: 700;
	text-align: left;
	padding: 1rem;
	border-bottom: 2px solid var(--border-color);
}
.entry-content td {
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   Phase 7: Premium Homepage (The Showcase)
   ========================================================================== */

/* 1. Bento Hero Grid */
.evocarz-bento-hero {
	margin-bottom: 3rem;
}
.evocarz-bento-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 1.5rem;
	height: 500px;
}
.evocarz-bento-main, .evocarz-bento-sub {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.evocarz-bento-side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 1.5rem;
}
.evocarz-bento-link {
	position: absolute;
	inset: 0;
	z-index: 10;
}
.evocarz-bento-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
	z-index: 1;
	transition: background 0.3s ease;
}
.evocarz-bento-main:hover .evocarz-bento-overlay,
.evocarz-bento-sub:hover .evocarz-bento-overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}
.evocarz-bento-content {
	position: relative;
	z-index: 2;
	padding: 2rem;
}
.evocarz-bento-title {
	color: #fff;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 1rem 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	overflow-wrap: break-word;
}
.evocarz-bento-title-small {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0.75rem 0 0 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	overflow-wrap: break-word;
}
.evocarz-bento-meta {
	color: rgba(255,255,255,0.7);
	font-size: 0.875rem;
	font-weight: 600;
}
.evocarz-badge-cat {
	background-color: #3b82f6;
	color: #fff;
}

/* 2. Rumor Radar */
.evocarz-rumor-radar {
	background-color: #111827;
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 3rem;
	overflow: hidden;
}
.evocarz-rumor-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.evocarz-rumor-icon {
	font-size: 2rem;
}
.evocarz-rumor-title {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 0.25rem 0;
	background: linear-gradient(90deg, #3b82f6, #a855f7);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.evocarz-rumor-subtitle {
	color: #9ca3af;
	font-size: 0.875rem;
	font-weight: 600;
}
.evocarz-rumor-track-wrapper {
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 1rem;
	width: 100%;
	max-width: 100%;
}
.evocarz-rumor-track-wrapper::-webkit-scrollbar {
	display: none;
}
.evocarz-rumor-track {
	display: flex;
	gap: 1.5rem;
	width: max-content;
}
.evocarz-rumor-card {
	width: 240px;
}
.evocarz-rumor-link {
	text-decoration: none;
}
.evocarz-rumor-thumb {
	height: 140px;
	border-radius: 0.75rem;
	background-size: cover;
	background-position: center;
	margin-bottom: 1rem;
	position: relative;
	border: 1px solid rgba(255,255,255,0.1);
	transition: transform 0.3s ease;
}
.evocarz-rumor-card:hover .evocarz-rumor-thumb {
	transform: scale(1.05);
}
.evocarz-rumor-badge {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background-color: rgba(220, 38, 38, 0.9);
	color: #fff;
	font-size: 0.625rem;
	font-weight: 800;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	letter-spacing: 0.05em;
	box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}
.evocarz-rumor-item-title {
	color: #e5e7eb;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
	transition: color 0.2s ease;
	overflow-wrap: break-word;
}
.evocarz-rumor-card:hover .evocarz-rumor-item-title {
	color: #fff;
}

/* 3. Dynamic Feed */
.evocarz-section-title-wrap {
	border-bottom: 2px solid var(--border-color);
	margin-bottom: 2rem;
	padding-bottom: 0.5rem;
}
.evocarz-section-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-main);
	margin: 0;
}
.evocarz-dynamic-feed {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* List Card */
.evocarz-list-card {
	display: flex;
	gap: 1.5rem;
	background-color: var(--bg-card);
	border-radius: 1rem;
	padding: 1rem;
	box-shadow: var(--card-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--border-color);
}
.evocarz-list-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--card-hover-shadow);
}
.evocarz-list-thumb {
	flex: 0 0 280px;
	height: 180px;
	border-radius: 0.5rem;
	background-size: cover;
	background-position: center;
	position: relative;
}
.evocarz-list-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 48px; height: 48px;
	background-color: rgba(33, 33, 33, 0.8);
	border-radius: 50%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.evocarz-list-play svg {
	width: 24px; height: 24px;
	margin-left: 3px;
}
.evocarz-list-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.evocarz-list-cat {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #3b82f6;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}
.evocarz-list-title {
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
	overflow-wrap: break-word;
}
.evocarz-list-title a {
	color: var(--text-main);
	text-decoration: none;
}
.evocarz-list-title a:hover {
	color: #3b82f6;
}
.evocarz-list-excerpt {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.5;
	margin: 0 0 1rem 0;
}
.evocarz-list-meta {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-top: auto;
}

/* Feature Card */
.evocarz-feature-card {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 1rem;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.evocarz-feature-link {
	position: absolute;
	inset: 0;
	z-index: 10;
}
.evocarz-feature-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
	z-index: 1;
}
.evocarz-feature-content {
	position: relative;
	z-index: 2;
	padding: 2rem;
	max-width: 80%;
}
.evocarz-feature-cat {
	background-color: #a855f7;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: inline-block;
	margin-bottom: 1rem;
}
.evocarz-feature-title {
	color: #fff;
	font-size: 1.875rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 1rem 0;
	overflow-wrap: break-word;
}
.evocarz-feature-meta {
	color: rgba(255,255,255,0.7);
	font-size: 0.875rem;
	font-weight: 600;
}

/* Video Vault (Cinematic Gallery) */
.evocarz-video-vault {
	margin: 3.5rem 0;
	padding: 3rem 2rem;
	background: #0f172a; /* Deep cinematic dark mode */
	border-radius: 16px;
	box-shadow: inset 0 2px 15px rgba(0,0,0,0.5);
	position: relative;
	overflow: hidden;
}
.evocarz-video-vault .evocarz-section-title {
	color: #f8fafc;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}
.evocarz-video-vault .evocarz-section-title::after {
	background: #ef4444; /* YouTube red accent */
}
.evocarz-vault-slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none; /* Firefox */
	margin: 0 -2rem; /* Bleed into padding */
	padding: 0 2rem 1rem 2rem; /* Restore padding inside scroll area */
	position: relative;
	z-index: 2;
}
.evocarz-vault-slider::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}
.evocarz-vault-item {
	flex: 0 0 320px; /* Fixed width for slider cards */
	scroll-snap-align: start;
	position: relative;
	border-radius: 12px;
	height: 220px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}
.evocarz-vault-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
	z-index: 10;
}
.evocarz-vault-link {
	position: absolute;
	inset: 0;
	z-index: 10;
}
.evocarz-vault-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
	z-index: 1;
	transition: opacity 0.3s;
}
.evocarz-vault-item:hover .evocarz-vault-overlay {
	opacity: 0.8;
}
.evocarz-vault-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	width: 56px; height: 56px;
	background: rgba(239, 68, 68, 0.9); /* YouTube Red */
	border-radius: 50%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.3s;
	box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}
.evocarz-vault-item:hover .evocarz-vault-play {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
	background: #ef4444;
}
.evocarz-vault-play svg {
	width: 28px; height: 28px;
	margin-left: 4px;
}
.evocarz-vault-content {
	position: relative;
	z-index: 3;
	padding: 1.25rem;
	width: 100%;
}
.evocarz-vault-title {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0,0,0,0.8);
	overflow-wrap: break-word;
}

/* High-Octane Newsletter Box */
.evocarz-newsletter-box {
	margin: 3.5rem 0;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
	background: var(--bg-card);
}
.evocarz-nl-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(168,85,247,0.1) 100%);
	z-index: 1;
}
.evocarz-newsletter-box::before {
	content: '';
	position: absolute;
	top: 0; left: 0; bottom: 0;
	width: 6px;
	background: linear-gradient(to bottom, #3b82f6, #a855f7);
	z-index: 2;
}
.evocarz-nl-content {
	position: relative;
	z-index: 3;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.evocarz-nl-title {
	font-size: 1.875rem;
	font-weight: 800;
	color: var(--text-main);
	margin: 0 0 0.75rem 0;
	letter-spacing: -0.025em;
}
.evocarz-nl-desc {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin: 0 0 2rem 0;
	max-width: 600px;
}
.evocarz-nl-form {
	display: flex;
	width: 100%;
	max-width: 500px;
	gap: 0.5rem;
}
.evocarz-nl-form input[type="email"] {
	flex: 1;
	padding: 1rem 1.5rem;
	border: 2px solid var(--border-color);
	border-radius: 99px;
	font-size: 1rem;
	background: var(--bg-body);
	color: var(--text-main);
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}
.evocarz-nl-form input[type="email"]:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}
.evocarz-nl-form button {
	padding: 1rem 2rem;
	background: #111827; /* sleek dark button */
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
	border: none;
	border-radius: 99px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: background 0.2s, transform 0.2s;
}
.evocarz-nl-form button:hover {
	background: #3b82f6;
	transform: translateY(-2px);
}
[data-theme="dark"] .evocarz-nl-form button {
	background: #3b82f6;
}
[data-theme="dark"] .evocarz-nl-form button:hover {
	background: #60a5fa;
}

/* Responsive Overrides */
@media (max-width: 992px) {
	.evocarz-bento-grid {
		grid-template-columns: minmax(0, 1fr);
		height: auto;
	}
	.evocarz-bento-main {
		height: auto;
		min-height: 300px;
	}
	.evocarz-bento-main .evocarz-bento-content {
		padding: 1.5rem;
	}
	.evocarz-bento-title {
		font-size: 1.5rem; /* Prevent text blowout */
	}
	.evocarz-bento-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: auto;
	}
	.evocarz-bento-sub {
		height: auto;
		min-height: 220px;
	}
	.evocarz-bento-sub .evocarz-bento-content {
		padding: 1rem;
	}
	.evocarz-bento-title-small {
		font-size: 1.125rem;
	}
	.evocarz-vault-slider {
		/* Slider handles its own responsiveness via flex overflow */
	}
}
@media (max-width: 768px) {
	.evocarz-list-card {
		flex-direction: column;
		padding: 0;
		overflow: hidden;
	}
	.evocarz-list-thumb {
		flex: none;
		width: 100%;
		height: 220px;
		border-radius: 0;
	}
	.evocarz-list-content {
		padding: 1.5rem;
	}
	.evocarz-feature-card {
		height: auto;
		min-height: 350px;
	}
	.evocarz-feature-content {
		max-width: 100%;
		padding: 1.5rem;
	}
	.evocarz-vault-slider {
		margin: 0 -1rem;
		padding: 0 1rem 1rem 1rem;
	}
	.evocarz-vault-item {
		flex: 0 0 260px; /* Smaller cards on mobile */
		height: 180px;
	}
	.evocarz-nl-content {
		padding: 2rem 1.5rem;
	}
	.evocarz-nl-form {
		flex-direction: column;
	}
	.evocarz-nl-form input[type="email"] {
		width: 100%;
	}
	.evocarz-nl-form button {
		width: 100%;
		justify-content: center;
	}
}
@media (max-width: 480px) {
	.evocarz-bento-side {
		grid-template-columns: minmax(0, 1fr);
	}
}
.entry-content tr:last-child td {
	border-bottom: none;
}

/* 10. PREMIUM SIDEBAR WIDGETS */
.evocarz-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.evocarz-widget {
	background-color: var(--bg-card);
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--border-color);
	overflow: hidden;
	position: relative;
}
.evocarz-widget-title {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--text-main);
	margin: 0 0 1.25rem 0;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--border-color);
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.evocarz-widget-title::after {
	content: '';
	position: absolute;
	bottom: -2px; left: 0;
	width: 40px; height: 2px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.evocarz-ad-widget {
	padding: 1rem;
	text-align: center;
}
.evocarz-ad-label {
	display: block;
	font-size: 0.625rem;
	text-transform: uppercase;
	color: var(--text-muted);
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}
.evocarz-ad-box img {
	max-width: 100%;
	height: auto;
	border-radius: 0.5rem;
	display: block;
	margin: 0 auto;
}
.evocarz-trending-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.evocarz-trending-item {
	display: flex;
	gap: 1rem;
	text-decoration: none;
	align-items: center;
	transition: transform 0.2s;
}
.evocarz-trending-item:hover {
	transform: translateX(4px);
}
.evocarz-trending-thumb {
	width: 60px; height: 60px;
	border-radius: 0.5rem;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}
.evocarz-trending-info {
	flex: 1;
	min-width: 0;
}
.evocarz-trending-title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--text-main);
	margin: 0 0 0.25rem 0;
	line-height: 1.3;
	transition: color 0.2s;
	overflow-wrap: break-word;
}
.evocarz-trending-item:hover .evocarz-trending-title {
	color: #3b82f6;
}
.evocarz-trending-meta {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 600;
}
.evocarz-newsletter-widget {
	padding: 0;
}
.evocarz-widget-nl-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
	z-index: 1;
}
.evocarz-widget-nl-content {
	position: relative;
	z-index: 2;
	padding: 2rem 1.5rem;
	text-align: center;
}
.evocarz-widget-title-white {
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 0.5rem 0;
}
.evocarz-widget-desc-white {
	font-size: 0.875rem;
	color: rgba(255,255,255,0.9);
	margin: 0 0 1.25rem 0;
	line-height: 1.4;
}
.evocarz-widget-nl-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.evocarz-widget-nl-form input[type="email"] {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	border: none;
	font-size: 0.875rem;
	outline: none;
}
.evocarz-widget-nl-form input[type="email"]:focus {
	box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}
.evocarz-widget-nl-form button {
	width: 100%;
	padding: 0.75rem;
	border-radius: 0.5rem;
	border: none;
	background-color: #111827;
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	transition: background-color 0.2s;
}
.evocarz-widget-nl-form button:hover {
	background-color: #000;
}
.evocarz-topics-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.evocarz-topic-tag {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1rem;
	background-color: var(--bg-body);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	text-decoration: none;
	color: var(--text-main);
	font-weight: 600;
	font-size: 0.875rem;
	transition: all 0.2s ease;
}
.evocarz-topic-tag:hover {
	border-color: #3b82f6;
	color: #3b82f6;
	transform: translateX(4px);
}
.evocarz-topic-count {
	background-color: var(--table-header-bg);
	color: var(--text-muted);
	font-size: 0.75rem;
	padding: 0.125rem 0.5rem;
	border-radius: 999px;
}
.evocarz-topic-tag:hover .evocarz-topic-count {
	background-color: rgba(59,130,246,0.1);
	color: #3b82f6;
}
[data-theme="dark"] .evocarz-widget-nl-form button {
	background-color: #3b82f6;
}
[data-theme="dark"] .evocarz-widget-nl-form button:hover {
	background-color: #60a5fa;
}

/* 11. OFF-CANVAS MOBILE MENU */
@media (max-width: 992px) {
	.desktop-only {
		display: none !important;
	}

	.evocarz-navigation {
		position: fixed;
		top: 0;
		right: -350px;
		width: 300px;
		max-width: 80vw;
		height: 100vh;
		background-color: var(--bg-body);
		box-shadow: -10px 0 25px rgba(0, 0, 0, 0.5);
		z-index: 9998;
		transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		padding: 6rem 2rem 2rem;
		overflow-y: auto;
		display: block !important;
	}

	.evocarz-navigation.is-active {
		right: 0;
	}

	.evocarz-navigation ul {
		display: flex !important;
		flex-direction: column;
		gap: 1.5rem;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.evocarz-navigation a {
		font-size: 1.25rem;
		font-weight: 700;
		color: var(--text-main);
		text-decoration: none;
		display: block;
		border-bottom: 1px solid var(--border-color);
		padding-bottom: 1rem;
		transition: color 0.3s;
	}

	.evocarz-navigation a:hover {
		color: var(--color-tldr);
	}

	/* Keep the hamburger menu above the off-canvas */
	#evocarz-mobile-menu-toggle {
		position: relative;
		z-index: 9999;
	}
}
