.carousel {
	width: 100%;
	margin-top: 65px; /* espace pour la navbar fixe */
	overflow: hidden;
}

/* Assure que chaque item utilise un conteneur centré */
.carousel.carousel-slider .carousel-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	min-height: 200px; /* hauteur minimale sur petits écrans */
}

/* Images entièrement visibles, responsive */
.carousel-item img {
	max-width: 100%;
	max-height: 60vh; /* limite la hauteur à 60% de la fenêtre */
	width: auto;
	height: auto;
	object-fit: contain; /* affiche l'image entièrement sans la rognier */
	display: block;
}

@media (max-width: 600px) {
	.carousel.carousel-slider .carousel-item {
		min-height: 140px;
	}
	.carousel-item img {
		max-height: 40vh;
	}
}