/*
 * ÉTUDES — Testimonials
 * L'affichage/masquage est géré par JS inline styles.
 */

.etudes-testimonials {
	background: var(--teal);
	color: var(--white);
	padding: 80px 0;
	text-align: center;
}

.etudes-testimonials h2 {
	color: var(--white);
	font-size: clamp(24px, 3vw, 40px);
	margin-bottom: 40px;
}

.testimonials-wrap {
	display: flex;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

/* === Boutons prev/next === */
.testimonials-btn {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border: none;
	background: transparent;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0.75;
	transition: opacity 0.2s ease;
}

.testimonials-btn:hover {
	opacity: 1;
}

.testimonials-btn svg {
	width: 32px;
	height: 32px;
}

.testimonials-slider {
	flex: 1;
	min-width: 0;
}

.testimonial-quote {
	margin: 0 auto;
	border: none;
	padding: 0;
	max-width: 1200px;
}

.testimonial-quote p {
	font-size: clamp(16px, 2vw, 22px);
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin: 0;
}

/* === Points === */
.testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.testimonial-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	transition: background .25s ease, transform .25s ease;
}

.testimonial-dot.is-active {
	background: var(--white);
	transform: scale(1.2);
}

.testimonial-dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 540px) {
	.etudes-testimonials { padding: 56px 0; }
	.testimonial-quote p { font-size: 16px; }
}
