/* SECTION TEMOIGNAGES */
.testimonials {
	width: 100%;
	background: #ffffff;
	padding: 70px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.testimonials-wrapper {
	max-width: 1100px;
	margin: auto;
}

/* TITRE */
.testimonials h2 {
	font-size: 24px;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	color: #2b2628;
	margin-bottom: 45px;
	text-transform: uppercase;
}

/* GRID */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* BOX TEMOIGNAGE */
.testimonial-box {
	background: linear-gradient(180deg, #ffffff 0%, #ffeaea 100%);
	padding: 25px 25px 28px 25px;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	text-align: center;
}

/* AUTEUR */
.testimonial-author {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	color: #e9302a;
	margin-bottom: 15px;
	font-size: 15px;
}

/* TEXTE */
.testimonial-text {
	font-family: 'Open Sans', sans-serif;
	font-style: italic;
	color: #2b2628;
	font-size: 14px;
	line-height: 1.6;
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media ( max-width : 600px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.testimonials h2 {
		font-size: 20px;
	}
}