.cms-slider {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.cms-slider__track {
  position: relative;
  width: 100%;
  min-height: 280px;
}

.cms-slider__slide,
.cms-slider__link {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 500ms ease;
}

.cms-slider__slide.is-active,
.cms-slider__link.is-active {
  opacity: 1;
}

.cms-slider__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.cms-slider__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}

.cms-slider__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.cms-slider__subtitle {
  opacity: 0.95;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.3;
}

.cms-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cms-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
}

.cms-slider__dot.is-active {
  background: rgba(255,255,255,0.95);
}
