/* ============================================
   ARTICLE - LAVORO BUONO CASE STUDY
   ============================================ */

/* Article Container */
article {
	max-width: 900px;
	margin: 0 auto;
	padding: var(--spacing-4xl) 0;
}

/* Article Sections */
article section {
	margin-bottom: var(--spacing-3xl);
}

article section:last-child {
	margin-bottom: 0;
}

/* Section Headings */
article h2 {
	font-size: var(--text-6xl);
	margin-bottom: var(--spacing-lg);
	letter-spacing: -0.5px;
}

article h3 {
	font-size: var(--text-3xl);
	margin-bottom: var(--spacing-md);
	margin-top: var(--spacing-xl);
	color: var(--color-text);
}

article h3:first-of-type {
	margin-top: 0;
}

/* Paragraphs */
article p {
	font-size: var(--text-xl);
	color: var(--color-text-muted);
	line-height: 1.8;
	margin-bottom: var(--spacing-md);
}

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

/* Links in Article */
article a {
	font-weight: var(--font-weight-medium);
}

/* Lists in Article */
article ul {
	list-style: disc;
	padding-left: var(--spacing-lg);
	margin: var(--spacing-sm) 0;
}

article ul li {
	font-size: var(--text-base);
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: var(--spacing-xs);
}

/* Stats Section - 3 Column Layout */
#stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-xl);
	padding: var(--spacing-xl) 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.stat-column {
	display: flex;
	flex-direction: column;
}

.stat-column h4 {
	font-size: var(--text-sm);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: var(--spacing-md);
}

.stat-column ul {
	list-style: disc;
	padding-left: var(--spacing-md);
}

.stat-column ul li {
	font-size: var(--text-base);
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: var(--spacing-xs);
}

.stat-column p {
	font-size: var(--text-base);
	color: var(--color-text-muted);
}

/* Overview and Outcome Sections */
#overview,
#outcome {
	padding: var(--spacing-md) 0;
}

#overview p,
#outcome p {
	margin-bottom: var(--spacing-md);
}

/* CTA Buttons in Article */
#overview a button,
#outcome a button {
	margin-top: var(--spacing-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
	article {
		padding: var(--spacing-2xl) 0;
	}

	article section {
		margin-bottom: var(--spacing-2xl);
	}

	article h2 {
		font-size: var(--text-4xl);
	}

	article h3 {
		font-size: var(--text-2xl);
	}

	article p {
		font-size: var(--text-base);
	}

	/* Stats Section - Single Column on Mobile */
	#stats {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
}
