/* Slider Témoignages Yolo */
.beekom-slider-temoignages { display: flex; flex-direction: column; gap: 24px; }

.st__nav { display: flex; gap: 10px; justify-content: flex-end; }
.st__btn { width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
	background: var(--c-primary,#5A4DFF); color: #fff; display: inline-flex;
	align-items: center; justify-content: center; transition: opacity .2s, transform .2s; }
.st__btn svg { width: 22px; height: 19px; }
.st__btn:hover:not(:disabled) { transform: scale(1.08); }
.st__btn:disabled { opacity: .3; cursor: default; }

.st__stage { position: relative; overflow: hidden; }

.st__slide {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 32px;
	align-items: stretch;
	opacity: 0;
	transform: translateX(64px) scale(0.98);
	transition: opacity .55s ease, transform .7s cubic-bezier(.22,1,.36,1);
	position: absolute; inset: 0; pointer-events: none;
}
.st__slide.is-active {
	opacity: 1; transform: translateX(0) scale(1);
	position: relative; pointer-events: auto;
}
.st__slide.is-leaving {
	position: absolute; inset: 0; pointer-events: none;
	transition: opacity .55s ease, transform .7s cubic-bezier(.22,1,.36,1);
}

/* Photo */
.st__photo { border-radius: 20px; overflow: hidden; }
.st__photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }

/* Carte quote */
.st__quote-card {
	border-radius: 20px;
	padding: 44px 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;
}
.st__quote-text {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	line-height: 1.7;
	margin: 0;
}
.st__quote-author {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
}

@media (max-width: 768px) {
	.st__slide { grid-template-columns: 1fr; }
	.st__photo { aspect-ratio: 4/3; }
}
