.block-carousel-universal {
  margin: 2.5rem 0;
  padding: 0 1vw;
  width: 100%;
  background: none;
  position: relative;
  box-sizing: border-box;
}

.block-carousel-universal .carousel-block-header {
  margin-bottom: 1.2rem;
}

.block-carousel-universal .swiper {
  width: 100%;
  padding-bottom: 18px;
}

.block-carousel-universal .swiper-wrapper {
  align-items: stretch;
}

.block-carousel-universal .swiper-slide {
  /* Remove all hardcoded widths/flex! */
  background: #fef8f0;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  margin: 0 12px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}
.carousel-block-title,
.carousel-block-header h2 {
  font-size: 1.28rem; /* smaller than 2rem, adjust as needed */
  color: #fffefa;     /* or #fef8f0 for more warmth, but #fff or #fefefa is max contrast */
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 0.3em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15); /* optional for readability on image */
}
@media (max-width: 900px) {
  .block-carousel-universal .swiper-slide {
    margin: 0 5px !important;
  }
    .carousel-block-title,
  .carousel-block-header h2 {
    font-size: 1.05rem;
    margin-bottom: 0.2em;
  }
}

.block-carousel-universal .carousel-image-wrap {
  aspect-ratio: 16/9 !important;
  width: 100%;
  overflow: hidden;
  background: #eee;
}

.block-carousel-universal .carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9 !important;
  background: #222;
  transition: transform 0.25s cubic-bezier(.43,1.29,.53,.97);
}

.block-carousel-universal .swiper-slide:hover .carousel-image {
  transform: scale(1.035) rotate(-0.1deg);
}

/* Hide title bar if needed, or keep for accessibility */
.block-carousel-universal .carousel-slide-title {
  display: none;
}
