/**
 * Product-Led SEO - Post-Specific Styles
 *
 * Custom styles for the Product-Led SEO thought leadership blog post.
 * Extends from-seo-to-geo.css for shared components like tldr-block,
 * comparison-table, key-insight, experience-card, paradigm-shift,
 * checklist-block, and action-block.
 *
 * Components included:
 * - Case study cards
 * - Forecast timeline
 *
 * @package AgenticWP
 */

/* ==========================================================================
   Case Study Cards
   ========================================================================== */

.case-study-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 40px 0;
}

.case-study-card {
	padding: 32px;
	background: #111827;
	border: 1px solid var(--line);
	border-radius: 16px;
}

.case-study-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.case-study-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--ink);
	margin: 0;
}

.case-study-tag {
	display: inline-block;
	padding: 4px 12px;
	background: var(--accent-weak);
	color: var(--accent);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 4px;
	flex-shrink: 0;
}

.case-study-text {
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	margin: 0 0 24px;
}

.case-study-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.case-study-metric {
	text-align: center;
}

.case-study-metric-value {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
	line-height: 1.2;
	margin-bottom: 6px;
}

.case-study-metric-label {
	display: block;
	font-size: 13px;
	line-height: 1.4;
	color: var(--muted);
}

/* ==========================================================================
   Forecast Timeline
   ========================================================================== */

.forecast-timeline {
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.forecast-item {
	display: flex;
	gap: 24px;
	padding: 32px;
	background: #111827;
	border: 1px solid var(--line);
	border-radius: 16px;
	align-items: flex-start;
}

.forecast-year {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent) 0%, #1a2d6d 100%);
	color: #0b1220;
	font-size: 18px;
	font-weight: 700;
	border-radius: 12px;
}

.forecast-content {
	flex: 1;
}

.forecast-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 12px;
}

.forecast-text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink);
	margin: 0 0 12px;
}

.forecast-action {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}

.forecast-action strong {
	color: var(--accent);
}

/* ==========================================================================
   Responsive: Tablet (max-width: 900px)
   ========================================================================== */

@media (max-width: 900px) {
	.case-study-metrics {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.case-study-metric {
		display: flex;
		align-items: center;
		gap: 12px;
		text-align: left;
	}

	.case-study-metric-value {
		font-size: 20px;
		margin-bottom: 0;
		flex-shrink: 0;
	}
}

/* ==========================================================================
   Responsive: Mobile (max-width: 640px)
   ========================================================================== */

@media (max-width: 640px) {
	.case-study-card {
		padding: 24px;
	}

	.case-study-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.case-study-title {
		font-size: 18px;
	}

	.case-study-text {
		font-size: 15px;
	}

	.case-study-metric {
		flex-direction: column;
		text-align: center;
	}

	.case-study-metric-value {
		margin-bottom: 4px;
	}

	.forecast-item {
		flex-direction: column;
		gap: 16px;
		padding: 24px;
	}

	.forecast-year {
		width: 52px;
		height: 52px;
		font-size: 16px;
	}

	.forecast-title {
		font-size: 17px;
	}
}

/* ==========================================================================
   Accessibility: Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.case-study-card,
	.forecast-item {
		transition: none;
	}
}
