/* Modern Health & Wellness Design System - Optimized */
:root {
	/* Dynamic colors will be injected here by renderTemplate */
	--bg: var(--background, #f8fafc);
	--card: var(--card, #ffffff);
	--muted: var(--muted, #64748b);
	--border: var(--border, #e2e8f0);
	--text: var(--text, #1e293b);
	--accent: var(--accent, #10b981);
	--accent-hover: var(--accent, #059669);
	--accent-light: var(--accent, #d1fae5);
	--accent-dark: var(--accent, #047857);
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	
	/* Smart text colors - automatically adjust based on background */
	--text-on-accent: var(--accent-text, white);
	--text-on-primary: var(--primary-text, white);
	--text-on-secondary: var(--secondary-text, white);
	--text-on-success: var(--success-text, white);
	--text-on-warning: var(--warning-text, white);
	--text-on-error: var(--error-text, white);
}

/* Reset & Base */
* { box-sizing: border-box; }

body { 
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; 
	margin: 0; 
	padding: 0; 
	background: var(--bg); 
	color: var(--text);
	line-height: 1.6;
}

/* Layout Components */
.container { 
	max-width: 1400px; 
	margin: 0 auto; 
	padding: 0 24px; 
	padding-bottom: 40px;
}

.grid { 
	display: grid; 
	grid-template-columns: repeat(1, minmax(280px, 1fr)); 
	gap: 20px; 
}

@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, minmax(300px, 1fr)); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, minmax(320px, 1fr)); } }
@media (min-width: 1280px) { .grid { grid-template-columns: repeat(4, minmax(280px, 1fr)); } }

/* Navigation Component */
.nav-header {
	background: var(--card);
	border-bottom: 1px solid var(--border);
	padding: 16px 20px;
	margin-bottom: 32px;
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(10px);
}

.nav-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.nav-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease;
}

.nav-title .site-logo {
	height: 80px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	border-radius: 8px;
	flex-shrink: 0;
}

@media (max-width: 1024px) {
	.nav-title .site-logo {
		height: 64px;
		max-width: 180px;
	}
}

@media (max-width: 640px) {
	.nav-title .site-logo {
		height: 56px;
		max-width: 160px;
	}

	.nav-title .site-brand-text {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.nav-title .site-name {
		font-size: 16px;
	}

	.nav-title .site-tagline {
		font-size: 0.85rem;
	}
}

.nav-title .site-brand-text {
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}

.nav-title .site-brand-text.with-logo .site-icon {
	display: none;
}

.nav-title .site-name {
	white-space: nowrap;
}

.nav-title .site-tagline {
	color: var(--muted);
	font-weight: 500;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: baseline;
	line-height: 1.3;
}

.nav-title .site-tagline::before {
	content: "- ";
	color: var(--muted);
}

.is-hidden {
	display: none !important;
}

.nav-title:hover { color: var(--accent); }

/* Mobile Menu Toggle */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	transition: background-color 0.2s ease;
}

.nav-toggle:hover {
	background: var(--accent-light);
}

.nav-toggle-icon {
	width: 24px;
	height: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.nav-toggle-icon span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--text);
	border-radius: 1px;
	transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-icon span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-icon span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active .nav-toggle-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
	display: flex;
	gap: 12px;
	align-items: center;
	transition: all 0.3s ease;
}

.nav-link {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 0;
	padding: 12px 16px;
	border: 2px solid transparent;
	border-radius: 12px;
	transition: all 0.2s ease;
	position: relative;
	white-space: nowrap;
	min-height: 44px;
	height: 44px;
	width: auto;
	min-width: auto;
	max-width: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: transparent;
}

.nav-link:hover {
	background: var(--accent-light);
	color: var(--text-on-accent);
	transform: translateY(-1px);
	border-color: transparent;
}

.nav-link.active {
	background: var(--accent) !important;
	color: var(--text-on-accent) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
	letter-spacing: 0 !important;
	padding: 12px 16px !important;
	border: 2px solid transparent !important;
	min-height: 44px !important;
	height: 44px !important;
	border-radius: 12px !important;
	white-space: nowrap !important;
	width: auto !important;
	min-width: auto !important;
	max-width: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	position: relative !important;
	text-decoration: none !important;
	transition: all 0.2s ease !important;
	transform: none !important;
}

.nav-link.active:hover {
	transform: none !important;
	background: var(--accent) !important;
	border-color: transparent !important;
	font-size: 15px !important;
	padding: 12px 16px !important;
	height: 44px !important;
	min-height: 44px !important;
}

/* Typography Components */
h1 { 
	font-size: 42px; 
	font-weight: 800;
	margin: 0 0 24px; 
	text-align: center; 
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

h2 {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 24px;
	color: var(--text);
	line-height: 1.3;
}

h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 20px;
	color: var(--text);
	line-height: 1.4;
}

h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 16px;
	color: var(--text);
	line-height: 1.4;
}

h5 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--text);
	line-height: 1.4;
}

h6 {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--text);
	line-height: 1.4;
}

.subtitle { 
	text-align: center; 
	color: var(--muted); 
	margin-bottom: 48px; 
	font-size: 20px;
	font-weight: 500;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Card Component - Universal */
.card { 
	background: var(--card); 
	border: 1px solid var(--border); 
	border-radius: 20px; 
	padding: 32px; 
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

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

/* Card Variants */
.persona-card { 
	display: flex; 
	flex-direction: column; 
	gap: 18px;
	padding: 24px;
}

.article-card { 
	border-radius: 16px; 
	padding: 24px; 
	display: flex; 
	flex-direction: column; 
	gap: 12px;
}

.article-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.related-card {
	border-radius: 12px;
	padding: 1.5rem;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.related-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

/* Button Component - Universal */
.btn {
	background: var(--accent);
	color: var(--text-on-accent);
	border: none;
	padding: 14px 24px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.btn:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn:hover::before { left: 100%; }

.btn:disabled {
	background: var(--muted);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Button Variants */
.read-more-btn { 
	margin-top: 12px; 
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	color: var(--text-on-accent);
	border: none;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(var(--accent-rgb, 16, 185, 129), 0.3);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.read-more-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
	z-index: -1;
}

.read-more-btn:hover {
	background: linear-gradient(135deg, var(--accent-hover), var(--accent-dark));
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 6px 20px rgba(var(--accent-rgb, 16, 185, 129), 0.4);
	letter-spacing: 0.5px;
}

.read-more-btn:hover::before {
	left: 100%;
}

/* Animate arrow with smooth slide effect */
.read-more-btn .arrow {
	display: inline-block;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-btn:hover .arrow {
	transform: translateX(4px);
}

.read-more-btn:active {
	transform: translateY(0) scale(0.98);
	box-shadow: 0 2px 8px rgba(var(--accent-rgb, 16, 185, 129), 0.3);
}
.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	margin-bottom: 32px;
	padding: 12px 20px;
	border-radius: 12px;
	transition: all 0.2s ease;
	background: var(--accent-light);
}

.back-link:hover {
	background: var(--accent);
	color: var(--text-on-accent);
	transform: translateX(-4px);
}

/* Avatar Component */
.avatar {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--primary));
	color: white;
	font-weight: 600;
	flex-shrink: 0;
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

/* Avatar Sizes */
.avatar-sm { width: 40px; height: 40px; font-size: 14px; }
.avatar-md { width: 70px; height: 70px; font-size: 26px; }
.avatar-lg { width: 140px; height: 140px; font-size: 42px; border-width: 5px; box-shadow: var(--shadow-lg); }

/* Badge Component */
.badge {
	display: inline-block;
	padding: 8px 16px;
	background: var(--accent-light);
	color: var(--accent);
	border: 1px solid var(--accent);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
}

.badge:hover {
	background: var(--accent);
	color: var(--text-on-accent);
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

.badge.selected {
	background: var(--accent);
	color: var(--text-on-accent);
	box-shadow: var(--shadow);
}

/* Form Components */
.form-group { margin-bottom: 20px; }

.form-label {
	display: block;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 8px;
	font-size: 14px;
}

.form-input, .form-select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	font-size: 16px;
	background: var(--card);
	color: var(--text);
	transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-light);
}

.form-select { cursor: pointer; }

/* Image Components */
.product-image, .solution-image {
	border-radius: 8px;
	box-shadow: var(--shadow);
	object-fit: cover;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.product-image {
	max-width: 200px;
	width: 200px;
	height: 150px;
	margin: 0 0 20px 0;
	float: left;
	clear: left;
	display: block;
}

.solution-image {
	max-width: 200px;
	width: 200px;
	height: 150px;
	margin: 0 0 20px 0;
	float: left;
	clear: left;
	display: block;
}

.product-image:hover, .solution-image:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-lg);
}

/* Ensure proper spacing around product images */
.content .product-image,
.content .solution-image,
#articleBody .product-image,
#articleBody .solution-image {
	margin-right: 20px;
	margin-bottom: 20px;
	margin-top: 8px;
}

/* Add spacing after images when followed by lists */
.content .product-image + ul,
.content .product-image + ol,
.content .solution-image + ul,
.content .solution-image + ol,
#articleBody .product-image + ul,
#articleBody .product-image + ol,
#articleBody .solution-image + ul,
#articleBody .solution-image + ol {
	margin-top: 20px;
	clear: left;
}

/* Add spacing after paragraphs that contain images */
.content p:has(.product-image),
.content p:has(.solution-image),
#articleBody p:has(.product-image),
#articleBody p:has(.solution-image) {
	margin-bottom: 20px;
}

/* Clear floats after images */
.content article:after,
.content section:after {
	content: "";
	display: table;
	clear: both;
}

/* Article Image Sizes and Alignments */
.content img,
.article-body img,
#articleBody img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content img.img-small,
.article-body img.img-small,
#articleBody img.img-small {
	max-width: 200px;
	width: auto;
}

.content img.img-medium,
.article-body img.img-medium,
#articleBody img.img-medium {
	max-width: 400px;
	width: auto;
}

.content img.img-large,
.article-body img.img-large,
#articleBody img.img-large {
	max-width: 600px;
	width: auto;
}

.content img.img-full,
.article-body img.img-full,
#articleBody img.img-full {
	width: 100%;
	max-width: 100%;
}

/* Image Alignment Classes */
.content img.img-left,
.article-body img.img-left,
#articleBody img.img-left {
	float: left;
	margin: 0 16px 8px 0;
}

.content img.img-right,
.article-body img.img-right,
#articleBody img.img-right {
	float: right;
	margin: 0 0 8px 16px;
}

.content img.img-center,
.article-body img.img-center,
#articleBody img.img-center {
	display: block;
	margin: 16px auto;
}

.content .image-wrapper,
.article-body .image-wrapper,
#articleBody .image-wrapper {
	text-align: center;
	margin: 16px 0;
}

.content .image-wrapper img,
.article-body .image-wrapper img,
#articleBody .image-wrapper img {
	display: inline-block;
	margin: 16px auto;
}

/* Fallback for inline styles (for compatibility) */
.content img[style*="float: left"],
.article-body img[style*="float: left"],
#articleBody img[style*="float: left"] {
	float: left;
	margin: 0 16px 8px 0;
}

.content img[style*="float: right"],
.article-body img[style*="float: right"],
#articleBody img[style*="float: right"] {
	float: right;
	margin: 0 0 8px 16px;
}

.content img[style*="margin: 0 auto"],
.article-body img[style*="margin: 0 auto"],
#articleBody img[style*="margin: 0 auto"] {
	display: block;
	margin: 16px auto;
}

.content p[style*="text-align: center"] img,
.article-body p[style*="text-align: center"] img,
#articleBody p[style*="text-align: center"] img {
	display: inline-block;
	margin: 16px auto;
}

/* Status Components */
.loading, .empty, .error, .success {
	text-align: center;
	padding: 40px 0;
	font-size: 18px;
}

.empty { 
	color: var(--muted); 
	padding: 60px 0; 
	border: 1px dashed var(--border); 
	border-radius: 12px; 
}

.error { color: var(--error); }
.success { color: var(--accent); }

/* Content Sections */
.section-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 24px;
	color: var(--text);
}

.content {
	line-height: 1.7;
	margin-bottom: 32px;
}

.content p {
	margin-bottom: 20px;
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 16px;
}

/* Better spacing for paragraphs that follow images */
.content img + p,
#articleBody img + p {
	margin-top: 0;
	clear: none;
	min-height: 150px; /* Prevent text from wrapping too tightly around image */
}

/* Ensure paragraphs after images have proper spacing */
.content .product-image + p,
.content .solution-image + p,
#articleBody .product-image + p,
#articleBody .solution-image + p {
	margin-top: 0;
	min-height: 150px;
}

.content h2 {
	margin-top: 48px;
	margin-bottom: 24px;
	clear: both; /* Clear any floated images */
}

.content h3 {
	margin-top: 36px;
	margin-bottom: 20px;
	clear: both; /* Clear any floated images */
}

.content h4 {
	margin-top: 28px;
	margin-bottom: 16px;
	clear: both; /* Clear any floated images */
}

/* Better spacing for article sections */
.content article {
	margin-bottom: 48px;
}

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

/* Improve spacing between headings and following content */
.content h2 + p,
.content h3 + p,
.content h4 + p,
#articleBody h2 + p,
#articleBody h3 + p,
#articleBody h4 + p {
	margin-top: 0;
}

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

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

/* Improve spacing for lists that follow images */
.content img + ul,
.content img + ol,
#articleBody img + ul,
#articleBody img + ol {
	margin-top: 24px;
	clear: both;
}

/* Ensure lists don't wrap too close to floated images */
.content .product-image ~ ul,
.content .product-image ~ ol,
.content .solution-image ~ ul,
.content .solution-image ~ ol,
#articleBody .product-image ~ ul,
#articleBody .product-image ~ ol,
#articleBody .solution-image ~ ul,
#articleBody .solution-image ~ ol {
	margin-left: 0;
	padding-left: 24px;
}

/* Add extra spacing when lists follow paragraphs that wrap around images */
.content p:has(+ ul, + ol):has(.product-image),
.content p:has(+ ul, + ol):has(.solution-image),
.content .product-image + p + ul,
.content .product-image + p + ol,
.content .solution-image + p + ul,
.content .solution-image + p + ol,
#articleBody .product-image + p + ul,
#articleBody .product-image + p + ol,
#articleBody .solution-image + p + ul,
#articleBody .solution-image + p + ol {
	margin-top: 24px;
	clear: both;
}

.articles-section {
	margin-top: 40px;
	margin-bottom: 60px;
}

.articles-grid { 
	display: grid; 
	grid-template-columns: repeat(1, minmax(0, 1fr)); 
	gap: 16px; 
}

@media (min-width: 640px) { .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Persona Specific Styles */
.persona-header {
	display: flex;
	align-items: flex-start;  /* Changed from flex-start to center */
	gap: 20px;
}

.persona-info h3 { 
	font-size: 20px; 
	font-weight: 700; 
	margin: 0 0 6px; 
	color: var(--text);
	line-height: 1.2;
}

.persona-info h1 { 
	font-size: 36px; 
	font-weight: 800; 
	margin: 0 0 12px; 
	color: var(--text);
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.persona-age { 
	color: var(--text-secondary); 
	font-size: 15px; 
	font-weight: 600;
	display: inline-block;
}

.persona-bio { 
	color: var(--text); 
	font-size: 16px; 
	line-height: 1.6; 
	opacity: 0.95;
	flex-grow: 1;
	font-weight: 400;
}

.persona-expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.expertise-badge {
	background: var(--accent-light);
	color: var(--accent);
	padding: 4px 12px;
	border-radius: 16px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid var(--accent);
}

.expertise-badge:hover {
	background: var(--accent);
	color: var(--text-on-accent);
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Article Content */
.article-title { 
	font-size: 16px; 
	font-weight: 700; 
	line-height: 1.4; 
	color: var(--text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-title:hover { color: var(--accent); }

.article-meta { 
	display: flex; 
	align-items: center; 
	gap: 10px; 
	color: var(--muted); 
	font-size: 12px; 
}

.article-date {
	color: var(--muted);
	font-size: 12px;
}

/* Card Content Styles */
.card .title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.4;
}

.card .title a {
	color: var(--text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.card .title a:hover { color: var(--accent); }

.card .meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.card .meta > div:last-child {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.card .meta > div:last-child > div:first-child {
	font-weight: 600;
	color: var(--text);
	font-size: 14px;
}

.card .excerpt {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 15px;
}

/* Article Card Specific Styles (Homepage) */
.article-card-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.article-card-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--accent-dark));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(var(--accent-rgb, 16, 185, 129), 0.02) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.article-card-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
	border-color: var(--accent);
}

.article-card-item:hover::before {
	transform: scaleX(1);
}

.article-card-item:hover::after {
	opacity: 1;
}

.article-card-header {
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

.article-card-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	position: relative;
}

.article-card-title a {
	color: var(--text);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.article-card-title a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), var(--accent-dark));
	transition: width 0.3s ease;
}

.article-card-title a:hover {
	color: var(--accent);
	transform: translateX(2px);
}

.article-card-title a:hover::after {
	width: 100%;
}

.article-card-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--border);
	position: relative;
	z-index: 1;
}

.article-card-author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

.article-author-name {
	font-weight: 600;
	color: var(--text);
	font-size: 14px;
	line-height: 1.2;
	transition: color 0.2s ease;
}

.article-card-item:hover .article-author-name {
	color: var(--accent);
}

.article-publish-date {
	font-size: 13px;
	color: var(--muted);
	font-weight: 400;
	line-height: 1.2;
}

.article-card-excerpt {
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: auto;
	font-size: 15px;
	flex-grow: 1;
	margin-top: 0;
	padding-bottom: 24px;
	position: relative;
	z-index: 1;
}

/* Pros and Cons */
.pros-cons {
	display: flex;
	gap: 20px;
	margin: 32px 0 24px 0;
	flex-wrap: wrap;
	border-top: 1px solid var(--border);
	padding-top: 20px;
	width: 100%;
	clear: both; /* Clear floats from images above */
}

.pros, .cons {
	flex: 1;
	min-width: 280px;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: var(--card-bg);
	position: relative;
}

.pros { 
	border-left: 4px solid var(--success); 
}

.pros::before {
	content: "✓";
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 18px;
	color: var(--success);
	font-weight: bold;
}

.pros strong { 
	color: var(--success); 
	font-size: 16px;
}

.cons { 
	border-left: 4px solid var(--error); 
}

.cons::before {
	content: "✗";
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 18px;
	color: var(--error);
	font-weight: bold;
}

.cons strong { 
	color: var(--error); 
	font-size: 16px;
}
.cons strong { color: var(--error); }

.pros ul, .cons ul {
	margin: 8px 0 0 0;
	padding-left: 20px;
}

.pros li, .cons li {
	margin: 4px 0;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.5;
}

/* Ensure pros-cons sections clear any floated images above */
.content .product-image ~ .pros-cons,
.content .solution-image ~ .pros-cons,
#articleBody .product-image ~ .pros-cons,
#articleBody .solution-image ~ .pros-cons {
	clear: both;
	margin-top: 32px;
}

/* Related Articles */
.related-articles-section {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.related-articles-section h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text);
}

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

.related-card h4 {
	margin: 0 0 0.75rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
	flex-grow: 1;
}

.related-card h4 a {
	color: var(--text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.related-card h4 a:hover { color: var(--accent); }

.related-meta {
	display: flex;
	gap: 1rem;
	font-size: 0.875rem;
	color: var(--muted);
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid var(--border);
}

.related-meta .author {
	font-weight: 500;
	color: var(--accent);
}

/* Generator Page Styles */
.row {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.row label {
	font-weight: 600;
	color: var(--text);
	font-size: 14px;
}

.row select, .row input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border);
	border-radius: 12px;
	font-size: 15px;
	background: var(--card);
	color: var(--text);
	transition: all 0.3s ease;
}

.row select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 16px;
}

.row select:focus, .row input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-light);
}

.row select:hover, .row input:hover { border-color: var(--accent); }

.small {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.5;
	padding: 8px 0;
}

.list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0;
}

.generation-form {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.generation-form.hidden { display: none; }

/* Article Ideas Styling */
#personaIdeas {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	margin-top: 16px;
}

#personaIdeas .small {
	font-weight: 600;
	color: var(--text);
	margin-bottom: 12px;
}

#personaIdeas .badge {
	margin-bottom: 8px;
	background: var(--card);
	border: 1px solid var(--accent);
	color: var(--accent);
}

#personaIdeas .badge:hover {
	background: var(--accent);
	color: var(--text-on-accent);
}

#ideasCard { margin-top: 24px; }

#ideasCard h3 {
	color: var(--text);
	margin-bottom: 16px;
}

#ideasList label {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	transition: all 0.2s ease;
	cursor: pointer;
}

#ideasList label:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow);
}

#ideasList input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--accent);
}

#ideasList .small {
	color: var(--text-secondary);
	margin-top: 4px;
}

#ideasToast {
	background: var(--accent-light);
	border: 1px solid var(--accent);
	color: var(--accent);
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
}

#categoriesList {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	margin: 16px 0;
}

#categoriesList .badge {
	margin-bottom: 8px;
	margin-right: 8px;
	background: var(--card);
	border: 2px solid var(--accent);
	color: var(--accent);
	font-weight: 600;
}

#categoriesList .badge:hover {
	background: var(--accent);
	color: var(--text-on-accent);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

#categoriesList .badge.selected {
	background: var(--accent);
	color: var(--text-on-accent);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

#personaMeta {
	background: var(--accent-light);
	border: 1px solid var(--accent);
	border-radius: 8px;
	padding: 12px 16px;
	margin: 12px 0;
	font-size: 14px;
	color: var(--accent);
	font-weight: 500;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-xl { border-radius: 20px; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in { animation: fadeIn 0.6s ease-out; }

/* Text Highlighting for Important Sentences */
.highlight {
	background: linear-gradient(180deg, transparent 60%, rgba(var(--highlight-rgb, 255, 215, 0), 0.15) 60%);
	padding: 2px 0;
	display: inline;
	line-height: 1.8;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	transition: background 0.3s ease;
}

/* Tables and Rich Content */
.content .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
}

.content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 520px; /* enable horizontal scroll on small screens */
    font-size: 14px;
}

.content thead th {
    background: var(--card);
    color: var(--text);
    font-weight: 700;
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1;
}

.content tbody td {
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    word-break: break-word;
    hyphens: auto;
}

/* Ensure identical cell box model for headers and cells */
.content th, .content td {
    padding: 10px 12px;
    text-align: left;
}

.content tbody tr:nth-child(even) td { background: rgba(0,0,0,0.02); }

.content tbody tr:hover td {
    background: var(--accent-light);
}

.content td.num, .content th.num { text-align: right; }
.content td.center, .content th.center { text-align: center; }

/* Make first column standout and left-aligned by default */
.content table th:first-child, .content table td:first-child {
    font-weight: 600;
    text-align: left;
}

.content table caption {
    caption-side: bottom;
    color: var(--muted);
    font-size: 13px;
    padding: 10px 12px;
}

/* Comparison lists, callouts, and code */
.content blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 4px solid var(--accent);
    background: var(--accent-light);
    color: var(--text);
    border-radius: 8px;
}

.content pre, .content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.content pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 14px 16px;
    border-radius: 10px;
    overflow: auto;
    border: 1px solid #1f2937;
}

.content code:not(pre code) {
    background: var(--accent-light);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid var(--accent);
    font-size: 90%;
}

.content .callout {
    border: 1px solid var(--border);
    background: var(--card);
    border-left: 4px solid var(--accent);
    padding: 12px 16px;
    border-radius: 10px;
    margin: 16px 0;
}

.content .badge-soft {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* Ensure images in tables do not overflow */
.content table img {
    max-width: 120px;
    height: auto;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.highlight:hover {
	background: linear-gradient(180deg, transparent 60%, rgba(var(--highlight-rgb, 255, 215, 0), 0.25) 60%);
}

/* Alternative highlighting styles using accent color */
.key-point {
	background: linear-gradient(180deg, transparent 60%, var(--accent-light) 60%);
	padding: 2px 0;
	display: inline;
	line-height: 1.8;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	font-weight: 500;
}

/* Clear floats */
section:after, article:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
	/* Mobile Navigation */
	.nav-toggle {
		display: block;
	}
	
	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--card);
		border-top: 1px solid var(--border);
		box-shadow: var(--shadow-lg);
		flex-direction: column;
		padding: 20px;
		gap: 8px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	
	.nav-links.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	
	.nav-link {
		width: 100%;
		justify-content: flex-start;
		padding: 16px 20px;
		border-radius: 12px;
		font-size: 16px;
		min-height: 48px;
		height: 48px;
		box-sizing: border-box;
	}
	
	.nav-link.active {
		font-size: 16px;
		padding: 16px 20px;
		min-height: 48px;
		height: 48px;
		box-sizing: border-box;
	}
	
	.nav-title {
		font-size: 16px;
	}
	
	.nav-header {
		padding: 12px 16px;
	}
	
	/* Typography */
	h1 { font-size: 28px; }
	h2 { font-size: 22px; }
	
	/* Layout */
	.container { padding: 0 16px; }
	.card { padding: 20px; }
	
	/* Persona Cards */
	.persona-card { padding: 20px; gap: 16px; }
	.persona-header { flex-direction: column; text-align: center; padding: 24px; }
	.persona-info h1 { font-size: 24px; }
	
	/* Expertise badges */
	.expertise-badge {
		font-size: 11px;
		padding: 3px 10px;
	}
	
	/* Read more button */
	.read-more-btn {
		font-size: 13px;
		padding: 8px 16px;
		width: 100%;
		text-align: center;
	}
	
	/* Product Images */
	.product-image, .solution-image {
		max-width: 150px;
		width: 150px;
		height: 120px;
		margin: 0 auto 20px auto;
		float: none;
		display: block;
		clear: both;
	}
	
	/* Ensure lists after images have proper spacing on mobile */
	.content .product-image + ul,
	.content .product-image + ol,
	.content .solution-image + ul,
	.content .solution-image + ol,
	#articleBody .product-image + ul,
	#articleBody .product-image + ol,
	#articleBody .solution-image + ul,
	#articleBody .solution-image + ol {
		margin-top: 20px;
		clear: both;
	}
	
	/* Ensure pros-cons sections clear images on mobile */
	.content .product-image ~ .pros-cons,
	.content .solution-image ~ .pros-cons,
	#articleBody .product-image ~ .pros-cons,
	#articleBody .solution-image ~ .pros-cons {
		clear: both;
		margin-top: 24px;
	}
	
	/* Pros and Cons */
	.pros-cons { 
		flex-direction: column; 
		gap: 16px; 
		margin: 24px 0 20px 0;
	}
	
	.pros, .cons {
		min-width: unset;
		padding: 16px;
	}
	
	/* Related Articles */
	.related-grid { grid-template-columns: 1fr; gap: 1rem; }
	.related-card { padding: 1rem; }
	.related-articles-section h3 { font-size: 1.25rem; }
	
	/* Article Cards - Homepage */
	.article-card-title {
		font-size: 20px;
	}
	
	.article-card-meta {
		padding-bottom: 12px;
		margin-bottom: 12px;
	}
	
	.article-author-name {
		font-size: 13px;
	}
	
	.article-publish-date {
		font-size: 12px;
	}
	
	.article-card-excerpt {
		font-size: 14px;
		padding-bottom: 16px;
	}
	
	/* Tables - Mobile Responsive */
	/* Ensure table-responsive wrapper works */
	.table-responsive,
	.content .table-responsive {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 16px 0;
		display: block;
		border: 1px solid var(--border);
		border-radius: 12px;
		background: var(--card);
	}
	
	/* Tables inside .table-responsive maintain table display */
	.table-responsive table,
	.content .table-responsive table {
		display: table;
		width: 100%;
		min-width: 520px;
		margin: 0;
	}
	
	/* Logs table inside table-responsive */
	.table-responsive .logs-table {
		min-width: 520px;
	}
	
	/* Standalone tables need scrollable wrapper - wrap parent containers */
	.logs-container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
	}
	
	/* Cookie table wrapper */
	.cookie-table-wrapper {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 16px 0;
		border: 1px solid var(--border);
		border-radius: 12px;
		background: var(--card);
	}
	
	.cookie-table-wrapper .cookie-table {
		margin: 0;
	}
	
	/* Tables that are direct children of containers */
	.container > table,
	.logs-container > table,
	#logs-content > table {
		max-width: 100%;
	}
	
	/* Ensure tables don't break out of viewport */
	.cookie-table,
	.logs-table {
		width: 100%;
		min-width: 520px;
		max-width: none;
	}
	
	/* Tables in .content - Mobile: Horizontal scroll with sticky first column */
	.content .table-responsive {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 16px 0;
		display: block;
		border: 1px solid var(--border);
		border-radius: 12px;
		background: var(--card);
		position: relative;
	}
	
	/* Add scroll indicator */
	.content .table-responsive::after {
		content: '→';
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 24px;
		color: var(--accent);
		opacity: 0.6;
		pointer-events: none;
		z-index: 10;
		animation: pulse-scroll 2s infinite;
	}
	
	/* Hide scroll indicator when scrolled */
	.content .table-responsive.scrolled::after {
		display: none;
	}
	
	@keyframes pulse-scroll {
		0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); }
		50% { opacity: 0.8; transform: translateY(-50%) translateX(5px); }
	}
	
	/* Tables inside .table-responsive maintain table display */
	.content .table-responsive table {
		display: table;
		width: 100%;
		min-width: 520px;
		margin: 0;
		border-collapse: collapse;
	}
	
	/* Make first column sticky on mobile */
	.content .table-responsive table th:first-child,
	.content .table-responsive table td:first-child {
		position: sticky;
		left: 0;
		background: var(--card);
		z-index: 5;
		box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
		min-width: 120px;
		max-width: 150px;
		width: 150px;
		font-weight: 600;
		padding-left: 12px;
		padding-right: 16px;
		border-right: 1px solid var(--border);
	}
	
	/* Ensure second column doesn't overlap with sticky first column */
	.content .table-responsive table th:nth-child(2),
	.content .table-responsive table td:nth-child(2) {
		padding-left: 16px;
		min-width: 100px;
	}
	
	/* Header row styling */
	.content .table-responsive table thead th:first-child {
		background: var(--accent-light);
		z-index: 6;
	}
	
	/* Regular table cells */
	.content .table-responsive table th,
	.content .table-responsive table td {
		padding: 10px 12px;
		white-space: nowrap;
		font-size: 13px;
		border-bottom: 1px solid var(--border);
		text-align: left;
		vertical-align: top;
	}
	
	/* Prevent text overflow in cells (except first and last) */
	.content .table-responsive table th:not(:first-child):not(:last-child),
	.content .table-responsive table td:not(:first-child):not(:last-child) {
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 180px;
	}
	
	/* Allow Notes/last column to wrap */
	.content .table-responsive table td:last-child,
	.content .table-responsive table th:last-child {
		white-space: normal;
		min-width: 150px;
		max-width: 250px;
		word-break: break-word;
		text-overflow: unset;
		overflow: visible;
	}
	
	/* Ensure first column text doesn't overflow */
	.content .table-responsive table th:first-child,
	.content .table-responsive table td:first-child {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	/* Header styling */
	.content .table-responsive table thead th {
		background: var(--accent-light);
		color: var(--text);
		font-weight: 700;
		border-bottom: 2px solid var(--border);
		position: sticky;
		top: 0;
		z-index: 4;
		padding: 12px;
	}
	
	/* Row hover effect */
	.content .table-responsive table tbody tr:hover td {
		background: var(--accent-light);
	}
	
	.content .table-responsive table tbody tr:nth-child(even) td {
		background: rgba(0, 0, 0, 0.02);
	}
	
	.content .table-responsive table tbody tr:nth-child(even):hover td {
		background: var(--accent-light);
	}
	
	/* Ensure first column maintains hover state */
	.content .table-responsive table tbody tr:hover td:first-child {
		background: var(--accent-light);
	}
	
	.content .table-responsive table tbody tr:nth-child(even) td:first-child {
		background: var(--card);
	}
	
	.content .table-responsive table tbody tr:nth-child(even):hover td:first-child {
		background: var(--accent-light);
	}
	
	/* Reduce padding on mobile for tables */
	.content th,
	.content td,
	.cookie-table th,
	.cookie-table td,
	.logs-table th,
	.logs-table td {
		padding: 8px 10px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	/* Extra small mobile devices */
	.nav-header {
		padding: 10px 12px;
	}
	
	.nav-title {
		font-size: 14px;
	}
	
	.nav-links {
		padding: 16px;
	}
	
	.nav-link {
		padding: 14px 16px;
		font-size: 15px;
		min-height: 44px;
		height: 44px;
		box-sizing: border-box;
	}
	
	.nav-link.active {
		font-size: 15px;
		padding: 14px 16px;
		min-height: 44px;
		height: 44px;
		box-sizing: border-box;
		transform: none;
	}
	
	.container { 
		padding: 0 12px; 
	}
	
	.card { 
		padding: 16px; 
	}
	
	h1 { 
		font-size: 24px; 
	}
	
	h2 { 
		font-size: 20px; 
	}
	
	.product-image, .solution-image {
		max-width: 120px;
		width: 120px;
		height: 100px;
		border-radius: 6px;
	}
	
	.persona-header { 
		padding: 16px; 
	}
	
	.persona-card { 
		padding: 16px; 
	}
	
	/* Article Cards - Extra Small Screens */
	.article-card-title {
		font-size: 18px;
	}
	
	.article-card-excerpt {
		font-size: 13px;
		line-height: 1.6;
	}
}

/* Author Info Styles */
.author-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 24px;
}

.author-link {
	display: flex;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	color: var(--text);
	transition: all 0.2s ease;
	padding: 8px 12px;
	border-radius: 8px;
}

.author-link:hover {
	background: var(--accent-light);
	color: var(--accent);
	transform: translateY(-1px);
}

.author-avatar {
	display: none; /* Remove circular avatar */
}

.author-initials {
	display: none; /* Remove circular initials */
}

.author-name {
	font-weight: 600;
	font-size: 14px;
}

.publish-date {
	color: var(--text-secondary);
	font-size: 13px;
}

@media (max-width: 768px) {
	.author-info {
		flex-direction: column;
		gap: 8px;
	}
	
	.author-link {
		padding: 6px 10px;
	}
	
	.author-avatar, .author-initials {
		display: none; /* Remove on mobile too */
	}
	
	.author-name {
		font-size: 13px;
	}
	
	.publish-date {
		font-size: 12px;
	}
}