﻿.hero-slider {
  position: relative;
  width: 100%;
  margin: -32px auto 0;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-slider::after { display: none; }

.hero-slides {
  display: block;
  position: relative;
  z-index: 1;
}

.hero-slide {
  min-width: 100%;
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 690px;
  object-fit: cover;

  -webkit-mask-image: url('/images/Frame-slideShow.png');
  -webkit-mask-size: 100% calc(100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-image: url('/images/Frame-slideShow.png');
  mask-size: 100% calc(100%);
  mask-repeat: no-repeat;
  mask-position: top center;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.hero-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero-slider {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    transform: none;
  }
  .hero-slide img { height: 220px; }
  .hero-prev, .hero-next { font-size: 24px; padding: 6px 10px; }
}


