@charset "utf-8";
/* =====================================================================
 * ive.css — 나스정형외과(NASS) 공통 디자인 시스템
 * 그누보드5 theme/basic 공통 스타일 (디자인 토큰 + 헤더/푸터/버튼/컨테이너/섹션/반응형)
 * 값은 Figma(node 5322:392) Dev Mode 실측 기준. 스킨별 스타일은 각 스킨 style.css.
 * ===================================================================== */

/* ------------------------------------------------------------------ *
 * 1. 디자인 토큰
 * ------------------------------------------------------------------ */
:root {
    /* Color */
    --ive-color-navy: #0d171f;        /* 브랜드 딥네이비 */
    --ive-color-slate: #2d4557;       /* 그라디언트 보조 */
    --ive-color-text: #111111;        /* 기본 텍스트 */
    --ive-color-text-2: #333333;      /* 보조 텍스트 */
    --ive-color-text-3: #666666;      /* 3차 텍스트 */
    --ive-color-muted: #888888;       /* 날짜/캡션 */
    --ive-color-bg: #ffffff;          /* 기본 배경 */
    --ive-color-bg-soft: #f5f6f8;     /* 연한 배경 */
    --ive-color-border: #d9d9d9;      /* 기본 보더 */
    --ive-color-border-2: #e9ebee;    /* 연한 보더 */
    --ive-color-white: #ffffff;
    --ive-color-new: #d84343;         /* NEW 뱃지 */

    /* Gradient */
    --ive-grad-navy: linear-gradient(90deg, #0d171f 0%, #2d4557 100%);

    /* Typography */
    --ive-font-family: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
    --ive-fw-regular: 400;
    --ive-fw-medium: 500;
    --ive-fw-semibold: 600;
    --ive-fw-bold: 700;
    --ive-fw-extrabold: 800;

    /* Layout */
    --ive-container: 1640px;          /* 콘텐츠 최대 폭 (Figma 2000 - 좌우 180) */
    --ive-container-pad: clamp(16px, 4vw, 40px);
    --ive-header-h: 80px;
    --ive-header-h-mo: 60px;

    /* Section spacing */
    --ive-section-gap: clamp(80px, 10vw, 180px);
    --ive-section-gap-sm: clamp(40px, 5vw, 80px);

    /* Radius */
    --ive-radius-sm: 8px;
    --ive-radius: 10px;
    --ive-radius-lg: 20px;
    --ive-radius-pill: 999px;

    /* Elevation */
    --ive-shadow-card: 0 4px 20px rgba(13, 23, 31, 0.08);
    --ive-shadow-dock: 0 4px 7.5px rgba(0, 0, 0, 0.12);

    /* Motion */
    --ive-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ive-dur: 0.35s;

    /* Z-index */
    --ive-z-header: 1000;
    --ive-z-mega: 990;
    --ive-z-dock: 900;
    --ive-z-mobile: 1100;
}

/* 반응형: 좌우 여백 20px 통일 */
@media (max-width: 1024px) {
    :root { --ive-container-pad: 20px; }
}

/* ------------------------------------------------------------------ *
 * 2. 베이스 (테마 공통 최소 리셋 — 그누보드 기존 스타일 존중)
 * ------------------------------------------------------------------ */
body { font-family: var(--ive-font-family); color: var(--ive-color-text); background: var(--ive-color-bg); -webkit-font-smoothing: antialiased; }
/* default.css 가 h1~h6/폼을 맑은 고딕으로 강제 → Pretendard 로 통일 */
.ive, .ive h1, .ive h2, .ive h3, .ive h4, .ive h5, .ive h6,
.ive input, .ive button, .ive select, .ive textarea { font-family: var(--ive-font-family); }
.ive * { box-sizing: border-box; }
.ive img { max-width: 100%; }
.ive picture { display: block; }

/* 접근성: 키보드 포커스 표시 */
.ive a:focus-visible,
.ive button:focus-visible,
.ive [tabindex]:focus-visible {
/*    outline: 3px solid var(--ive-color-slate);
    outline-offset: 2px;
    border-radius: 4px;
*/    
}
/* 마우스 클릭 시 과한 아웃라인 제거(키보드는 유지) */
.ive a:focus:not(:focus-visible),
.ive button:focus:not(:focus-visible) { outline: none; }

/* ------------------------------------------------------------------ *
 * 3. 레이아웃 유틸
 * ------------------------------------------------------------------ */
.ive-container {
    width: 100%;
    max-width: calc(var(--ive-container) + var(--ive-container-pad) * 2);
    margin-inline: auto;
    padding-inline: var(--ive-container-pad);
}
.ive-section { padding-block: var(--ive-section-gap); }
.ive-section--tight { padding-block: var(--ive-section-gap-sm); }
.ive-section--navy { background: var(--ive-color-navy); color: #fff; }
.ive-section.ive-news {padding-block:inherit; margin-bottom: clamp(90px, 12vw, 220px); }
.ive-section.ive-video {padding-block:inherit; margin-top: clamp(90px, 12vw, 220px); margin-bottom: clamp(30px, 4vw, 50px); }


/* 섹션 제목 공통 */
.ive-sec-head { display: flex; flex-direction: column; gap: 14px; }
.ive-sec-head--center { align-items: center; text-align: center; }
.ive-sec-title {
    font-weight: var(--ive-fw-extrabold);
    font-size: clamp(26px, 3vw, 45px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0;
}
.ive-sec-desc {
    font-weight: var(--ive-fw-regular);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.6;
    color: var(--ive-color-text-3);
    margin: 0;
}
.ive-section--navy .ive-sec-desc { color: rgba(255, 255, 255, 0.72); }

.ive-eyebrow {
    font-weight: var(--ive-fw-medium);
    font-size: clamp(13px, 1vw, 16px);
    letter-spacing: 0.02em;
    color: var(--ive-color-slate);
    text-transform: uppercase;
}

/* ------------------------------------------------------------------ *
 * 4. 버튼 공통
 * ------------------------------------------------------------------ */
.ive-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 47px;
    padding: 0 26px;
    border: 1px solid var(--ive-color-navy);
    border-radius: var(--ive-radius-pill);
    background: transparent;
    color: var(--ive-color-navy);
    font-family: inherit;
    font-size: 16px;
    font-weight: var(--ive-fw-medium);
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background-color var(--ive-dur) var(--ive-ease),
                color var(--ive-dur) var(--ive-ease),
                border-color var(--ive-dur) var(--ive-ease),
                transform var(--ive-dur) var(--ive-ease);
}
.ive-btn .arrow { transition: transform var(--ive-dur) var(--ive-ease); }
.ive-btn:hover { background: var(--ive-color-navy); color: #fff; }
.ive-btn:hover .arrow { transform: translateX(4px); }
.ive-btn--solid { background: var(--ive-color-navy); color: #fff; }
.ive-btn--solid:hover { background: var(--ive-color-slate); border-color: var(--ive-color-slate); }
.ive-btn--ghost-white { border-color: #fff; color: #fff; }
.ive-btn--ghost-white:hover { background: #fff; color: var(--ive-color-navy); }
.ive-btn--sm { height: 40px; padding: 0 20px; font-size: 14px; }
.ive-btn--lg { height: 54px; padding: 0 34px; font-size: 17px; }

/* "더보기 →" 텍스트형 링크 */
.ive-more {
    font-size: clamp(14px, 1vw, 16px);
    font-weight: var(--ive-fw-medium);
    color: var(--ive-color-text-2);
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid #0D171F;
    background: #FFF;
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color var(--ive-dur) var(--ive-ease), color var(--ive-dur) var(--ive-ease), border-color var(--ive-dur) var(--ive-ease);
}
.ive-more .arrow { transition: transform var(--ive-dur) var(--ive-ease); }
.ive-more:hover { background: #0D171F; color: #fff; }
.ive-more:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------------ *
 * 5. Swiper 공통 (화살표 / 페이지네이션)
 * ------------------------------------------------------------------ */
.ive-swiper { position: relative; }
.ive-swiper .swiper { width: 100%; }

/* 원형 화살표 버튼 (Figma: 45px 흰 원 + 소프트 그림자, 테두리 없음, 얇은 셰브론) */
.ive-swiper-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #666666;
    cursor: pointer;
    box-shadow: 0 2px 3.5px rgba(0, 0, 0, 0.15);
    transition: background-color var(--ive-dur) var(--ive-ease),
                color var(--ive-dur) var(--ive-ease),
                box-shadow var(--ive-dur) var(--ive-ease);
}
.ive-swiper-nav:hover { background: var(--ive-color-navy); color: #fff; box-shadow: 0 6px 14px rgba(13, 23, 31, 0.22); }
.ive-swiper-nav:disabled { opacity: 0.4; cursor: default; }
.ive-swiper-nav:disabled:hover { background: #fff; color: #666; box-shadow: 0 2px 3.5px rgba(0, 0, 0, 0.15); }
.ive-swiper-nav svg { width: 8px; height: 16px; }

/* 페이지네이션(불릿) */
.ive-swiper .swiper-pagination-bullet {
    width: 8px; height: 8px; background: var(--ive-color-border); opacity: 1;
    transition: width var(--ive-dur) var(--ive-ease), background-color var(--ive-dur) var(--ive-ease);
}
.ive-swiper .swiper-pagination-bullet-active { width: 24px; border-radius: 4px; background: var(--ive-color-navy); }

/* ------------------------------------------------------------------ *
 * 6. 헤더 / GNB (Figma: 흰 배경, 높이 80, 폭 1640, 폰트 20 #111)
 * ------------------------------------------------------------------ */
.ive-header {
    position: sticky;
    top: 0;
    z-index: var(--ive-z-header);
    background: var(--ive-color-white);
    border-bottom: 1px solid var(--ive-color-border);
}
.ive-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--ive-header-h);
    max-width: calc(var(--ive-container) + var(--ive-container-pad) * 2);
    margin-inline: auto;
    padding-inline: var(--ive-container-pad);
}
.ive-header__logo { margin: 0; line-height: 0; flex-shrink: 0; }
.ive-header__logo img { width: clamp(150px, 12vw, 206px); height: auto; }

/* 1depth */
.ive-gnb { flex: 1 1 auto; }
.ive-gnb__1depth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 3.5vw, 68px);
    margin: 0; padding: 0; list-style: none;
}
.ive-gnb__link {
    display: inline-flex;
    align-items: center;
    height: var(--ive-header-h);
    font-size: clamp(16px, 1.15vw, 20px);
    font-weight: var(--ive-fw-regular);
    color: var(--ive-color-text);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}
.ive-gnb__item.is-current > .ive-gnb__link,
.ive-gnb__item:hover > .ive-gnb__link,
.ive-gnb__item:focus-within > .ive-gnb__link { font-weight: var(--ive-fw-medium); }
.ive-gnb__link::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: var(--ive-color-navy); transform: scaleX(0); transition: transform var(--ive-dur) var(--ive-ease);
}
.ive-gnb__item:hover > .ive-gnb__link::after,
.ive-gnb__item:focus-within > .ive-gnb__link::after,
.ive-gnb__item.is-current > .ive-gnb__link::after { transform: scaleX(1); }

/* CTA(진료예약 전화) */
.ive-header__cta { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.ive-header__cta .label { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: var(--ive-color-text-2); }
.ive-header__cta .tel { font-size: clamp(17px, 1.15vw, 20px); font-weight: var(--ive-fw-bold); color: var(--ive-color-navy); text-decoration: none; letter-spacing: -0.01em; }

/* ---- 메가 드롭다운 (전체폭 흰 패널 : nav 마우스오버 시 전체 컬럼 노출) ---- */
.ive-mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid var(--ive-color-border);
    box-shadow: 0 20px 30px rgba(13, 23, 31, 0.06);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity var(--ive-dur) var(--ive-ease), transform var(--ive-dur) var(--ive-ease), visibility var(--ive-dur);
    z-index: var(--ive-z-mega);
}
.ive-header.is-mega-open .ive-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.ive-mega__inner {
    max-width: calc(var(--ive-container) + var(--ive-container-pad) * 2);
    margin-inline: auto; padding: 30px var(--ive-container-pad) 40px;
    display: flex; justify-content: center; align-items: flex-start; gap: clamp(28px, 4vw, 72px);
}
.ive-mega__col { min-width: 96px; text-align: center; }
.ive-mega__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.ive-mega__list a { display: block; font-size: 16px; color: var(--ive-color-text-2); text-decoration: none; letter-spacing: -0.02em; transition: color var(--ive-dur) var(--ive-ease); white-space: nowrap; }
.ive-mega__list a:hover { color: var(--ive-color-navy); font-weight: var(--ive-fw-medium); }
.ive-mega__dim {
    position: fixed; inset: var(--ive-header-h) 0 0 0; background: rgba(13, 23, 31, 0.25);
    opacity: 0; visibility: hidden; transition: opacity var(--ive-dur); z-index: calc(var(--ive-z-mega) - 1);
}
.ive-header.is-mega-open .ive-mega__dim { opacity: 1; visibility: visible; }

/* 햄버거 버튼 (데스크톱 숨김) */
.ive-hd-toggle {
    display: none;
    width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.ive-hd-toggle span { display: block; width: 24px; height: 2px; background: var(--ive-color-navy); transition: transform var(--ive-dur) var(--ive-ease), opacity var(--ive-dur) var(--ive-ease); }

/* ------------------------------------------------------------------ *
 * 7. 히어로 (Figma: 이미지 풀블리드 + 어두운 오버레이, H1 ExtraBold 55)
 * ------------------------------------------------------------------ */
/* 상단 헤더를 제외한 100vh, wrapper/slide 전체높이 → 텍스트 수직 중앙 */
.ive-hero { position: relative; width: 100%; overflow: hidden; }
.ive-hero .ive-hero__inner, .ive-hero .swiper, .ive-hero .swiper-wrapper { height: 100%; }
/* 각 슬라이드가 (뷰포트-헤더) 높이를 직접 가짐 → 텍스트 수직 중앙(Swiper wrapper 상속 의존 X) */
.ive-hero .swiper-slide, .ive-hero__slide { min-height: calc(100vh - var(--ive-header-h)); }
.ive-hero__slide { position: relative; display: flex; align-items: center; justify-content: center; }
.ive-hero__media { position: absolute; inset: 0; z-index: 0; }
.ive-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ive-hero__media::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.28); }
.ive-hero__body {
    height:  calc(100vh - var(--ive-header-h));;
    position: relative; z-index: 1; text-align: center; color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
    padding-inline: 20px; width: 100%;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.ive-hero__eyebrow { font-size: clamp(14px, 1.1vw, 18px); font-weight: var(--ive-fw-medium); letter-spacing: 0.04em; text-transform: uppercase; text-align: center; }
.ive-hero__title { margin: 0; font-size: clamp(28px, 3.6vw, 55px); font-weight: var(--ive-fw-extrabold); line-height: 1.3; letter-spacing: -0.02em; text-align: center; }
.ive-hero__desc { text-align: center; }

/* 히어로 페이지네이션(불릿) 숨김 */
.ive-hero__pager, .ive-hero .swiper-pagination { display: none !important; }

/* Scroll down 인디케이터 */
.ive-hero__scroll { position: absolute; left: 50%; transform: translateX(-50%); bottom: 30px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; }
.ive-hero__scroll .mouse { width: 26px; height: 50px; border: 1px solid #fff; border-radius: 999px; position: relative; }
.ive-hero__scroll .mouse::before { content: ""; position: absolute; left: 50%; top: 8px; width: 8px; height: 8px; margin-left: -4px; border-radius: 999px; background: #fff; animation: ive-scroll 1.6s var(--ive-ease) infinite; }
.ive-hero__scroll .txt { font-size: 15px; font-weight: var(--ive-fw-medium); text-transform: uppercase; letter-spacing: 0.04em; }
@keyframes ive-scroll { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ------------------------------------------------------------------ *
 * 8. 우측 플로팅 퀵독 + TOP
 * ------------------------------------------------------------------ */
.ive-dock { position: fixed; right: clamp(10px, 1.5vw, 30px); bottom: 30px; z-index: var(--ive-z-dock); display: flex; flex-direction: column; gap: 12px;     align-items: center;}
.ive-dock__group { background: #fff; border-radius: var(--ive-radius); box-shadow: var(--ive-shadow-dock); display: flex; flex-direction: column; gap: 20px; padding: 22px 0; width: 80px; align-items: center; }
.ive-dock__item { display: flex; flex-direction: column; align-items: center; gap: 7px; text-decoration: none; color: #222; font-size: 13px; letter-spacing: -0.02em; text-align: center; line-height: 1.25; }
.ive-dock__item img, .ive-dock__item svg { width: 28px; height: 28px; object-fit: contain; }
.ive-dock__top { width: 60px; height: 60px; border-radius: 999px; background: var(--ive-grad-navy); color: #fff; border: 0; cursor: pointer; font-size: 15px; font-weight: var(--ive-fw-medium); display: flex; align-items: center; justify-content: center; }

/* ------------------------------------------------------------------ *
 * 9. 푸터 (E-E-A-T / NAP 상시노출)
 * ------------------------------------------------------------------ */
.ive-footer { background: #0d171f; color: #fff; }
.ive-footer address { font-style: normal; }
.ive-footer__inner { max-width: calc(var(--ive-container) + var(--ive-container-pad) * 2); margin-inline: auto; padding: 50px var(--ive-container-pad); display: flex; align-items: flex-start; gap: clamp(30px, 4vw, 60px); }
.ive-footer__logo { flex-shrink: 0; margin: 0; line-height: 0; }
.ive-footer__logo img { width: clamp(220px, 22vw, 351px); height: auto; }
.ive-footer__body { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.ive-footer__policy { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.ive-footer__policy a { color: #fff; font-size: 15px; font-weight: 500; text-decoration: none; letter-spacing: -0.01em; }
.ive-footer__policy a:hover { text-decoration: underline; }
.ive-footer__policy .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.45); }
.ive-footer__meta { display: flex; flex-direction: column; gap: 7px; }
.ive-footer__row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; color: #fff; letter-spacing: -0.01em; }
.ive-footer__row .it { display: inline-flex; align-items: center; gap: 4px; }
.ive-footer__row .it b { font-weight: 500; }
.ive-footer__row .it span { font-weight: 300; color: rgba(255,255,255,0.9); }
.ive-footer__row .bar { width: 1px; height: 10px; background: rgba(255,255,255,0.3); }
.ive-footer__copy { margin: 6px 0 0; font-size: 12px; font-weight: 300; color: #999; }

/* ------------------------------------------------------------------ *
 * 10. 반응형
 * ------------------------------------------------------------------ */
/* 노트북 */
@media (max-width: 1280px) {
    .ive-gnb__1depth { gap: 28px; }
}
/* 모바일 슬라이드 패널(데스크톱 숨김) */
.ive-gnb-mobile, .ive-gnb-mobile__dim { display: none; }

/* 태블릿 이하: 모바일 메뉴 전환 */
@media (max-width: 1024px) {
    .ive-header__inner  {padding:20px 10px 20px 20px}
    .ive-hd-toggle { display: flex; }
    .ive-header__cta { display: none; }
    .ive-gnb { display: none; }
    .ive-mega, .ive-mega__dim { display: none; }
    /* 모바일: 헤더 고정(overflow:hidden 스크롤락 시에도 상단 고정 유지) */
    .ive-header { position: fixed; top: 0; left: 0; right: 0; }
    #ive-main, #wrapper.ive { padding-top: var(--ive-header-h); }
    .ive-header.is-menu-open .ive-hd-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .ive-header.is-menu-open .ive-hd-toggle span:nth-child(2) { opacity: 0; }
    .ive-header.is-menu-open .ive-hd-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .ive-gnb-mobile { display: flex; position: fixed; top: var(--ive-header-h); right: 0; bottom: 0; width: min(100vw); background: #fff; transform: translateX(100%); transition: transform var(--ive-dur) var(--ive-ease); overflow-y: auto; z-index: var(--ive-z-mobile); -webkit-overflow-scrolling: touch; /* box-shadow: -8px 0 24px rgba(0,0,0,0.08);*/         flex-direction: column;
        justify-content:space-between;}
    .ive-header.is-menu-open ~ .ive-gnb-mobile { transform: translateX(0); }
    .ive-gnb-mobile__list { list-style: none; margin: 0; padding: 8px 0 40px; }
    .ive-gnb-mobile__item { border-bottom: 1px solid var(--ive-color-border-2); }
    .ive-gnb-mobile__link, .ive-gnb-mobile__toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 15px 28px 15px ; font-size: 17px; font-weight: 500; color: var(--ive-color-text); background: none; border: 0; text-align: left; text-decoration: none; cursor: pointer; font-family: inherit; }
    .ive-gnb-mobile__toggle .chev { width: 9px; height: 9px; border-right: 2px solid var(--ive-color-muted); border-bottom: 2px solid var(--ive-color-muted); transform: rotate(45deg); transition: transform var(--ive-dur) var(--ive-ease); }
    .ive-gnb-mobile__item.is-open .ive-gnb-mobile__toggle { color: var(--ive-color-navy); }
    .ive-gnb-mobile__item.is-open .ive-gnb-mobile__toggle .chev { transform: rotate(-135deg); border-color: var(--ive-color-navy); }
    .ive-gnb-mobile__sub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; background: var(--ive-color-bg-soft); transition: max-height var(--ive-dur) var(--ive-ease); }
    .ive-gnb-mobile__item.is-open .ive-gnb-mobile__sub { max-height: 520px; }
    .ive-gnb-mobile__sub a { display: block; padding: 13px var(--ive-container-pad); font-size: 15px; color: var(--ive-color-text-2); text-decoration: none; }
    .ive-gnb-mobile__dim { display: block; position: fixed; inset: var(--ive-header-h) 0 0 0; background: rgba(13,23,31,0.35); opacity: 0; visibility: hidden; transition: opacity var(--ive-dur); z-index: calc(var(--ive-z-mobile) - 1); }
    .ive-header.is-menu-open ~ .ive-gnb-mobile__dim { opacity: 1; visibility: visible; }
}
/* 모바일 */
@media (max-width: 768px) {
    :root { --ive-header-h: 60px; }
    .ive-dock__group { display: none; }
    .ive-hero__scroll { display: none; }
    .ive-footer__inner { padding: 36px var(--ive-container-pad); }
}

/* 모션 최소화 환경 */
@media (prefers-reduced-motion: reduce) {
    .ive *, .ive *::before, .ive *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .ive-hero__scroll .mouse::before { animation: none; }
}

/* ================================================================== *
 * 11. 메인 섹션별 레이아웃
 * ================================================================== */
/* 슬라이더 공통(좌우 화살표가 트랙을 감쌈) */
.ive-treat__slider, .ive-part__slider { display: flex; align-items: center; gap: clamp(12px, 2vw, 40px); }
.ive-treat__slider .ive-swiper, .ive-part__slider .ive-swiper { flex: 1 1 auto; min-width: 0; }
.ive-treat .swiper-slide, .ive-part .swiper-slide, .ive-equip .swiper-slide { height: auto; }
.ive-swiper-nav--light { background: #fff; color: #666; }
.ive-swiper-nav--light:hover { background: var(--ive-color-navy); color: #fff; }

/* 2 · 병원소개 (Figma 5473:239) */
.ive-intro__top { display: grid; grid-template-columns: minmax(0, 783px) 1fr; gap: clamp(40px, 8vw, 132px); align-items: center; }
.ive-intro__visual { border-radius: 20px; overflow: hidden; aspect-ratio: 783 / 442; }
.ive-intro__visual img { width: 100%; height: 100%;  object-position: center bottom; display: block; }
.ive-intro__lead { display: flex; flex-direction: column; align-items: flex-start; }
.ive-intro__eyebrow { font-size: clamp(15px, 1.1vw, 18px); font-weight: 600; color: var(--ive-color-slate); margin: 0 0 16px; letter-spacing: -0.01em; }
.ive-intro__title { margin: 0 0 16px; font-size: clamp(26px, 2.9vw, 40px); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; color: var(--ive-color-text); }
.ive-intro__desc { margin: 0; font-size: clamp(15px, 1.15vw, 18px); font-weight: 400; line-height: 1.5; color: var(--ive-color-text-2); letter-spacing: -0.01em; }
.ive-intro__btn { margin-top: 40px; display: inline-flex; align-items: center; gap: 6px; padding: 12px 30px; border: 1px solid var(--ive-color-navy); border-radius: 50px; font-size: clamp(15px, 1.1vw, 18px); color: var(--ive-color-navy); text-decoration: none; transition: background-color var(--ive-dur) var(--ive-ease), color var(--ive-dur) var(--ive-ease); }
.ive-intro__btn b { font-weight: 700; }
.ive-intro__btn:hover { background: var(--ive-color-navy); color: #fff; }
/* 3특징 단일 카드(3분할) */
.ive-intro__features { list-style: none; margin: clamp(32px, 4vw, 50px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #f2f7fd; border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; background: #fff; }
.ive-intro__feature { display: flex; align-items: center; gap: 24px; padding: 30px clamp(20px, 2.2vw, 40px); border-right: 1px solid #f2f7fd; }
.ive-intro__feature:last-child { border-right: 0; }
.ive-intro__ficon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 16px; border: 1px solid #ccc; background: #fff; }
.ive-intro__ficon img { width: auto; height: auto; max-width: 32px; max-height: 32px; }
.ive-intro__ftxt strong { display: block; font-size: clamp(17px, 1.3vw, 20px); font-weight: 700; color: var(--ive-color-text); margin-bottom: 6px; letter-spacing: -0.02em; }
.ive-intro__ftxt p { margin: 0; font-size: clamp(14px, 1.1vw, 17px); line-height: 1.4; color: var(--ive-color-text-2); letter-spacing: -0.02em; }

/* 3 · 어디가 불편하세요 */
.ive-part__head { margin-bottom: clamp(32px, 4vw, 56px); }

/* 4 · 주요시술 (고정형) — Figma 5450:70 : 배경사진 + 네이비 그라디언트 */
.ive-treat { border-bottom: 1px solid #d8d8d8; padding: var(--ive-section-gap) 0; }
.ive-treat .ive-sec-head { margin-bottom: clamp(32px, 4vw, 40px); }
.ive-treat__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.ive-treat__card { position: relative; display: block; aspect-ratio: 800 / 382; border-radius: 20px; overflow: hidden; text-decoration: none; }
.ive-treat__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform var(--ive-dur) var(--ive-ease); }
.ive-treat__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(56,99,133,0.2) 0%, rgba(34,61,82,0.75) 45%, #0d171f 100%); }
.ive-treat__card:hover .ive-treat__bg { transform: scale(1.04); }
.ive-treat__body { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: clamp(26px, 3vw, 55px) clamp(24px, 3vw, 45px) clamp(26px, 3vw, 45px) clamp(28px, 3.6vw, 59px); color: #fff; }
.ive-treat__icon { flex-shrink: 0; width: 45px; height: 45px; margin-bottom: 0; }
.ive-treat__icon img { width: 100%; height: 100%; object-fit: contain; }
.ive-treat__txt { display: flex; flex-direction: column; }
.ive-treat__en { font-size: clamp(13px, 1vw, 15px); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; }
.ive-treat__name { font-size: clamp(24px, 2.3vw, 35px); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 17px; }
.ive-treat__desc { font-size: clamp(15px, 1.35vw, 20px); font-weight: 400; line-height: 1.5; letter-spacing: -0.02em; }
@media (max-width: 1024px) {
    .ive-treat__grid { grid-template-columns: 1fr; }
    .ive-treat__card { aspect-ratio: auto; min-height: 250px; }
    .ive-treat__body { gap: 20px; }
    .ive-treat__desc br { display: none; }
}

/* 6 · 보유장비 (Figma 5362:2199 / 5362:2238) — 좌: 제목·화살표+진행바 / 우: 카드 스와이퍼 / 어두운 배경 */
.ive-equip-section { position: relative; padding: var(--ive-section-gap) 0; overflow: hidden; color: #fff; background:url(../img/equip_bg.jpg) no-repeat; background-size: cover}
/* 선택 배경사진(equip-bg.*): 어둡게 처리 + 좌측 그라디언트로 흰 글자 가독성 확보 */
.ive-equip-section.has-photo::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: var(--ive-equip-photo); background-size: cover; background-position: center; filter: brightness(0.42) saturate(0.85); }
.ive-equip-section.has-photo::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(13,23,31,0.92) 0%, rgba(13,23,31,0.5) 38%, rgba(13,23,31,0.12) 100%); }
.ive-equip-section__inner { position: relative; z-index: 1; width: 100%; padding-left: max(var(--ive-container-pad), calc((100% - var(--ive-container)) / 2)); display: grid; grid-template-columns: minmax(230px, 300px) minmax(0, 1fr); gap: clamp(28px, 3.4vw, 60px); align-items: center; }
.ive-equip-aside { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 50px); }
.ive-equip-aside__head { gap: 16px; }
.ive-equip-aside__title { margin: 0; font-size: clamp(28px, 3vw, 45px); font-weight: var(--ive-fw-bold); line-height: 1.3; letter-spacing: -0.02em; color: #fff; }
.ive-equip-aside__desc { margin: 0; font-size: clamp(15px, 1.1vw, 18px); font-weight: var(--ive-fw-regular); line-height: 1.5; letter-spacing: -0.02em; color: rgba(255,255,255,0.82); }
.ive-equip-aside__ctrl { display: flex; align-items: center; gap: 22px; }
.ive-equip-progress { position: relative; width: 135px; max-width: 42%; height: 3px; background: #d9d9d9; border-radius: 2px; overflow: hidden; }
.ive-equip-progress__fill { position: absolute; left: 0; top: 0; height: 100%; width: 35%; background: #2d4557; border-radius: 2px; transition: width var(--ive-dur) var(--ive-ease); }
.ive-equip-section .ive-equip { min-width: 0; }
.ive-equip-section .ive-equip .swiper { overflow:hidden; }

/* 7 · 영상 */
.ive-video__head { flex-direction: row; align-items: center; justify-content: space-between; margin-bottom: clamp(15px, 2vw, 20px); }

/* 8 · 병원 뉴스 */
.ive-news__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 30px); }
.ive-newsbox { min-width: 0;  padding: clamp(20px, 2vw, 35px); 
border-radius: 20px;
background: #FFF;
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}
.ive-newsbox__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; margin-bottom: 8px; }
.ive-newsbox__title { margin: 0; font-size: clamp(20px, 1.6vw, 28px); font-weight: 700; }
.ive-newsbox__more { width: 40px; height: 40px; border: 1px solid #0D171F; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ive-color-text-2); text-decoration: none; transition: background-color var(--ive-dur) var(--ive-ease), color var(--ive-dur) var(--ive-ease); }
.ive-newsbox__more:hover { background: var(--ive-color-navy); border-color: var(--ive-color-navy); color: #fff; }
.ive-newsbox__list { list-style: none; margin: 0; padding: 0; }
.ive-newsbox__item { border-top: 1px solid var(--ive-color-border-2); }
.ive-newsbox__item a { display: flex; align-items: center; gap: 16px; padding: 17px 4px; text-decoration: none; color: var(--ive-color-text-2); }
.ive-newsbox__item a:hover .ive-newsbox__subject { color: var(--ive-color-navy); text-decoration: underline; }
.ive-newsbox__subject { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: clamp(16px, 1vw, 18px); }
.ive-newsbox__item.is-notice .ive-newsbox__subject { font-weight: 700; color: var(--ive-color-text); }
.ive-newsbox__new { font-style: normal;  font-size: clamp(16px, 1vw, 18px);  font-weight: 400; color: var(--ive-color-navy); margin-left: 4px; }
.ive-newsbox__date { flex-shrink: 0; font-size: 15px; color: var(--ive-color-muted); }
.ive-newsbox__empty { padding: 40px 4px; text-align: center; color: var(--ive-color-muted); }

/* 9 · 찾아오시는 길 (Figma 5362:2435 : 구글지도 배경 + 우측 흰 카드) */
.ive-map { position: relative; min-height: clamp(520px, 42vw, 680px); display: flex; align-items: center; overflow: hidden; }
.ive-map__bg { position: absolute; inset: 0; z-index: 0; }
.ive-map__bg iframe { width: 100%; height: 100%; border: 0; display: block; }
.ive-map__wrap { position: relative; z-index: 1; width: 100%; display: flex; justify-content: flex-end;  max-width:100%; }
.ive-map__card { width: min(680px, 100%); background: #fff; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: clamp(28px, 3vw, 53px); }
.ive-map__title { margin: 0 0 20px; font-size: clamp(24px, 2.2vw, 35px); font-weight: 600; letter-spacing: -0.02em; color: #111; }
.ive-map__addrbox { margin-bottom: 20px; }
.ive-map__addr { margin: 0 0 4px; font-size: clamp(17px, 1.3vw, 20px); font-weight: 500; color: #111; line-height: 1.6; }
.ive-map__sub { margin: 0; font-size: clamp(14px, 1.1vw, 17px); color: #555; line-height: 1.6; }
.ive-map__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.ive-map__btn { flex: 1 1 0; min-width: 190px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 50px; padding: 0 16px; background: #f5f5f5; border-radius: 10px; text-decoration: none; color: #111; font-size: clamp(14px, 1.1vw, 17px); transition: background-color var(--ive-dur) var(--ive-ease); }
.ive-map__btn:hover { background: #ececec; }
.ive-map__btn img { width: 31px; height: 30px; object-fit: contain; flex-shrink: 0; }
.ive-map__btn span { font-weight: 300; }
.ive-map__btn b { font-weight: 500; }
.ive-map__bottom { margin-top: 30px; padding-top: 30px; border-top: 1px solid #d8d8d8; display: flex; flex-direction: column; gap: 30px; }
.ive-map__row { display: flex; gap: 30px; align-items: flex-start; }
.ive-map__label { flex-shrink: 0; font-size: clamp(17px, 1.3vw, 20px); font-weight: 600; color: #2d4557; letter-spacing: -0.02em; padding-top: 2px; }
.ive-map__tel { font-size: clamp(20px, 1.7vw, 25px); font-weight: 700; color: #333; text-decoration: none; letter-spacing: -0.02em; }
.ive-map__hourswrap { display: flex; flex-direction: column; gap: 12px; }
.ive-map__hours { margin: 0; display: flex; flex-direction: column; gap: 5px; }
.ive-map__hours > div { display: flex; gap: 30px; font-size: clamp(16px, 1.3vw, 20px); letter-spacing: -0.02em; }
.ive-map__hours dt { width: 80px; margin: 0; font-weight: 500; color: #111;     text-align: justify;    text-align-last: justify;    text-justify: inter-character; }
.ive-map__hours dd { margin: 0; font-weight: 400; color: #333; }
.ive-map__note { margin: 0; font-size: 16px; color: #888; }


.ive-gnb-mobile .hidden_bottom {padding:15px 28px}

/* --- 메인 섹션 반응형 --- */
@media (max-width: 1024px) {
    .ive-intro__top { grid-template-columns: 1fr; }
    .ive-intro__features { grid-template-columns: 1fr; }
    .ive-intro__feature { border-right: 0; border-bottom: 1px solid var(--ive-color-border-2); }
    .ive-intro__feature:last-child { border-bottom: 0; }
    .ive-news__grid { grid-template-columns: minmax(0, 1fr); }
    .ive-footer__inner { flex-direction: column; gap: 24px; }
    .ive-map__card { width: min(560px, 100%); }
    /* treat·equip 세로 패딩은 base 의 var(--ive-section-gap) clamp 로 반응형 처리(하드 100px 제거) */
    .ive-equip-aside__desc br {display:none}
    .ive-equip-progress {width:30%; max-width: 50%;}
}
@media (max-width: 768px) {
    .ive-treat__slider .ive-swiper-nav, .ive-part__slider .ive-swiper-nav { display: none; }
    .ive-equip-section__inner { grid-template-columns: 1fr; row-gap: 28px; }
    .ive-equip-aside { padding-right: var(--ive-container-pad); }
    .ive-video__head { flex-wrap: wrap; gap: 12px; }
    /* 지도: 세로 스택(지도 위 / 카드 아래) */
    .ive-map { display: block; min-height: 0; }
    .ive-map__bg { position: relative; inset: auto; height: 300px; }
    .ive-map__wrap { position: static; }
    .ive-map__card { width: 100%; border-radius: 0; box-shadow: none;     padding:30px 0px}
    .ive-map__row { gap: 16px; }
    .ive-footer__row { gap: 8px 12px; }
    .ive-map__hours dt {width:60px}
	.ive-equip-aside__ctrl {gap:10px}

   .ive-gnb-mobile .ive-map__label {font-size:15px}
   .ive-gnb-mobile .ive-map__tel {font-size:18px}
   .ive-gnb-mobile .ive-map__hours > div {font-size:14px}
   .ive-gnb-mobile .ive-map__note {font-size:14px}
}

/* ================================================================== *
 * 섹션 3 · 신체 부위별 질환 Q&A (.ive-bodyqna) — Figma 5443:171 실측 기준
 *   좌 인체 비주얼(로고+바디 SVG+포인트)+부위 선택 슬라이더 / 우 증상 Q&A 아코디언
 * ================================================================== */
.ive-bodyqna { position: relative; overflow: hidden; color: #fff; background: #0b1219; }
.ive-bodyqna__inner { display: grid; grid-template-columns: minmax(0, 880px) minmax(0, 1fr);
    align-items: center; gap: clamp(24px, 3vw, 56px); width: 100%; max-width: 1920px; margin-inline: auto;
    padding-block: clamp(48px, 5vw, 72px); padding-inline: clamp(16px, 3vw, 60px);
    min-height: clamp(720px, 50vw, 1000px); }

/* --- 좌: 인체 비주얼 --- */
.ive-bodyqna__visual { display: flex; flex-direction: column; align-items: center; gap: clamp(18px, 3vw, 34px); min-width: 0; }
.ive-bodyqna__stage { position: relative; width: min(100%, 460px); aspect-ratio: 545 / 601; }
.ive-bodyqna__watermark { position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%);
    width: 84%; height: auto;  pointer-events: none; z-index: 1; }
.ive-bodyqna__body { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: .92; pointer-events: none; z-index: 2; }
.ive-bodyqna__points { position: absolute; inset: 0; z-index: 3; }
.ive-bodyqna__point { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
    width: 46px; height: 46px; padding: 0; border: 0; background: none; cursor: pointer; display: grid; place-items: center; }
/* 붉은 번짐(할로): 비활성 작고 은은 / 활성 크고 진하게 */
.ive-bodyqna__point::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 22px; height: 22px; border-radius: 50%; z-index: 0;
    background: radial-gradient(circle, rgba(255,47,47,.5) 0%, rgba(255,47,47,0) 70%);
    transition: width .25s var(--ive-ease), height .25s var(--ive-ease), background .25s var(--ive-ease); }
/* 코어 점: 검정 + 흰 테두리 */
.ive-bodyqna__dot { position: relative; z-index: 2; display: block; width: 11px; height: 11px; border-radius: 50%;
    background: #0d1420; border: 2px solid #fff; box-shadow: 0 1px 3px rgba(0,0,0,.5); transition: background .2s, transform .2s var(--ive-ease); }
.ive-bodyqna__point:hover .ive-bodyqna__dot { transform: scale(1.12); }
.ive-bodyqna__point:hover::before { width: 30px; height: 30px; }
.ive-bodyqna__point.is-active .ive-bodyqna__dot { background: #ff2f2f; width: 13px; height: 13px; }
.ive-bodyqna__point.is-active::before { width: 46px; height: 46px; background: radial-gradient(circle, rgba(255,47,47,.9) 0%, rgba(255,47,47,.45) 38%, rgba(255,47,47,0) 72%); }
.ive-bodyqna__point.is-active::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 16px;
    border-radius: 50%; background: rgba(255,47,47,.4); transform: translate(-50%, -50%); z-index: 1; animation: bodyPointPulse 1.7s ease-in-out infinite; }
@keyframes bodyPointPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
    50%      { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* --- 좌 하단: 부위 선택 슬라이더 --- */
.ive-bodyqna__selector { position: relative; display: flex; align-items: center; gap: 6px; width: 100%; max-width: 780px; }
.ive-bodyqna__nav { flex: 0 0 auto; width: 40px; height: 40px; border: 0; border-radius: 50%;
    background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s; z-index: 3; }
.ive-bodyqna__nav:hover { background: rgba(255,255,255,.24); }
.ive-bodyqna__nav svg { width: 8px; height: 16px; }
.ive-bodyqna__track { flex: 1 1 auto; min-width: 0; padding: 16px 0 18px; }
.ive-bodyqna__track .swiper-wrapper { align-items: center; box-sizing: border-box; }
.ive-bodyqna__chip.swiper-slide { width: 150px; height: auto; }
/* 양옆 그라데이션 마스크 (스샷처럼 가장자리 칩 가림) */
.ive-bodyqna__selector::before, .ive-bodyqna__selector::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(36px, 12%, 96px); z-index: 2; pointer-events: none; }
.ive-bodyqna__selector::before { left: 38px; background: linear-gradient(90deg, #0b1219 14%, rgba(11,18,25,0) 100%); }
.ive-bodyqna__selector::after  { right: 38px; background: linear-gradient(270deg, #0b1219 14%, rgba(11,18,25,0) 100%); }
.ive-bodyqna__chip { flex: 0 0 auto; width: 150px; display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 0 0 10px; background: #fff; border: 0; border-radius: 10px; overflow: hidden;
    opacity: .55; transform: scale(.88); transform-origin: center bottom; cursor: pointer; scroll-snap-align: center;
    transition: opacity .25s var(--ive-ease), transform .25s var(--ive-ease), box-shadow .25s var(--ive-ease); }
.ive-bodyqna__chip.is-active, .ive-bodyqna__track .swiper-slide-active.ive-bodyqna__chip { opacity: 1; transform: scale(1); border: 3px solid #fff; box-shadow: 0 8px 22px rgba(0,0,0,.4); }
.ive-bodyqna__thumb { display: block; width: 100%; height: 90px; background: #d9d9d9 center / cover no-repeat; }
.ive-bodyqna__thumb[data-empty] { background: linear-gradient(135deg, #eef1f4 0%, #ccd4db 100%); }
.ive-bodyqna__chip-label { font-size: 18px; font-weight: 600; color: #011230; letter-spacing: -0.02em; line-height: 1.3; padding-top:10px; display: block;}

/* --- 우: Q&A --- */
.ive-bodyqna__content { display: flex; flex-direction: column; align-items: center; gap: clamp(18px, 2.2vw, 28px); min-width: 0; }
.ive-bodyqna__head { gap: 8px; }
.ive-bodyqna__title { margin: 0; font-size: clamp(26px, 2.7vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; color: #fff; text-align: center; }
.ive-bodyqna__subtitle { margin: 0; font-size: clamp(15px, 1.2vw, 18px); font-weight: 500; color: rgba(255,255,255,.85); text-align: center; letter-spacing: -0.02em; }
.ive-bodyqna__dots { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ive-bodyqna__dots i { width: 5px; height: 5px; border-radius: 50%; }
.ive-bodyqna__dots i:nth-child(1) {background: rgba(255, 255, 255, 0.2); animation: bodyqnaDot 1s infinite; }
.ive-bodyqna__dots i:nth-child(2) {background: rgba(255, 255, 255, 0.60); animation: bodyqnaDot 1.2s infinite; }
.ive-bodyqna__dots i:nth-child(3) {background: rgba(255, 255, 255, 0.80); animation: bodyqnaDot 1.4s infinite; }
.ive-bodyqna__dots i:nth-child(4) {background: rgba(255, 255, 255, 1); animation: bodyqnaDot 1.6s infinite; }
.ive-bodyqna__panels { width: 100%; max-width: 760px; }
.ive-bodyqna__panel[hidden] { display: none; }
.ive-bodyqna__prompt { margin: 0 0 20px; font-size: clamp(15px, 1.1vw, 17px); font-weight: 400; color: #fff; text-align: center; letter-spacing: -0.02em; }
.ive-bodyqna__qlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ive-bodyqna__q { display: grid; grid-template-columns: 25px 1fr 30px; align-items: center; gap: 16px; width: 100%;
    min-height: 90px; padding: 14px 20px 14px 25px; /* border: 2px solid transparent;  */
    /*background: radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.13), transparent 38%) padding-box,
        linear-gradient(115deg, rgba(0, 0, 0, 0.94) 0%, rgba(25, 44, 57, 0.86) 50%, rgba(100, 100, 100, 0.92) 100%) padding-box,
        linear-gradient(135deg, rgba(13, 23, 31, 0.9) 0%, rgba(255, 255, 255, 0.4) 18%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0.02) 62%, rgba(148, 190, 212, 0.35) 82%, rgba(0, 0, 0, 0.75) 100%) border-box; */
        border-radius: 15px; background: rgba(0, 0, 0, 0.10);
         border-top: 1px solid rgba(255, 255, 255, 0.5);
         border-left: 1px solid rgba(255, 255, 255, 0.4);
         border-right: 1px solid rgba(255, 255, 255, 0.2);
         border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff; text-align: left; cursor: pointer; font-family: inherit;
    transition: border-color .2s var(--ive-ease), background .2s var(--ive-ease); 

    }
.ive-bodyqna__q:hover, .ive-bodyqna__qitem.is-open .ive-bodyqna__q { border-color: #fff; background: rgba(255,255,255,.1); }
.ive-bodyqna__q-mark { font-size: 25px; font-weight: 300; line-height: 1; text-align: center; letter-spacing: -0.02em; color: #fff; }
.ive-bodyqna__q-text { font-size: clamp(15px, 1.15vw, 18px); font-weight: 400; line-height: 1.4; letter-spacing: -0.02em; color: #fff; word-break: keep-all; overflow-wrap: break-word; }
.ive-bodyqna__q-check { width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--ive-color-navy);
    display: grid; place-items: center; opacity: 0; transform: scale(.6); transition: opacity .2s var(--ive-ease), transform .2s var(--ive-ease); }
.ive-bodyqna__q:hover .ive-bodyqna__q-check, .ive-bodyqna__qitem.is-open .ive-bodyqna__q-check { opacity: 1; transform: scale(1); }
.ive-bodyqna__q-check svg { width: 18px; height: 18px; }
.ive-bodyqna__answer { padding: 6px 25px 20px; animation: bodyqnaAnsIn .24s var(--ive-ease); }
.ive-bodyqna__answer[hidden] { display: none; }
.ive-bodyqna__disease { margin: 6px 0 14px; font-size: clamp(15px, 1.1vw, 17px); font-weight: 700; color: #fff; letter-spacing: -0.02em; word-break: keep-all; }
.ive-bodyqna__dl { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ive-bodyqna__dl > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.ive-bodyqna__dl dt { margin: 0; font-size: 13px; font-weight: 700; color: #7fb0d8; padding-top: 3px; letter-spacing: -0.02em; }
.ive-bodyqna__dl dd { margin: 0; font-size: clamp(14px, 1vw, 15px); line-height: 1.65; color: rgba(255,255,255,.82); word-break: keep-all; overflow-wrap: break-word; }
.ive-bodyqna__journal { margin: 20px 0 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.45); word-break: keep-all; }
.ive-bodyqna__journal span { display: inline-block; margin-right: 8px; padding: 2px 9px; border: 1px solid rgba(255,255,255,.24); border-radius: 20px; color: rgba(255,255,255,.6); font-weight: 600; }
@keyframes bodyqnaAnsIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* --- 반응형 --- */
@media (max-width: 1024px) {
    .ive-bodyqna__inner { grid-template-columns: 1fr; gap: clamp(32px, 5vw, 48px); min-height: 0; }
    .ive-bodyqna__stage { width: min(78%, 380px); }
    .ive-bodyqna__selector { max-width: 620px; margin-inline: auto; }
}
@media (max-width: 768px) {
    .ive-bodyqna__q { grid-template-columns: 22px 1fr 26px; gap: 12px; padding: 14px 16px; min-height: 0; }
    .ive-bodyqna__q-mark { font-size: 20px; }
    .ive-bodyqna__q-check { width: 26px; height: 26px; }
    .ive-bodyqna__q-check svg { width: 15px; height: 15px; }
    .ive-bodyqna__answer { padding: 6px 16px 18px; }
    .ive-bodyqna__dl > div { grid-template-columns: 40px 1fr; gap: 10px; }
    .ive-bodyqna__chip { width: 128px; }
    .ive-bodyqna__thumb { height: 72px; }
    .ive-bodyqna__nav { width: 36px; height: 36px; }
    .ive-bodyqna__stage { width: min(88%, 320px); }
    .ive-footer__policy {padding-bottom:10px}
	
	.ive-bodyqna__chip-label {font-size:14px; padding-top:2px;}
	.ive-bodyqna__chip.swiper-slide {width:100px}
	.ive-bodyqna__chip {padding:0px 0px 2px}
	.ive-swiper-nav {width:35px; height:35px;}
	.ive-swiper-nav svg {width:6px; height:10px;}
}
@media (prefers-reduced-motion: reduce) {
    .ive-bodyqna__point.is-active::after { animation: none; }
    .ive-bodyqna__answer { animation: none; }
    .ive-bodyqna__track { scroll-behavior: auto; }
}


.root_daum_roughmap .wrap_controllers {display: none !important;}
.root_daum_roughmap .cont .section.lst {display: none !important;}