/* Keep images responsive and preserve aspect ratio */
.cwt-carousel-img {
  display: block;
  width: 100%;
  max-width: 920px;   /* cap */
  height: 200px;      /* lock height */
  margin: 0 auto;     /* center in the carousel */
  object-fit: cover;
}

/* Keep the carousel itself the same width as the images */
#cwtCarousel {
  max-width: 920px;
  margin: 0 auto;      /* center the carousel */
  height: 200px;       /* lock height */
  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;
}
