.carousel {
  position: relative;
  max-width: 900px;
  margin: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 12px 0;
}

.carousel-slide {
  display: none;
  text-align: center;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 70vh;
}

.carousel-prev,
.carousel-next {
  flex: 0 0 auto;
  background: #e2e2e2;
  border: none;
  color: #444;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  align-self: stretch;
  padding: 0 18px;
  border-radius: 4px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #d2d2d2;
}

.carousel-slides {
  flex: 1 1 auto;
  min-width: 0;
}

.carousel-counter {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: #666;
}
