.amo-ks-slider {
  --amo-ks-text: #ffffff;
  --amo-ks-accent: #111827;
  --amo-ks-dot: rgba(255, 255, 255, 0.5);
  --amo-ks-dot-active: #ffffff;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--amo-ks-text);
  padding: 28px 56px;
}

.amo-ks-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.amo-ks-slide {
  width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 54px;
}

.amo-ks-text {
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-left: 0 !important;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
  font-style: italic;
  color: var(--amo-ks-text);
  text-align: center;
}

.amo-ks-text::before,
.amo-ks-text::after {
  content: none;
}

.amo-ks-text p {
  margin: 0;
}

.amo-ks-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--amo-ks-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.amo-ks-arrow:hover {
  background: #f9fafb;
}

.amo-ks-prev {
  left: 12px;
}

.amo-ks-next {
  right: 12px;
}

.amo-ks-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.amo-ks-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amo-ks-dot);
  border: none;
  padding: 0;
  cursor: pointer;
}

.amo-ks-dot.is-active {
  background: var(--amo-ks-dot-active);
}

.amo-ks-empty {
  padding: 16px;
  color: #4b5563;
  text-align: center;
}

@media (max-width: 768px) {
  .amo-ks-slider {
    padding: 22px 44px;
  }

  .amo-ks-slide {
    padding: 0 42px;
  }

  .amo-ks-arrow {
    width: 34px;
    height: 34px;
  }

  .amo-ks-prev {
    left: 6px;
  }

  .amo-ks-next {
    right: 6px;
  }
}
