/* Keep images responsive and preserve aspect ratio */
.cwt-carousel-img {
  height: auto;
  max-height: 550px;     /* matches your source image height */
  object-fit: cover;     /* crops gracefully on small screens if needed */
}

/* Full-width carousel with a reasonable max height */
#cwtCarousel {
  max-height: 550px;
  overflow: hidden;
}

/* Caption styling (text on top of image) */
.cwt-carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  text-align: left;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
}

.cwt-carousel-caption h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cwt-carousel-caption h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 400;
  opacity: 0.95;
}
