/**
 * Carousel photo en tête de footer (inc/template-tags.php::d4e_footer_photo_carousel()).
 * Premier élément du footer, sans marge (demande utilisateur 2026-09-16).
 */

/* Annule le margin-top existant sur footer.footer (assets/css/cibm-identity.css)
   qui créerait sinon un espace au-dessus du carousel, alors qu'il doit être
   flush avec ce qui précède le footer. */
footer.footer {
	margin-top: 0;
}

.d4e-footer-carousel {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	line-height: 0; /* évite l'espace blanc sous les <img> inline */
}

.d4e-footer-carousel .owl-stage-outer,
.d4e-footer-carousel .owl-stage,
.d4e-footer-carousel .owl-item {
	margin: 0;
}

.d4e-footer-carousel__owl .item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.d4e-footer-carousel__owl .owl-controls {
	display: none;
}