/* ************** swiper ************** */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  bottom: 20px;
  right: 20px;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100px;
  background: #fff;
  opacity: 0.6;
  margin: 0 4px;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
  width: 24px;
  border-radius: 5px;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* 공통: 키보드 포커스가 올 때 시각적으로 보이게 */
.swiper-pagination-bullet:focus-visible {
  outline: none; /* 기본 파란 아웃라인 제거 */
  box-shadow: 0 0 0 2px #005fcc; /* 바깥쪽 링처럼 보이게 */
  border-radius: 999px;       /* 혹시 기본이 둥글지 않은 경우 대비 */
}

/* Safari / 구버전 대응용 (:focus-visible 미지원일 때) */
.swiper-pagination-bullet:focus {
  outline: none;
}

/* 활성 불릿 + 포커스일 때 조금 더 강조하고 싶으면 */
.swiper-pagination-bullet.swiper-pagination-bullet-active:focus-visible {
  box-shadow: 0 0 0 2px #005fcc;
  transform: scale(1.1);
}
