.jeuxGrille {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px 0;
}
.jeuCarte {
	display: block;
	flex: 1 1 220px;
	max-width: 260px;
	background-color: #fff;
	border: 1px solid #e2e5e8;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 2px 6px rgba(91, 33, 182, 0.12);
	transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
	color: #333 !important;
	text-decoration: none !important;
	font-weight: normal !important;
}
.jeuCarte:hover, .jeuCarte:focus {
	transform: translateY(-4px);
	box-shadow: 0 6px 14px rgba(91, 33, 182, 0.22);
	text-decoration: none !important;
}
.jeuVisuel {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f4effc;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
}
.jeuVisuel img {
	max-height: 100px;
	max-width: 100%;
}
.jeuVisuelAnagramme {
	gap: 4px;
}
.jeuVisuelAnagramme span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background-color: #5B21B6;
	color: #fff;
	font-weight: bold;
	font-size: 1.1em;
	border-radius: 4px;
}
.jeuVisuelAnagramme span:nth-child(2) {
	transform: rotate(-8deg);
}
.jeuVisuelAnagramme span:nth-child(4) {
	transform: rotate(6deg);
}
.jeuCarte h3 {
	margin: 0 0 8px;
	color: #5B21B6;
	font-size: 1.2em;
}
.jeuCarte p {
	margin: 0;
	font-size: 0.95em;
	line-height: 1.35em;
}
.jeuCarteJouer {
	display: inline-block;
	margin-top: 12px;
	padding: 6px 16px;
	background-color: #5B21B6;
	color: #fff !important;
	border-radius: 5px;
	font-size: 0.9em;
	font-weight: bold !important;
}
.jeuCarte:hover .jeuCarteJouer {
	filter: brightness(0.9);
}
