
.carousel-inner {
  display: flex;
  transition: transform 0.3s ease-in-out;
  height: 250px; /* hauteur fixe par défaut */
}

.carousel-slide img {
  width: auto;
  max-width: 100%;
  height: 100%; /* toutes les images prennent la même hauteur */
  object-fit: cover; /* recadre pour éviter les blancs */
}

.carousel-pagination {
  text-align: center;
  margin-top: 8px;
}

.carousel-pagination .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.carousel-pagination .dot.active {
  background-color: #333;
}

p.photo-credit {
    position: absolute;
    bottom: 0px;
    right: 10px;
    color: white;
    padding: 10px;
    background: var(--primary-color);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
}
