/* HERO */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #fff;
  overflow: hidden;
   isolation: isolate;
}

.hero-swiper {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 0;
}

.hero__slide {
  position: relative;
  height: 100%;
  width: 100%;

  background-size: auto;         
  background-position: center;   

  display: flex;
  align-items: center;
  justify-content: center;

  object-fit: cover;
  object-position: center center;
  transform: matrix(1, 0, 0, 1, 0, 0);

  overflow: hidden;
  
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background-position: center;
  background-size: cover;     
  background-repeat: no-repeat;

  transform: scale(1);        
  will-change: transform;     
  z-index: 0;                 
  backface-visibility: hidden;
  transform-origin: center;
}
.hero { isolation: isolate; } /* 스태킹 컨텍스트 고정(안전) */
.hero__slide{
  position: relative;
  overflow: hidden;
  transform: translateZ(0); /* iPad Safari 합성 안정화 */
}
.hero,
.hero-swiper,
.swiper,
.swiper-wrapper{
  background: #000;  /* 또는 hero 톤에 맞는 색 */
}

/* 배경 */
.hero__slide::before{
  content:"";
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  z-index:0;
  transform: translateZ(0); /* ✅ */
  backface-visibility:hidden;
}

/* ✅ 딤(오버레이) */
.hero__slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.65), rgba(0,0,0,.2));
  z-index:1;
  pointer-events:none;
  transform: translateZ(0); /* ✅ iPad Safari에서 “딤이 사라짐” 방지용 */
}

/* 텍스트/썸네일 영역은 항상 최상단 */
.hero__inner{
  position:absolute;
  inset:0;
  z-index:2;
}

.hero__slide--1::before {
  background-image: url('../img/bg_full1.jpg');
}
.hero__slide--2::before {
  background-image: url('../img/bg_full2.png');
}
.hero__slide--3::before {
  background-image: url('../img/bg_full3.jpg');
}

.hero__slide--1 {
  background-image: url('../img/bg_full1.jpg');
}
.hero__slide--2 {
  background-image: url('../img/bg_full2.png');
}
.hero__slide--3 {
  background-image: url('../img/bg_full3.jpg');
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.83vw;
}

.hero__title {
  font-size: 4.16vw;
  font-weight: 700;
  line-height: 120%;
}
.hero__subtitle {
  margin: 0 0 1.25vw;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 140%;
}

.hero__gallery {
  display: flex;
  gap: 0.83vw;
  justify-content: center;
}

.hero__thumb {
  width: 5.2vw;
  height: 5.2vw;
  overflow: hidden;
  border-radius: 0.52vw;
  cursor: pointer;
}
.hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6; 
  transition: opacity 0.35s ease;
}

.hero__thumb--active img {
  opacity: 1;
}

.hero__thumb:not(.hero__thumb--active):hover img {
  opacity: 1;
}

@keyframes heroZoomInTf {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); 
  }
}

.hero-swiper .swiper-slide-active.hero__slide::before {
  animation: heroZoomInTf 6s ease-out forwards;
}

.scroll-area{
  position: absolute;
  display: flex;
  gap: 0.2vw;
  left: 50%;
  top: 88.88%;
  transform: translate(-50%, -50%);
  z-index: 1;
  flex-direction: column;
  align-items: center;
}

.scroll-area .scroll_img{
  width: 1.25vw;
  height: 1.25vw;
  background-color: white;
  -webkit-mask: url('/img/icn_scroll.svg') no-repeat center;
  mask: url('/img/icn_scroll.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.25s ease-in-out;
}

.scroll-area .scroll_text{
  font-size: 0.625vw;
  line-height: 1;
}




/* WORLD MAP */
.world{ padding:5.416vw 0 0;  height: 100vh;}
.world .container{
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 마지막(.stats-bar) 바닥 */
.world .container > :last-child{
  margin-top: auto;
}

/* ✅ 두번째(.world__map)를 남는 공간의 중앙으로 */
.world .container > :nth-child(2){
  margin-top: auto;
  margin-bottom: auto;
}
.world__heading{text-align: center;font-size: 2.08vw;font-weight: 700;line-height: 140%; padding-bottom: 2.08vw;}
.world__map{display: flex; align-items: center; width: 100%; justify-content: center; }
.world__wrap{width: 72.6vw;  position: relative;}

/* STATS BAR */
.stats-bar{ 
  background:#0b0b0b;
  color:#fff; 
  margin-top:2.08vw; 
  height: 6.66vw; 
  display: flex;
}
.stats-bar .stats__inner{ display:flex; gap:5vw; justify-content:center; align-items:center; margin:0 auto; }
.stats-bar .right{display: flex; gap: 2.08vw;}
.stats-bar .stat{ display:flex; flex-direction: column; gap: 0.83vw; text-align:center; align-items: center;}
.stats-bar .stat__label{ color: rgba(255, 255, 255, 0.60); font-size:0.83vw; font-weight: 600; line-height: 100%; display: flex; align-items: center; }
.stats-bar .stat__label.icon::before{ 
  content: ""; 
  display: inline-block;
  width: 0.83vw;
  height: 0.83vw;
  background-color: white;       
  -webkit-mask: url('/img/icn_world.svg') no-repeat center;
  mask: url('/img/icn_world.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.25s ease-in-out;
  margin-right: 0.41vw;
  opacity: 1 !important;
}
.stats-bar .stat__num { font-weight:700; font-size:2.08vw; }
.stats-bar .stat__num.colored{color: #E06E64;}


/* youtube */
.yt.section{
  height: 100vh;
  background: #fff;           
  padding: 5.416vw 4.16vw 2.5vw;
  box-sizing: border-box;
  display: flex;
}

.yt__content{
  flex: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  container-type: size;
}

.yt__player{
  width:  min(100cqw, calc(100cqh * 16 / 9));
  height: min(100cqh, calc(100cqw * 9 / 16));
  overflow: hidden;
  border-radius: 10px;
}

.yt__player iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.yt__player{
  position: relative;
}

.yt__player iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.yt__gate{
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.yt__player.is-interactive iframe{
  pointer-events: auto;
}
.yt__player.is-interactive .yt__gate{
  display: none;
}


/* Media grid */
.media{ 
  height: 100vh;
  padding: 5.416vw 4.16vw 2.08vw;
  background: #F4F4F4;
  display: flex;
  flex-direction: column;
  gap: 2.08vw;
  justify-content: center;
}

.media__heading-row{ 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
}

.media__heading-row h3{ 
  font-size: 2.08vw; 
  font-weight: bold; 
  line-height: 140%;
}

.media__heading-row .media__cta .btn{
  font-size: 0.83vw; 
  padding: 1.25vw; 
  gap: 0.2083vw; 
  font-weight: bold; 
  text-transform: uppercase; 
  border: 1px solid #000; 
  display: inline-flex; 
  align-items: center;
  height: 2.91vw;
}

.media__heading-row .media__cta .btn::after{ 
  content: ""; 
  display: inline-block;
  width: 0.83vw;
  height: 0.83vw;
  background-color: black;       
  -webkit-mask: url('/img/icn_arrow_go.svg') no-repeat center;
  mask: url('/img/icn_arrow_go.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.25s ease-in-out;
  opacity: 1 !important;
}

.media-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.83vw;
}

.media-card{
  padding: 1.04vw 1.25vw;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  height: fit-content;
}

.media-card:hover{
  opacity: 0.8;
}

.media-card .slide-wrap{
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
  height: 100%;
  min-height: 0;
  justify-content: space-between;
}

.media-card .img-wrap{
  height: 8.95vw;
  width: 100%;
  overflow: hidden;
}

.media-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.media-card .slide-wrap .slide-info{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-card .slide-overlay{
  display: flex;
}

.media-card .slide-caption{
  display: flex;
  flex-direction: column;
}

.media-card .slide-wrap .slide-caption h2{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1.04vw;
  line-height: 1.4;
  margin-bottom: 0.208vw;
}
.media-card .meta-row{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.833vw;
  line-height: 1.4;
}




/* ===== slide-info meta & button ===== */
.media-card .slide-wrap .slide-info .media__meta{
  display: flex;
  align-items: center;
  gap: 0.416vw;
  font-size: 0.83vw;
}

.media-card .slide-wrap .slide-info .media__meta .line{
  background: rgba(0, 0, 0, 0.10);
  width: 1px;
  height: 0.83vw;
}

.media-card .slide-wrap .slide-info .btn-go{
  display: inline-block;
  width: 0.83vw;
  height: 0.83vw;
  background-color: black;
  -webkit-mask: url('/img/icn_arrow_go.svg') no-repeat center;
  mask: url('/img/icn_arrow_go.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.25s ease-in-out;
  opacity: 1 !important;
}




/* ===== Service ===== */

section.service {
  height: 74.88vh;
  padding: 5.416vw 4.16vw 2.39vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

section.service > h3 {
  font-size: 2.08vw;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 2.08vw;
}
section.service > h4 {
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 0.833vw;
  margin-right: auto;
}

section.service .service-group {
  display: flex;
  gap: 0.833vw;
  max-height: 20.83vw;
  height: 100%;
}

section.service .service-item {
  position: relative;
  overflow: hidden;
  width: 14.58vw;
  border-radius: 10px;
}

section.service .service-item img.background {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

section.service .service-item .service-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.833vw;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  transition: opacity 420ms ease, transform 420ms ease;
  z-index: 2;
  color: white;
  width: calc(100% - 1.66vw);
}

section.service .service-item .service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);

  opacity: 0;
  transform: scale(1);
  transition: opacity 420ms ease, transform 420ms ease;

  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 0.833vw;
  line-height: 140%;
  color: #FFF;
  padding: 0 0.833vw;
  z-index: 1;

  flex-direction: column;
  gap: 0.416vw;
}
section.service .service-item .service-overlay .strong {
  font-weight: 700;
}

section.service .service-item:hover .service-overlay,
section.service .service-item:focus-within .service-overlay {
  opacity: 1;
}

section.service .service-item:hover .service-text,
section.service .service-item:focus-within .service-text {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(0);
}


/* Contact */
.contact{
  height: 25.12vh;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25vw;
  justify-content: center;
  padding: 2.5vw 0;
}
.contact h3{
  color: #FFF;
  font-size: 1.875vw;
  font-weight: 700;
  line-height: 1.4;
}
.contact a{
  padding: 1.25vw;
  background-color: #fff; 
  gap: 0.3125vw;  
  font-weight: bold; 
  text-transform: uppercase; 
  display: flex; 
  align-items: center;
  font-size: 0.83vw;
  height: 2.91vw;
}

.contact a::after{ 
  content: ""; 
  display: inline-block;
  width: 0.83vw;
  height: 0.83vw;
  background-color: black;       
  -webkit-mask: url('/img/icn_arrow_go.svg') no-repeat center;
  mask: url('/img/icn_arrow_go.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.25s ease-in-out;
  opacity: 1 !important;
}


/* ========= Popup Overlay ========= */

.world__popupOverlay {
  position: absolute; /* wrapper 기준 */
  z-index: 10000;     /* 툴팁보다 위 */
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  width: 14.79vw;
  height: 24.16vw;

  top: 4.27vw;
  left: 35.93vw;
}

.world__popupOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.world__popupPanel {
  width: 14.8vw;
  border-radius: 0.52vw;
  background: #fff;
  box-shadow: 0 0.52vw 1.04vw 0 rgba(0, 0, 0, 0.20);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  overflow: visible;
}

.world__popupOverlay.is-open .world__popupPanel {
  transform: translateY(0);
  opacity: 1;
  height: 100%;
}

.world__popupHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.833vw;
  position: unset;
}

.world__popupTitle {
  font-size: 0.833vw;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.world__popupClose {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 0.83vw;
  height: 0.83vw;
  border-radius: 0.52vw;
  display: grid;
  place-items: center;
  position: absolute;
  top: 16px;
  right: 16px;
}
.world__popupClose.is-touch {
  position: absolute;
  bottom: 16px;
  right: 0;
  transform: translateX(-50%);
  z-index: 4;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;
  padding: 0;

  background: white;
  border-radius: 10px;

  top: unset;
}
.world__popupClose:hover {
  background: rgba(0,0,0,0.06);
}

/* ========= Popup Body with Korea Map ========= */

.world__popupBody {
  padding: 0;
}

.world__popupMapWrap {
  width: 100%;
  padding: 0 0.83vw 0.83vw;
  box-sizing: border-box;
}

.world__popupMapCard {
  width: 100%;
  background: #fff; /* 본 지도 배경과 동일 */
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  position: relative;
}

.world__popupMapCanvas {
  width: 100%;
  height: auto;
  display: block;
}

.world__popupOverlay.is-prewarm {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}


/* 캔버스 카드가 기준점이 되도록 */
.world__popupMapCard{
  position: relative;
  overflow: visible;          
}

/* 캔버스 */
.world__popupMapCanvas{
  display: block;
  width: 100%;
  height: auto;
}

/* Seoul 말풍선 */
.world__popupTag{
  position: absolute;
  left: 2.75vw;
  top: 2.61vw;
  z-index: 100005;

  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: 0.83vw;
  line-height: 1;

  padding: 0.416vw;
  border-radius: 0.52vw;

  box-shadow: 0 0.52vw 1.04vw 0 rgba(0, 0, 0, 0.20);

  pointer-events: none;        
  user-select: none;
  white-space: nowrap;
}

/* 말풍선 꼬리 */
.world__popupTag::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);

  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;  /* 아래로 향하는 삼각형 */

  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.12));
}







@media (max-width: 1201px) {


.hero__inner {
  gap: 2.14vw;
}

.hero__title {
  font-size: 5.36vw;
}
.hero__subtitle {
  margin: 0 0 3.22vw;
  font-size: 2.14vw;
}

.hero__gallery {
  gap: 2.14vw;
}

.hero__thumb {
  width: 13.42vw;
  height: 13.42vw;
  border-radius: 1.34vw;
}

.scroll-area{
  gap: 0.536vw;
  top: 80.53%;
}

.scroll-area .scroll_img{
  width: 3.22vw;
  height: 3.22vw;
}
.scroll-area .scroll_text{
  font-size: 1.61vw;
  line-height: 100%;
}




/* WORLD MAP */
.world{ padding:11.81vw 0 0;  height: auto;}
.world .container{ display: flex; flex-direction: column; align-items: center;}
.world__heading{font-size: 5.36vw;line-height: 120%; padding-bottom: 2.14vw; width: 57.71vw;}
.world__wrap{width: 100vw; height: 95.03vw;}



/* STATS BAR */
.stats-bar{ 
  margin:unset; 
  height: 27.91vw; 
  width: 100%;
  border-radius: 10px 10px 0 0;
  padding: 3.22vw 0;
  line-height: 1;
}
.stats-bar .stats__inner{ 
  flex-direction: column;
  gap:4.29vw; 
}
.stats-bar .right{gap: 3.22vw;}
.stats-bar .stat{ 
  gap: 2.14vw; 
}
.stats-bar .stat__label{ 
  font-size:2.14vw; 
}
.stats-bar .stat__label.icon::before{ 
  width: 2.14vw; 
  height: 2.14vw; 
  margin-right: 1.07vw;
}
.stats-bar .stat__num { font-size:4.29vw; }

/* youtube */
.yt.section{
  height: 75.43vw;       
  padding: 10.73vw 2.14vw;
}

/* Media grid */
.media{ 
  height: auto;
  padding: 10.73vw 0 10.73vw 2.14vw;
  gap: 5.36vw;
}

.media__heading-row{
  flex-direction: column;
  gap: 5.36vw;
}

.media__heading-row h3{ 
  font-size: 5.36vw; 
  line-height: 120%;
}

.media__heading-row .media__cta{
  width: 100%;
}

.media__heading-row .media__cta .btn{
  font-size: 2.14vw;
  padding: 3.22vw; 
  gap: 0.536vw; 
  height: 7.516vw;
  width: calc(100% - 2.14vw);
  display: flex;
  justify-content: center;
  margin-right: 2.14vw;
}

.media__heading-row .media__cta .btn::after{ 
  width: 2.14vw;
  height:  2.14vw;
}

.media-list{
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 2.14vw;

  /* ✅ 태블릿 관성 스크롤 */
  -webkit-overflow-scrolling: touch;

  /* ✅ 가로 스와이프를 브라우저에게 확실히 허용 */
  touch-action: pan-x;

  /* ✅ 스크롤 체인/튐 완화 */
  overscroll-behavior-x: contain;

  /* ✅ (선택) 카드 단위 스냅: “정석” UX */
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2.14vw;

  /* ✅ 성능/페인트 범위 최소화 */
  contain: layout paint;
}


.media-card{
  padding: 2.14vw;
  width: 41.74vw;
}

.media-card .slide-wrap{
  gap: 3.22vw;
}

.media-card .img-wrap{
  height: 21.87vw;
  width: 37.44vw;
}

.media-card .slide-wrap .slide-caption h2{
  font-size: 3.22vw;
  line-height: 1.4;
  margin-bottom: 1.07vw;
}
.media-card .meta-row{
  font-size: 2.14vw;
  -webkit-line-clamp: 3;
}

.media-card .slide-wrap .slide-info .media__meta{
  gap: 1.07vw;
  font-size: 2.14vw;
}

.media-card .slide-wrap .slide-info .media__meta .line{
  background: rgba(0, 0, 0, 0.10);
  width: 1px;
  height: 2.14vw;
}

.media-card .slide-wrap .slide-info .btn-go{
  width: 2.14vw;
  height: 2.14vw;
}




/* ===== Service ===== */

section.service {
  height: unset;
  padding: 10.73vw 0 10.73vw 2.14vw;
  justify-content: unset;
}

section.service > h3 {
  font-size: 5.36vw;
  margin-bottom: 5.36vw;
}
section.service > h4 {
  font-size: 3.22vw;
  margin-bottom: 2.14vw;
}

section.service .service-group{
  width: 100%;
  gap: 2.14vw;
  max-height: 32.21vw;

  display: flex;
  overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;

  /* (선택) 스냅 */
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2.14vw;

  contain: layout paint;
}

/* 스크롤바 숨김(선택) */
section.service .service-group::-webkit-scrollbar{ display:none; }
section.service .service-group{ scrollbar-width:none; }


section.service .service-item {
  min-width: 37.58vw;
  border-radius: 10px;
}

section.service .service-item .service-text {
  font-size: 2.14vw;
  width: calc(100% - 4.29vw);
}

section.service .service-item .service-overlay {
  font-size: 2.14vw;
  padding: 0 2.14vw;
}
section.service .service-item .service-overlay .strong {
  font-weight: 700;
}

/* Contact */
.contact{
  height: unset;
  gap: 5.36vw;
  padding: 10.73vw 0;
}
.contact h3{
  font-size: 5.36vw;
  line-height: 1.2;
}
.contact a{
  padding: 3.22vw;
  gap: 0.536vw;  
  font-size: 2.14vw;
  height: 7.51vw;
  width: 46.04vw;
  display: flex;
  justify-content: center;
}

.contact a::after{ 
  width:  2.14vw;
  height: 2.14vw;
}






/* ========= Popup Overlay ========= */

.world__popupOverlay {
  width: 284px;
  height: 464px;
  max-height: 55vh;
  top: 14.22vw;
  left: 50% ;
  transform: translateX(-50%);
      right: auto !important;
    bottom: auto !important;
    /* inset: auto !important; */
}

.world__popupPanel {
  width: 100%;
}

.world__popupHeader {
  padding: 16px;
  position: unset;
}

.world__popupTitle {
  font-size: 16px;
}


.world__popupMapWrap {
  padding: 0 16px 16px;
}



}


@media (max-width: 744px) {

.world__popupOverlay {


  top: 17.06vw;

}

.hero__inner {
  gap: 4.26vw;
}

.hero__title {
  font-size: 10.66vw;
}
.hero__subtitle {
  margin: 0 0 6.4vw;
  font-size: 4.26vw;
  padding: 0 4.26vw;
}

.hero__gallery {
  gap: 4.26vw;
}

.hero__thumb {
  width: 26.66vw;
  height: 26.66vw;
  border-radius: 2.66vw;
}

.scroll-area{
  gap: 1.06vw;
  top: 83.33%;
}

.scroll-area .scroll_img{
  width: 6.4vw;
  height: 6.4vw;
}
.scroll-area .scroll_text{
  font-size: 3.2vw;
  line-height: 100%;
}




/* WORLD MAP */
.world{ padding:17.06vw 0 0;  height: auto;}
.world .container{ display: flex; flex-direction: column; align-items: center;}
.world__heading{font-size: 5.36vw;line-height: 120%; padding-bottom: 2.14vw; width: 57.71vw;}
.world__wrap{width: 100vw; height: 95.03vw;}



/* STATS BAR */
.stats-bar{ 
  height: 55.46vw; 
  padding: 6.4vw 0;
}
.stats-bar .stats__inner{ 
  flex-direction: column;
  gap:8.53vw; 
}
.stats-bar .right{gap: 6.4vw;}
.stats-bar .stat{ 
  gap: 4.26vw; 
}
.stats-bar .stat__label{ 
  font-size:4.26vw; 
}
.stats-bar .stat__label.icon::before{ 
  width: 4.26vw; 
  height: 4.26vw; 
  margin-right: 2.13vw;
}
.stats-bar .stat__num { font-size:8.53vw; }

/* youtube */
.yt.section{
  height: 97.06vw;       
  padding: 21.33vw 4.26vw;
}

/* Media grid */
.media{ 
  height: auto;
  padding: 21.33vw 0 21.33vw 4.26vw;
  gap: 10.66vw;
}

.media__heading-row{
  gap: 10.66vw;
}

.media__heading-row h3{ 
  font-size: 10.66vw; 
}

.media__heading-row .media__cta{
  width: 100%;
}

.media__heading-row .media__cta .btn{
  font-size: 4.26vw;
  padding: 6.4vw; 
  gap: 1.06vw; 
  height: 14.93vw;
  width: calc(100% - 4.26vw);
  margin-right: 4.26vw;
}

.media__heading-row .media__cta .btn::after{ 
  width: 4.26vw;
  height:  4.26vw;
}

.media-list{
  display: flex;
  overflow: auto;
  gap: 4.26vw;
}

.media-card{
  padding: 4.26vw;
  width: 82.93vw;
}

.media-card .slide-wrap{
  gap: 6.4vw;
}

.media-card .img-wrap{
  height: 43.46vw;
  width: 74.4vw;
}

.media-card .slide-wrap .slide-caption h2{
  font-size: 6.4vw;
  margin-bottom: 2.13vw;
}
.media-card .meta-row{
  font-size: 4.26vw;
}

.media-card .slide-wrap .slide-info .media__meta{
  gap: 2.13vw;
  font-size: 4.26vw;
}

.media-card .slide-wrap .slide-info .media__meta .line{
  height: 4.26vw;
}

.media-card .slide-wrap .slide-info .btn-go{
  width: 4.26vw;
  height: 4.26vw;
}




/* ===== Service ===== */

section.service {
  padding: 21.33vw 0 21.33vw 4.26vw;
}

section.service > h3 {
  font-size: 10.66vw;
  margin-bottom: 10.66vw;
  text-align: center;
}
section.service > h4 {
  font-size: 6.4vw;
  margin-bottom: 4.26vw;
}

section.service .service-group {
  gap: 4.26vw;
  max-height: 64vw;
}

section.service .service-item {
  min-width: 74.66vw;
  border-radius: 10px;
  height: 64vw;
}

section.service .service-item .service-text {
  font-size: 4.26vw;
  width: calc(100% - 8.53vw);
}

section.service .service-item .service-overlay {
  font-size: 4.26vw;
  padding: 0 4.26vw;
}


/* Contact */
.contact{
  gap: 10.66vw;
  padding: 21.33vw 0;
}
.contact h3{
  font-size: 10.66vw;
  text-align: center;
}
.contact a{
  width: 91.46vw;
  font-size: 4.26vw;
  padding: 6.4vw; 
  gap: 1.06vw; 
  height: 14.93vw;
}

.contact a::after{ 
  width:  4.26vw;
  height: 4.26vw;
}

}


.world__wrap,
.world__wrap canvas#world {
  -webkit-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;       
  -webkit-tap-highlight-color: transparent; 

  -webkit-user-drag: none;            
  user-drag: none;                    
}

.label{
  display: none;
}

.label.is-touch {
  display: block;
  color: #808080;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  animation: labelBlink 2s ease-in-out infinite;
  text-align: center;
}

@keyframes labelBlink{
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.15; }
}

/* ✅ 모션 줄이기 설정 존중 */
@media (prefers-reduced-motion: reduce){
  .label{ animation: none; }
}