/* ============================================================
 * SC301 Landing - 전체 CSS
 * - 메인 배너/전후사진/프로모션/Youtube/가로레일/지도/팝업
 * - Swiper 보정 및 커스텀 페이지네이션(이미지 불릿 + SSR 스켈레톤)
 * - 전역 불릿 스타일 제거 → 메인 전용 스코프
 * ============================================================ */

:root {
    --bg: #ffffff;
    --fg: #111;
    --muted: #f6f7f9;
    --line: #e8eaef;
    --brand: #17a2b8;
    --brand-d: #0f7687;
    --ghost: #222;
    --radius: 0.875rem;
    --shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ────────────────────────────── * Swiper 컨테이너 (전체 영역) * ────────────────────────────── */
.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: fit-content !important;
}

/* 슬라이드 wrapper */
.swiper-wrapper {
    align-items: stretch;
}

/* 슬라이드 개별 항목 */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 슬라이드 안의 이미지 */
.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 오버레이 텍스트 전체 */
.overlay-text {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    width: 100%;
    padding: 0 10px;
}

/* 1번째 줄 */
.overlay-text .line1 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 6px 0;
}

/* 2번째 줄 (강조: 굵고 크게) */
.overlay-text .line2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

/* 3번째 줄 (보조 문구) */
.overlay-text .line3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* ────────────────────────────── * 반응형 대응 * ────────────────────────────── */
@media (max-width: 768px) {
    .overlay-text .line1 {
        font-size: 0.9rem;
    }

    .overlay-text .line2 {
        font-size: 1.5rem;
    }

    .overlay-text .line3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .overlay-text .line1 {
        font-size: 0.8rem;
    }

    .overlay-text .line2 {
        font-size: 1.2rem;
    }

    .overlay-text .line3 {
        font-size: 0.8rem;
    }
}

/* ────────────────────────────── * Swiper 내비게이션 버튼/페이지네이션 * ────────────────────────────── */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ────────────────────────────── * 휴진 안내 배너 * ────────────────────────────── */
.notice-banner img {
    width: 100%;
    display: block;
    margin: 0;
}

/* ────────────────────────────── * 전후사진 * ────────────────────────────── */
.before-after {
    text-align: center;
    padding: 40px 16px;
}

.ba-title {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 0;
}

.ba-sub {
    font-size: 14px;
    color: #7e7e7e;
    margin-top: 0;
    margin-bottom: 20px;
}

.ba-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin: 0 auto 20px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.ba-btn {
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid #343434;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    font-size: 0.75rem;
    text-align: center;
    color: #343434;
}

.ba-btn.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.ba-swiper {
    margin: 0 auto;

    transition: opacity 0.25s ease;
}

.ba-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ba-swiper img {
    width: 100%;
    border-radius: 8px;
}

.ba-swiper.is-switching {
    opacity: 0;
}

/* ────────────────────────────── * SC301만의 차별점 (Swiper) * ────────────────────────────── */
/* 차별점 섹션 */
.sc-diff {
    background: #f1eee9;
    padding: 30px 0;
    text-align: center;
}

.sc-diff-title {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 24px;
}

/* 가로 스크롤 레일 */
.diff-rail {
    display: flex;
    gap: 24px;
    padding: 8px 16px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 1100px;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Chrome/Safari */
.diff-rail::-webkit-scrollbar {
    display: none;
}

/* 카드 */
.diff-card {
    flex: 0 0 auto;
    width: 240px;
}

.diff-card img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 10px;
}

.diff-text {
    font-size: 0.8rem;
    font-weight: normal;
    color: #7e7e7e;
}

/* ────────────────────────────── * SCI 논문 * ────────────────────────────── */
.sci-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.sci-header {
    margin-bottom: 30px;
}

.sci-title {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;
    margin: 0 0 3px;
}

.sci-title .line1,
.sci-title .line2 {
    display: block;
}

.sci-sub {
    font-size: 0.9rem;
    color: #7e7e7e;
    margin: 0;
}

.sci-papers {
    position: relative;
    margin: 20px auto 0;
    background-image: url('https://ex.medicrm-ai.com/IMAGE/HOMEPAGE/20251023/e4db7cfb741dcb28e92e0c9af42ad82231b57dca6873a7e121aa1c0426406933.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    overflow: hidden;
}

.sci-papers img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

/* ────────────────────────────── * Real Review * ────────────────────────────── */
.real-review {
    text-align: center;
    padding: 0 16px 60px;
}

.rr-title {
    font-size: 1.5rem;
    margin: 0;
    font-weight: normal;
}

.rr-sub {
    font-size: 14px;
    color: #7e7e7e;
    margin: 0 0 24px;
}

/* 상단 스와이퍼 */
.rr-top-swiper {
    width: 100%;
    margin: 0 auto;
}

.rr-top-swiper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* 막대바 컨테이너: 상단/하단 사이 */
.rr-slidebar {
    margin: 12px auto 10px;
    display: flex;
}

/* Swiper bullets를 '막대'처럼 구현 */
.rr-slidebar .swiper-pagination-bullet {
    flex: 1 0 0;
    height: 4px;
    border-radius: 2px;
    background: #e5e5e5;
    opacity: 1;
    margin: 0 !important;
}

/* 활성 막대 */
.rr-slidebar .swiper-pagination-bullet-active {
    background: #000;
}

/* 하단 전후 */
.rr-bottom {
    margin-top: 0;
}

/* 진행바가 있으니 추가 간격 축소 */
.rr-ba img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ────────────────────────────── * 병원 전경 * ────────────────────────────── */
.hospital-view {
    text-align: center;
    margin: 60px 0 0;
    position: relative;
}

.hv-image {
    position: relative;
}

.hv-image>img {
    width: 100%;
}

.hv-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 병원 전경 이미지 위 오버레이(로고 + 문구) */
.hv-overlay {
    position: absolute;
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    text-align: center;
    color: #fff;
    padding: .6rem .9rem;
    border-radius: 12px;
}

.hv-logo {
    width: clamp(64px, 12vw, 92px);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
    margin-bottom: .15rem;
}

.hv-phrase1 {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: .02em;
    opacity: .95;
}

.hv-phrase2 {
    margin: .05rem 0 0 0;
    line-height: 1.25;
    font-size: 0.9rem;
    letter-spacing: .01em;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .hv-overlay {
        top: 10.5%;
        padding: .5rem .75rem;
        border-radius: 10px;
    }
}

@media (min-width: 992px) {
    .hv-overlay {
        top: 35%;
        padding: .7rem 1.1rem;
    }
}

.hv-text {
    margin-bottom: 35px;
}

.hv-text h2 {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: normal;
    margin-bottom: 12px;
    text-align: left;
}

.hv-link {
    display: block;
    text-align: left;
    margin: 0 0 16px 0;
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

.hv-link:hover,
.hv-link:visited,
.hv-link:active,
.hv-link:focus {
    text-decoration: none;
    color: #000;
}

.hv-sub {
    font-size: 14px;
    color: #7e7e7e;
    text-align: left;
}

/* ────────────────────────────── * 병원 소개 * ────────────────────────────── */
.hospital-intro {
    padding: 5px 16px 28px
}

/* ────────────────────────────── * 원장님 컬럼 * ────────────────────────────── */
.column-section {
    background: #f1eee9;
    padding: 30px 0;
    text-align: center;
}

.column-title {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 0;
}

.column-sub {
    font-size: 14px;
    color: #7e7e7e;
    margin-top: 0;
    margin-bottom: 24px;
}

/* 가로 스크롤 레일 */
.column-rail {
    display: flex;
    gap: 24px;
    padding: 8px 16px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 1100px;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.column-rail::-webkit-scrollbar {
    display: none;
}

/* 카드 */
.column-card {
    flex: 0 0 auto;
    width: 260px;
}

.column-card img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 10px;
}

.column-text {
    font-size: 0.8rem;
    font-weight: normal;
    color: #7e7e7e;
}

/* ────────────────────────────── * Promotion * ────────────────────────────── */
.promotion-section {
    text-align: center;
    padding: 60px 16px;
}

.promotion-title {
    font-size: 1.5rem;
    margin: 0;
    font-weight: normal;
}

.promotion-sub {
    font-size: 14px;
    color: #7e7e7e;
    margin: 0;
}

.promotion-more {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid #7e7e7e;
    border-radius: 9999px;
    font-size: 14px;
    line-height: 1;
    color: #7e7e7e;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    margin: 1rem 0 2.5rem 0;
}

.promotion-swiper {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.promotion-swiper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* 막대바 */
.promotion-slidebar {
    width: 90%;
    max-width: 768px;
    margin: 12px auto 10px;
    display: flex;
}

.promotion-slidebar .swiper-pagination-bullet {
    flex: 1 0 0;
    height: 4px;
    border-radius: 2px;
    background: #e5e5e5;
    opacity: 1;
    margin: 0 !important;
}

.promotion-slidebar .swiper-pagination-bullet-active {
    background: #000;
}

/* ────────────────────────────── * Youtube Short Section * ────────────────────────────── */
.youtube-section {
    text-align: center;
    padding: 0 16px 60px;
}

.youtube-title {
    font-size: 1.5rem;
    margin: 0 0 3px;
    font-weight: normal;
}

/* view more 라운드 테두리 버튼 */
.youtube-more {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid #7e7e7e;
    border-radius: 9999px;
    font-size: 14px;
    line-height: 1;
    color: #7e7e7e;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    margin: 1rem 0 2.5rem 0;
}

.youtube-more:hover,
.youtube-more:focus {
    background: #111;
    color: #fff;
    border-color: #111;
}

.youtube-more:active {
    transform: translateY(1px);
}

/* Swiper 컨테이너 */
.youtube-swiper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* 한 슬라이드 = 3개 묶음이 가로로 꽉 차도록 */
.youtube-swiper .swiper-wrapper {
    align-items: stretch;
}

.youtube-swiper .swiper-slide {
    display: block;
}

/* 슬라이드 내부 3열 그리드 */
.yt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

/* 썸네일 카드 */
.yt-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 재생 아이콘 오버레이 */
.yt-thumb::after {
    content: "▶";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .6);
    pointer-events: none;
}

/* 페이지네이션 막대바 */
.youtube-slidebar {
    width: 90%;
    max-width: 768px;
    margin: 12px auto 10px;
    display: flex;
    gap: 8px;
}

.youtube-slidebar .swiper-pagination-bullet {
    flex: 1 0 0;
    height: 4px;
    border-radius: 2px;
    background: #e5e5e5;
    opacity: 1;
    margin: 0 !important;
}

.youtube-slidebar .swiper-pagination-bullet-active {
    background: #000;
}

/* ────────────────────────────── * Youtube Modal * ────────────────────────────── */
.yt-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.yt-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.yt-modal-content iframe {
    width: 100%;
    height: 520px;
    display: block;
}

.yt-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ────────────────────────────── * 지도 * ────────────────────────────── */
.location-section {
    background: #fff;
    padding: 0;
}

.location-section .kmap {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-section .kmap .wrap_controllers.hide {
    display: none;
}

/* ────────────────────────────── * 위치 정보 * ────────────────────────────── */
.location-section-info {
    padding: 28px 16px;
    margin-bottom: 65px;
}

.location-section-info .loc-info {
    margin: 0 auto;
    color: #111827;
}

.loc-title {
    font-size: 1.7rem;
    line-height: 1.25;
    margin: 0 0 16px;
    font-weight: normal;
}

.loc-sub {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #374151;
}

.loc-addr {
    font-style: normal;
    margin: 0 0 16px;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.7;
}

.loc-tel {
    margin: 8px 0 45px;
    font-size: 1.2rem;
    font-weight: bold;
}

.loc-tel a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.loc-tel a,
.loc-tel a:link,
.loc-tel a:visited,
.loc-tel a:hover,
.loc-tel a:active {
    text-decoration: none !important;
    border-bottom: 0 !important;
    color: inherit;
}

.loc-hours .hours-title {
    font-size: 15px;
    margin: 0 0 12px;
}

.loc-hours.simple {
    text-align: left;
    color: #7e7e7e;
    padding: 0;
}

.loc-hours.simple .lh-title {
    margin: 0 0 12px;
    font-weight: 400;
    font-size: 15px;
}

/* 기존 텍스트 라인 기본값 */
.loc-hours.simple .lh-line {
    display: block;
    font-size: 15px;
}

/* 진료시간을 요일/시간 2열로 나란히 정렬 */
.loc-hours.simple .lh-lines {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 12px;
    align-items: center;
}

.loc-hours.simple .lh-lines .lh-line {
    white-space: nowrap;
    color: #7e7e7e;
}

.loc-hours.simple .lh-lines>span:not(.lh-line) {
    display: block;
    white-space: nowrap;
    color: #7e7e7e;
}

/* 마지막 단독 라인(일요일 휴진)은 2열 전체 사용 */
.loc-hours.simple .lh-lines>.lh-line:last-child {
    grid-column: 1 / -1;
}

/* 모바일에서 간격 조정(선택) */
@media (max-width: 480px) {
    .loc-hours.simple .lh-lines {
        grid-template-columns: 60px 1fr;
        column-gap: 10px;
    }
}

/* ────────────────────────────── * 데스크톱 여백 조금 더 여유 * ────────────────────────────── */
@media (min-width: 1024px) {
    .loc-title {
        font-size: 32px;
    }

    .loc-info {
        padding: 48px 24px 80px;
    }
}

/* ────────────────────────────── * 휴진안내 전체화면 팝업 * ────────────────────────────── */
.notice-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    z-index: 9999;
    cursor: pointer;
}

.notice-overlay.open {
    display: flex;
}

.notice-overlay .notice-image {
    max-width: min(720px, 90vw);
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    border-radius: 10px;
    background: #fff;
}

/* 오픈 시 스크롤 잠금 */
body.modal-open {
    overflow: hidden;
}

/* ────────────────────────────── * 메인 전용 페이지네이션 (메인 배너만) * ────────────────────────────── */
.main-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

/* 메인 배너 SSR 스켈레톤 불릿 */
.main-pagination .bullet-skel {
    width: 14px;
    height: 14px;
    margin: 0 4px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 9999px;
    border: 0;
    opacity: .98;
    background-color: transparent;
    background-image: url('https://ex.medicrm-ai.com/IMAGE/HOMEPAGE/20251021/ac906e27f48b00da32cb29a0afd3058038c7f35a0d561a28cb122637b3afce71.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

/* 첫 번째 스켈레톤 활성처럼 */
.main-pagination .bullet-skel:first-child {
    background-image: url('https://ex.medicrm-ai.com/IMAGE/HOMEPAGE/20251021/7cdee65fe5e2d6e0b020f8b1fae9c93197bf2865d195aedb945ababb90d8a621.png');
    background-color: transparent;
    opacity: 1;
    transform: scale(1.02);
}

/* 실제 불릿 생성되면 스켈레톤 숨김 */
.main-pagination:has(.swiper-pagination-bullet) .bullet-skel {
    display: none;
}

/* JS에서 .is-ready 붙일 경우 */
.main-pagination.is-ready .bullet-skel {
    display: none;
}

/* 메인 배너 불릿(비활성) — 이미지 + 폴백 컬러 */
.main-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 4px !important;
    border: 0;
    border-radius: 9999px;
    opacity: 1;
    background-color: #d9d9d9;
    background-image: url('https://ex.medicrm-ai.com/IMAGE/HOMEPAGE/20251021/ac906e27f48b00da32cb29a0afd3058038c7f35a0d561a28cb122637b3afce71.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* 메인 배너 불릿(활성) */
.main-pagination .swiper-pagination-bullet-active {
    background-color: #111;
    background-image: url('https://ex.medicrm-ai.com/IMAGE/HOMEPAGE/20251021/7cdee65fe5e2d6e0b020f8b1fae9c93197bf2865d195aedb945ababb90d8a621.png');
    background-size: contain;
}

/* 전역 bullet 규칙이 있어도 메인 전용이 이기도록 */
.swiper-container .main-pagination .swiper-pagination-bullet {
    background-color: transparent !important;
}

/* ────────────────────────────── * 전후사진 전용 페이지네이션 * ────────────────────────────── */
.before-after .ba-swiper {
    margin: 0 auto 14px;
}

/* 전후사진 전용 페이지네이션을 '흘러가는 위치(static)'로 */
.before-after .ba-pagination.swiper-pagination {
    position: static !important;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/* 불릿 크기/이미지 */
.before-after .ba-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 2px !important;
    opacity: 1;
    background: url('https://ex.medicrm-ai.com/IMAGE/HOMEPAGE/20251021/342d23fbc5bdfc5de5f37fa5b44ffa71aa406dc136ffa8cd0e931b4d2b20b312.png') center / 60% 60% no-repeat;
    border: 0;
}

.before-after .ba-pagination .swiper-pagination-bullet-active {
    background-image: url('https://ex.medicrm-ai.com/IMAGE/HOMEPAGE/20251021/6fecc16848f07f92c1c0f840b1d2c06a99e4dadc9896e748ad2504189e61a341.png');
    background-size: 60% 60%;
}

/* ────────────────────────────── * Swiper 보정 * ────────────────────────────── */
/* 스와이퍼 전체 높이 변화도 스무스하게 */
.swiper-container {
    transition: height .45s cubic-bezier(.22, .61, .36, 1);
}

/* 전환 이징을 자연스럽게 강제 + GPU 가속 힌트 */
.swiper-wrapper {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1) !important;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* 개별 슬라이드/이미지 렌더링 최적화 */
.swiper-slide {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    contain: layout style paint;
}

.swiper-slide img {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: auto;
}

.swiper,
.swiper-container {
    touch-action: pan-y;
}

.swiper-container,
.ba-swiper {
    width: 100%;
    overflow: hidden;
}

.swiper,
.swiper-container,
.ba-swiper {
    overflow: hidden;
}

.swiper-container {
    margin: 64px 0 auto;
}

.ba-swiper {
    margin: 0 auto;
}