#puzzlearte-quiz {
	max-width: 710px;
	margin: 40px auto;
	text-align: center;
}

.quiz-step h3 {
	font-family: "Montserrat", Sans-serif;
	font-size: 32px;
	margin-bottom: 40px;
}

/* CONTENITORE TASSELLI */
.quiz-step {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	flex-direction: column;
}

/* inner */
.quiz-step-inner {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, 1fr);
	gap: 0px;
	justify-items: center;
}

/* Centra ultimo elemento se dispari */
.quiz-step-inner .quiz-piece:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	justify-self: center;
}

/* PULIZIA BUTTON */
.quiz-piece {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 350px;
	transition: box-shadow 0.25s ease, filter 0.25s ease;
	position: relative;
	height: 350px
}

/* IMMAGINE TASSELO */
.quiz-piece-image {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 350px;
	width: 100%;
	filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
	transition: filter 0.25s ease;
}

/* LABEL SOTTO */
.quiz-piece-label {
	/* background: #f3e7d3;
	padding: 18px;
	font-family: "Playfair Display", serif;
	font-size: 20px;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08); */
	position: relative;
	bottom: 150px;
	padding: 25px 30px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.quiz-piece-label h4{
	font-size: 25px !important;
	margin: 0px 0px 5px;
}

.quiz-piece-desc{
	line-height: 1.1;
	  font-size: 13px;
	  display: block;
}

/* HOVER: solo leggera luce */
.quiz-piece:hover .quiz-piece-image {
	filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

/* CLICK EFFETTO PRESSIONE */
.quiz-piece:active .quiz-piece-image {
	filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

/* STATO SELEZIONATO */
.quiz-piece.active .quiz-piece-image {
	filter:
		drop-shadow(0 8px 16px rgba(0,0,0,0.15))
		drop-shadow(0 0 18px rgba(201,162,39,0.45));
}

.quiz-results-container{
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-items: center;
}
.quiz-final-products{
	display: grid;
	 width: 100%;
	grid-template-columns: repeat(3, 1fr);
	gap: 0px;
}

.quiz-final-phrase p{
	line-height: 1;
	margin: 0px;
}

.quiz-product{
	width: 220px;
}

.stepNumber{
	font-family: "Montserrat", Sans-serif;
	margin-top: 30px;
	font-size: 28px;
	font-weight: bold;
}