
.pageIntro {
	text-align: center;
	font-size: 125%;
}

/* ─── Grille de cartes profil (étape 1) ──────────────────────── */
.profileGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}
.profileCard {
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.profileCard:hover { border-color: #1976d2; box-shadow: 0 2px 8px rgba(25,118,210,0.2); }
.profileCardDisabled { opacity: 0.55; }
.profileCardIcon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.profileCardTitle { margin: 0.5rem 0; font-size: 1.1rem; }
.profileCardSubtitle { color: #666; font-size: 0.9rem; margin: 0.5rem 0 1rem; flex: 1; }
.profileCardButton {
	background: #1976d2;
	color: #fff;
	border: none;
	padding: 0.6rem 1.2rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.95rem;
}
.profileCardButton:hover { background: #1565c0; }
.profileCardDisabled .profileCardButton { background: #999; cursor: not-allowed; }

