/* Academy — section heads + grid de 3 colunas compartilhados.
   Reusa .ipage-hero, .block-2col, .section-paper, .section-dark, .stage,
   .pill-green, .pill-dark (globais). Escopado em .page-academy. */
.page-academy .acad-secthead { padding-bottom: clamp(1.5rem, 1rem + 1.5vw, 40px); }

/* Grid 3 colunas reutilizável (cards 384×258, r=8). */
.page-academy .acad-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 1.4vw, 20px);
	padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 72px);
}

@media (max-width: 860px) {
	.page-academy .acad-card-grid { grid-template-columns: 1fr; }
}
