/* Minimal fade-slider styles for the .mySlides / .dot component driven by
   /global/js/own-slider.js. Not currently used by any page, kept so the
   component works out of the box if a page adds the markup later. */

.slider-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border-radius: var(--bx-radius, 14px);
}

.slider-dots {
  text-align: center;
  padding: 14px 0;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dot.active,
.dot:hover {
  background: var(--bx-primary, #e11d2e);
}
