/* PC/모바일 스토어·구독 상단 배너 캐러셀 */
.page-banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.page-banner-carousel--pc {
  height: 360px;
}

.page-banner-carousel--mobile {
  height: 320px;
  touch-action: pan-y;
}

.page-banner-carousel--mobile .page-banner-arrow {
  width: 40px;
  height: 40px;
  font-size: 18px;
  border-radius: 9px;
  background: rgba(217, 217, 217, 0.65);
}

.page-banner-carousel--mobile .page-banner-arrow--prev { left: 10px; }
.page-banner-carousel--mobile .page-banner-arrow--next { right: 10px; }

.page-banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}

.page-banner-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.page-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-banner-slide a {
  display: block;
  height: 100%;
}

.page-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 11px;
  background: rgba(217, 217, 217, 0.48);
  color: #222;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.page-banner-arrow--prev { left: 24px; }
.page-banner-arrow--next { right: 24px; }

.page-banner-indicators {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 2;
}

.page-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.page-banner-dot.is-active {
  background: #EF4044;
}

.page-banner-single {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.page-banner-single a {
  display: block;
  height: 100%;
}

.page-banner-single img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-banner-single--pc { height: 360px; }
.page-banner-single--mobile { height: 320px; }
