.alamer-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.alamer-slider__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.alamer-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.alamer-slider__slide img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.alamer-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alamer-slider__prev {
  left: 16px;
}

.alamer-slider__next {
  right: 16px;
}

.alamer-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.alamer-slider__dot {
  width: 24px;
  height: 4px;
  border: 0;
  background: #c7c7c7;
  cursor: pointer;
}

.alamer-slider__dot.is-active {
  background: #d63b30;
}
