/**
 * Cabeçalho de seção — título e lead reutilizáveis em todas as seções.
 *
 * A seção pai define as vars de cor para adaptar ao fundo:
 *   --section-title-color  (default: --color-text)
 *   --section-lead-color   (default: --color-text-muted)
 *
 * Uso: em qualquer seção, adicionar <header class="game-section-header"> com
 * .game-section-title e .game-section-lead — sem duplicar tipografia.
 */

.game-section-header {
	margin-bottom: var(--space-64);
}

.game-section-title {
	font-family: var(--font-heading);
	font-size: var(--font-size-48);
	font-weight: var(--font-weight-extrabold);
	color: var(--section-title-color, var(--color-text));
	line-height: var(--line-height-tight);
	margin: 0 0 var(--space-16);
}

.game-section-lead {
	font-family: var(--font-body);
	font-size: var(--font-size-20);
	color: var(--section-lead-color, var(--color-text-muted));
	line-height: var(--line-height-base);
	margin: 0;
	max-width: 36ch;
}

@media (max-width: 48rem) {
	.game-section-header {
		margin-bottom: var(--space-32);
	}

	.game-section-title {
		font-size: var(--font-size-32);
	}

	.game-section-lead {
		font-size: var(--font-size-16);
	}
}
