/* Ensure banner overlay sits behind text but above the background image */
body.tpl-calmare .inner-bnr {
  position: relative;
}

body.tpl-calmare .inner-bnr::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* Darken mainly where the text sits (center-ish), fade out toward edges */
  background: radial-gradient(
    circle at 50% 45%,
    rgba(0,0,0,0.38) 0%,
    rgba(0,0,0,0.22) 35%,
    rgba(0,0,0,0.00) 70%
  );
}

/* Keep text above overlay */
body.tpl-calmare .inner-bnr .container,
body.tpl-calmare .inner-bnr .textcntr {
  position: relative;
  z-index: 1;
}

/* Heading + subheading contrast */
body.tpl-calmare .small_bnrhd {
  color: #fff;
  text-shadow:
    0 3px 18px rgba(0,0,0,0.65),
    0 1px 2px rgba(0,0,0,0.70);
  -webkit-text-stroke: 1px rgba(0,0,0,0.18); /* subtle edge definition */
}

body.tpl-calmare .small_bnr_text {
  color: #fff;
  text-shadow:
    0 2px 12px rgba(0,0,0,0.55),
    0 1px 2px rgba(0,0,0,0.60);
}

/* Calmare testimonials carousel */
.calmare-testimonials{
  padding: 24px 0 8px;
}

.calmare-testimonial-carousel .testimonial-slide{
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  height: 100%;
}

.calmare-testimonial-carousel .testimonial-quote{
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.calmare-testimonial-carousel .testimonial-name{
  font-family: "Dancing Script", cursive;
  font-size: 22px;
  margin-right: 10px;
}

.calmare-testimonial-carousel .testimonial-cond{
  opacity: 0.75;
  font-size: 14px;
}

/* Optional: make nav arrows look reasonable */
.calmare-testimonial-carousel .owl-nav button{
  font-size: 28px;
  line-height: 1;
  padding: 0 10px !important;
}

