/* Homepage hero + carousels (Swiper) — replaces Master Slider / Owl Carousel */

/* Master Slider's fullwidth mode kept a 1024×600 design space and scaled it
   down proportionally on narrower screens; min(600px, 58.5vw) reproduces that. */
.hero-swiper {
  height: min(600px, 58.5vw);
  background: #333;
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 34px;
}

.hero-swiper .swiper-slide {
  overflow: hidden;
}

.hero-swiper .hero-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-slide-caption {
  position: relative;
  height: 100%;
}

.hero-caption-inner {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Slide with the text placed right of the image subject (was left:450px of 1024) */
.hero-caption-offset {
  left: 44%;
}

.hero-kicker {
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(20px, 4.4vw, 45px);
  line-height: 1.3;
  font-family: "Open Sans", Arial, sans-serif;
}

.hero-title {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(22px, 5.8vw, 60px);
  line-height: 1.1;
  font-family: "Open Sans", Arial, sans-serif;
}

.hero-sub {
  margin: 8px 0 0;
  font-weight: 400;
  font-size: clamp(13px, 1.8vw, 18px);
  line-height: 1.4;
  font-family: "Open Sans", Arial, sans-serif;
}

.hero-btns {
  margin-top: clamp(10px, 2.9vw, 30px);
}

.hero-btns .btn-u {
  margin-right: 8px;
}

/* Carousel nav buttons keep the Unify .owl-btn look; Swiper adds this class
   at the ends since these carousels don't loop. */
.owl-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
