/* Swiper 컨테이너 */
.p__slide .carouselWrap {
  overflow: hidden; /* 넘치는 슬라이드 숨김 */
  position: relative; /* absolute 자식 요소의 기준점 */
}

/* Swiper 래퍼 */
.p__slide .carousel.swiper-wrapper {
  display: flex; /* 슬라이드를 가로로 나열 */
  transition-property: transform; /* transform 애니메이션 */
  box-sizing: content-box; /* 패딩/보더 포함 크기 계산 */
}

/* Swiper 슬라이드 */
.p__slide .swiper-slide {
  flex-shrink: 0; /* 슬라이드 크기 고정 */
  width: 100%; /* 컨테이너 너비에 맞춤 */
  height: 100%; /* 컨테이너 높이에 맞춤 */
  position: relative; /* absolute 자식 요소의 기준점 */
  transition-property: transform; /* transform 애니메이션 */
}

/* 네비게이션 버튼 비활성화 스타일
         - 확대보기 팝업에 버튼에도 적용되어야 하므로 범용적인 선택자 사용 */
.carouselSingleControls .f__ic_left.disabled,
.carouselSingleControls .f__ic_right.disabled {
  opacity: 0.3; /* 투명도 감소 */
  cursor: not-allowed; /* 커서 변경 */
  pointer-events: none; /* 클릭 이벤트 차단 */
}
