.appmaker-multislider {
  width: 100%;
  padding: 0 36px;
  box-sizing: border-box;
}

.appmaker-multislider-name {
  margin: 0 0 28px;
  text-align: center;
  color: inherit;
}

.appmaker-multislider .swiper-slide {
  box-sizing: border-box;
}

/* Type: text — a centered line (or two) that rotates, no image.
   No fixed height: autoHeight (front.js) sizes the container to whatever
   the current slide's text actually needs, so 2-line slides grow naturally. */
.appmaker-multislider--text .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}

/* Type: banner — full-width image with an overlaid caption */
.appmaker-multislider--banner .swiper-slide {
  position: relative;
}

.appmaker-multislider--banner .slide-image {
  display: block;
  width: 100%;
  height: auto;
}

.appmaker-multislider--banner .slide-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.appmaker-multislider--banner .slide-caption .slide-title {
  display: block;
  font-weight: 700;
}

/* Type: product circle — a row of round thumbnails with a short name below */
.appmaker-multislider--product_circle .swiper-slide {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.appmaker-multislider--product_circle .slide-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

.appmaker-multislider--product_circle .slide-name {
  margin-top: 8px;
  font-size: 1.5rem;
}

/* xs / xxs (< 576px, see appmaker $grid-breakpoints "sm") */
@media (max-width: 575.98px) {
  .appmaker-multislider--product_circle .swiper-slide {
    width: 248px;
  }

  .appmaker-multislider--product_circle .slide-image {
    width: 248px;
    height: 248px;
  }
}

.appmaker-multislider a.slide-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
