.main-swiper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;

  /* [추가] Swiper의 fade 효과를 위해 필요할 수 있음 */
  & .swiper-slide {
    will-change: opacity;
  }
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-content {
  width: 100%;
  height: 100%;
}

.swiper-content:hover {
  cursor: pointer;
}

.swiper-content h2 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}

.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  color: #1a1a1a;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
}

.main-swiper:hover .swiper-btn {
  opacity: 1;
}

.swiper-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

.swiper-prev {
  left: 32px;
}

.swiper-next {
  right: 32px;
}

.main-swiper .swiper-pagination {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  width: auto;
  align-items: center;
  justify-content: center;
}

.main-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.5); */
  background: #ffffff;
  transition: all 0.3s;
  padding: 0;
  opacity: 1;
  cursor: pointer;
  border: none;
}

.main-swiper .swiper-pagination-bullet:hover {
  opacity: 0.4;
}

.main-swiper .swiper-pagination-bullet-active {
  border-radius: 5px;
  background-color: #a0b8ae;
}
