﻿.custom-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.custom-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 200%;
}

.slide-item {
  flex: 0 0 50%;
  display: block;
}

.slide-item img {
  width: 100%;
  display: block;
}

/* 도트 내비게이션 */
.custom-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #000;
}