.subcontent > img {
    display: block;
    margin: 0 auto;
	width: 100%;
}

/* Photo Slide */
.subcontent {
    clear: both;
    overflow: hidden;
}
.photo_slide {
    width: 100%;
    height: 500px;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}
.photo_slide .slide-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.photo_slide .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo_slide .slide-item.active {
    opacity: 1;
    z-index: 1;
}
.photo_slide .slide-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Selfie Slide */
.selfie_slide {
    width: 100%;
    height: 380px;
    position: relative;
    background-color: #f5f5f5;
    padding-bottom: 50px;
    overflow: hidden;
}
.selfie_slide .slide-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.selfie_slide .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.selfie_slide .slide-item.active {
    opacity: 1;
    z-index: 1;
}
.selfie_slide .slide-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Buttons for photo and selfie slides */
.photo_slide button,
.selfie_slide button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 44px;
    border: none;
    background-color: transparent;
    text-indent: -9999px;
    cursor: pointer;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.photo_slide .btn_prev,
.selfie_slide .btn_prev {
    left: 50px;
    background: url('/common/img/sub/review/arrow_l.png') no-repeat center;
    background-size: contain;
}
.photo_slide .btn_next,
.selfie_slide .btn_next {
    right: 50px;
    background: url('/common/img/sub/review/arrow_r.png') no-repeat center;
    background-size: contain;
}

/* 모바일 반응형 - Photo & Selfie Slides */
@media (max-width: 767px) {
    .photo_slide,
    .selfie_slide {
        padding-bottom: 40px;
    }
    .photo_slide button,
    .selfie_slide button {
        width: 18px;
        height: 35px;
        top: calc(50% - 20px);
    }
    .photo_slide .btn_prev,
    .selfie_slide .btn_prev {
        left: 5px;
    }
    .photo_slide .btn_next,
    .selfie_slide .btn_next {
        right: 5px;
    }
}

/* Model Carousel */
.model-carousel-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.model {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding-bottom: 50px;
}
.model-viewport {
    overflow: hidden;
    width: 100%;
}
.model-track {
    display: flex;
    transition: transform 0.3s ease;
}
.model-track .model-item {
    flex: 0 0 20%;
    padding: 0 4px;
    box-sizing: border-box;
}
.model-item a {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}
.model-item img {
    width: 100%;
    height: auto;
    display: block;
}

.model-slide-swiper.swiper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
/* 가로 1열: bundle보다 나중 로드·다른 CSS에 밀려 세로 쌓일 때 대비 */
.model-slide-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    box-sizing: border-box;
}
.model-slide-swiper .swiper-slide {
    flex-shrink: 0 !important;
    height: auto;
    max-height: none;
    align-self: flex-start;
    overflow: hidden;
    box-sizing: border-box;
    /* width는 Swiper 인라인 값 유지 — width:% !important 금지 */
}
.model-slide-swiper .model-item {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    padding: 0 4px;
    box-sizing: border-box;
}
.model-slide-swiper .model-item a {
    display: block;
    width: 100%;
    max-width: 100%;
    line-height: 0;
}
/* 세로로 과하게 커지지 않도록(슬라이드·메인 공통 썸네일 느낌) */
.model-slide-swiper .model-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(130px, 30vw, 260px);
    object-fit: contain;
    object-position: top center;
    display: block;
    margin: 0 auto;
}

/* Model buttons */
.model_btn {
    position: absolute;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    pointer-events: none;
}
.model_btn button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    text-indent: 0;
}
.model_btn button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.model_btn .btn_prev::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 4px;
}
.model_btn .btn_next::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg);
    margin-right: 4px;
}

/* 모바일 반응형 - Model Carousel */
@media (max-width: 767px) {
    .model-track .model-item {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }
    .model-carousel-container {
        gap: 10px;
        display: block;
    }
    .model {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-bottom: 40px;
    }
    .model-slide-swiper .swiper-wrapper {
        align-items: flex-start;
    }
    .model-slide-swiper .swiper-slide {
        height: auto !important;
        max-height: none !important;
        flex-shrink: 0;
        overflow: hidden;
    }
    .model-slide-swiper .model-item {
        padding: 0 6px;
    }
    .model-slide-swiper .model-item img {
        max-height: min(40vw, 200px);
    }
    .model_btn {
        padding: 0 6px;
        top: calc(50% - 20px);
    }
    .model_btn button {
        width: 28px;
        height: 28px;
    }
    .model_btn .btn_prev::after,
    .model_btn .btn_next::after {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 479px) {
    .model-track .model-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* 모델 캐러셀 — Swiper 없이 이 조각만으로 동작 (메인·서브 공통) */
.jj-native-model-wrap.model-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.jj-native-model-wrap .model {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding-bottom: 50px;
}
.jj-native-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, 구 Edge */
    scroll-snap-type: x mandatory;
}
.jj-native-scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.jj-native-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    min-height: 0;
    /* 무한 루프 복제 트랙 사이 = 셀 간 gap 과 동일 (마지막↔첫 썸네일 붙어 보이지 않게) */
    gap: 6px;
}
.jj-native-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    flex: 0 0 auto;
    box-sizing: border-box;
}
.jj-native-cell {
    flex: 0 0 auto;
    width: var(--jj-cell-w, 140px);
    min-width: var(--jj-cell-w, 140px);
    max-width: var(--jj-cell-w, 140px);
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}
.jj-native-model-wrap .model-item a {
    display: block;
    width: 100%;
    max-width: 100%;
    line-height: 0;
}
.jj-native-model-wrap .model-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(130px, 30vw, 260px);
    object-fit: contain;
    object-position: top center;
    display: block;
    margin: 0 auto;
}
.jj-native-model-wrap .model_btn {
    position: absolute;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 10;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    pointer-events: none;
    left: 0;
}
.jj-native-model-wrap .model_btn button {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.jj-native-model-wrap .model_btn button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.jj-native-model-wrap .model_btn .jj-native-prev::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 4px;
}
.jj-native-model-wrap .model_btn .jj-native-next::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg);
    margin-right: 4px;
}
@media (max-width: 767px) {
    .jj-native-model-wrap.model-carousel-container { gap: 10px; display: block; }
    .jj-native-model-wrap .model { padding-bottom: 40px; }
    .jj-native-model-wrap .model-item img { max-height: min(40vw, 200px); }
    .jj-native-model-wrap .model_btn { padding: 0 6px; }
    .jj-native-model-wrap .model_btn button { width: 28px; height: 28px; }
    .jj-native-model-wrap .model_btn .jj-native-prev::after,
    .jj-native-model-wrap .model_btn .jj-native-next::after { width: 7px; height: 7px; }
}
/* 서브 Real Story: .subcontent 가 float 이라 .content-right 높이가 0으로 붕괴되며 캐러셀이 잘리는 문제 */
.real-story-content {
    display: flow-root;
    min-width: 0;
}