/* DP Lesson Header */

.dp-lesson-header {
	margin-bottom: var(--dp-space-2xl, 3rem);
}

.dp-lesson-header__title {
	font-family: var(--dp-font-display, 'Plus Jakarta Sans', sans-serif);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--dp-navy, #10254C);
	margin-bottom: 0.75rem;
}

.dp-lesson-header__lead {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--dp-slate, #64748B);
	max-width: 640px;
}

/* ---- Hero entrance animations ---- */
@keyframes dpFadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.dp-lesson-header .dp-eyebrow {
	animation: dpFadeUp 0.5s ease-out both;
}

.dp-lesson-header__title {
	animation: dpFadeUp 0.5s ease-out 0.1s both;
}

.dp-lesson-header__lead {
	animation: dpFadeUp 0.5s ease-out 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
	.dp-lesson-header .dp-eyebrow,
	.dp-lesson-header__title,
	.dp-lesson-header__lead {
		animation: none;
	}
}
