/*
 * Copyright inpleworks, Co.
 * default is Mobile
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* reset
/* ------------------------------------------------------------------------------------------------------------------ */
*, 
*:before, 
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html, 
body { 
    height:100%;
    font-size: 14px;
    line-height: 1.42857143;
    -webkit-text-size-adjust: none; 
    -moz-text-size-adjust: none; 
    -ms-text-size-adjust: none; 
}
body { 
    margin: 0; 
    padding: 0; 
    background: #f9f9f9; 
    color: #221c24; 
}
html, body, table, th, td, button, input { font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Nanum Gothic', 'Malgun Gothic', '돋움', Dotum, 'Lucida Sans', 'Trebuchet MS', Arial, Tahoma, sans-serif; }
div,h1,h2,h3,h4,h5,h6,form,input,textarea,p,figure,fieldset { margin:0; padding:0; }
fieldset, img { border:0 none; }
a, a:visited, a:hover, a:active, a:focus { text-decoration:none; }
a[href^=tel]{
    color:inherit;
    text-decoration:none;
}
a, input { outline:none; }
:focus { outline: 0; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
embed,
object,
video {
    max-width: 100%;
}
img {
    max-width: 100%;
}
.xet-layout-body {
    overflow: hidden;
    opacity: 0;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Typography
/* ------------------------------------------------------------------------------------------------------------------ */
h1 {
    font-weight: 700;
}
h1 .thin {
    font-weight: 400;
}
h2 {
  font-weight:900;
  letter-spacing:-.03em;
}
h2 .thin {
    font-weight: 300;
}
h3 {
    font-weight: 400;
}
h3 .thin {
    font-weight: 200;
}
h4 {
    font-weight: 400;
}
h5 {
    font-weight: 400;
}
h6 {
    font-weight: 400;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* HEADER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header {
    z-index: 100;
    position: relative;
    height: 60px;
}
#xet-header>div {
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;    
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px  solid rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.2);
}

/* scroll to fixed */
#xet-header>.scroll-fixed { 
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;        
    background: rgba(255, 255, 255, 0.99) !important;
    border-bottom: 1px  solid rgba(0, 0, 0, 0.1) !important;
    -moz-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    -webkit-animation-name: animationFade;
    -moz-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-moz-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        transform: none;
    }
}
@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        transform: none;
    }
}
#xet-header>.scroll-fixed .xet-logo a,
#xet-header>.scroll-fixed .xet-nav-ul > li > a,
#xet-header>.scroll-fixed .xet-nav-ul > li > button { 
    color: #111
}
#xet-header>.scroll-fixed .xet-logo a .logo-img-w {
    display: none !important;
}
#xet-header>.scroll-fixed .xet-logo a .logo-img-b {
    display: block !important;
}

/* Logo
----------------------------------------------------------- */
.xet-logo {
    width: 50%;
    margin: 0 auto;
    height: 60px;
    line-height: 60px;
    text-align: center;
}
.xet-logo a {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-top: 10px;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #111;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;    
}
.xet-logo a img {        
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
    transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}    
#xet-header .xet-logo a .logo-img-b {
    display: block;
}
#xet-header .xet-logo a .logo-img-w {
    display: none;
}

/* NAV - Dropdown
----------------------------------------------------------- */    
.xet-nav-ul { 
    margin: 0;
    padding: 0;
    list-style: none;
}
.xet-nav-ul > li { 
    position:relative; 
    float: left;
    margin: 0 20px;
    padding: 0;     
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}
.xet-nav-ul > li > a .child {
    display: none;
    padding-left: 5px;
    color: #777;
}
.xet-nav-ul > li > a,
.xet-nav-ul > li > button { 
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 15px; 
    height: 60px;
    line-height: 60px;
    white-space: nowrap;
    text-decoration:none;
    cursor:pointer;
    border: 0;
    margin: 0;
    padding: 0; 
    background: none;
    color: #111;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}
.xet-nav-ul > li.li-btn {
    margin: 0;
}
.xet-nav-ul > li.li-btn:first-child {
}
.xet-nav-ul > li.li-btn > a,
.xet-nav-ul > li.li-btn > button { 
    width: 60px;
    font-size: 16px; 
    text-align: center;
    color: #111;
}

.xet-nav.float-center {
    width: 100%;
    margin: 0 -200px;
}
.xet-nav.float-center>.xet-nav-ul {
    display: table;
    margin: 0 auto;
}

/* current color NAV 1차 */
.xet-nav-scroll > li.current > a,
.xet-nav-ul > li > a.current {
    color: #58c4a7 !important
}

/* 2차 메뉴 */
.xet-nav-ul ul { 
    z-index: 99; 
    opacity: 0;
    visibility: hidden;
    position: absolute; 
    left: -15px; 
    top: 99%;    
    width: 200px;
    list-style: none;
    margin: 0; 
    padding: 1px 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: 0;
    box-shadow:0 4px 5px -3px rgba(0,0,0,.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,.1);
    transform: translateY(30px);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;    
}
/* 언어선택 리스트 */
.xet-nav-ul ul.lang-list {
    left: auto;
    right: -15px;
    width: 140px;
}
.xet-nav-ul ul.lang-list li {
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.xet-nav-ul ul.lang-list li button {
    display: block; 
    width: 100%;
    text-align: left;
    font-size: 12px; 
    cursor: pointer;
    font-weight: normal; 
    padding: 10px 12px;
    border: 0;
    background: none;
    color: #555;
    border-left: solid 6px transparent;
    -o-transition: border .2s linear;
    -moz-transition: border .2s linear;
    -webkit-transition: border .2s linear;
    transition: border .2s linear;
}

.xet-nav-ul ul li { 
    position: relative;
    float: none;     
    height: auto;
    line-height: 1.42857143;
}
.xet-nav-ul ul li:first-child { 
    border-top: 0; 
}
.xet-nav-ul ul li a { 
    position: relative;
    display: block; 
    font-size: 13px; 
    cursor: pointer;
    white-space: normal;
    font-weight: normal; 
    padding: 14px 22px 14px 12px;
    margin: 0;
    color: #333; 
    border-left: solid 6px transparent;
    -o-transition: border .2s linear;
    -moz-transition: border .2s linear;
    -webkit-transition: border .2s linear;
    transition: border .2s linear;
}
.xet-nav-ul ul li span.child {
    position: absolute;
    right: 12px;
    top: 14px;
    font-size: 11px; 
    font-weight: normal; 
    text-align: center;
    padding: 0;
    width: 12px;
    transition:all 0.2s ease-in-out;
    -moz-transition:all 0.2s ease-in-out;
    -webkit-transition:all 0.2s ease-in-out;    
    color: #111;
}

.xet-nav-ul ul li:hover > a,
.xet-nav-ul ul li:hover > button {
    border-left-color: #58c4a7;
}
.xet-nav-ul ul li:hover span.child {
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

/* 3차 메뉴 */
.xet-nav-ul ul ul { 
    top: 0; 
    left: 100%; 
}

/* Show NAV 2차, 3차 */
.xet-nav-ul li.hovered > ul,
.xet-nav-ul ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;    
}

/* Hover NAV 2차, 3차 */
.xet-nav-ul ul li:hover > a::after {
    width: 100%;
}
.xet-nav-ul ul li.current::after {
    height: 1px;
     background-color: #58c4a7;
}
.xet-nav-ul ul li.current > a {}


/* Mobile Login icon 
----------------------------------------------------------- */    
#xet-xs-login {
    z-index: 3;
    position: absolute;
    right: 0;
    top: 0;
}
#xet-xs-login.toggle-btn-right {
    left: 0;
    right: auto;
}

/* Mobile hamburger icon 
----------------------------------------------------------- */    
#xet-toggle-btn {
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
}
#xet-toggle-btn.toggle-btn-right {
    left: auto;
    right: 0;
}
.xet-toggle-menu {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    font-size: 0 !important;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    color: transparent;
    border: 0;
    background: none;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}
.xet-toggle-menu span,
.xet-toggle-menu span::before,
.xet-toggle-menu span::after {
  /* hamburger icon in CSS */
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 24px;
    background: #333;
}
.xet-toggle-menu span {
    /* line in the center */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2px;
    margin-left: -12px;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
    background: #333;
}
.xet-toggle-menu span::before, 
.xet-toggle-menu span::after {
    /* other 2 lines */
    content: '';
    right: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
.xet-toggle-menu span::before {
    /* menu icon top line */
    top: -6px;
}
.xet-toggle-menu span::after {
    /* menu icon bottom line */
    top: 6px;
}
.xet-toggle-menu.push-active span {
    /* hide line in the center */
    background: none;
}
.xet-toggle-menu.push-active span::before, 
.xet-toggle-menu.push-active span::after {
    /* keep visible other 2 lines */
    background: #333;
}
.xet-toggle-menu.push-active span::before {
    -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
    transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.xet-toggle-menu.push-active span::after {
    -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
    transform: translateX(4px) translateY(2px) rotate(-45deg);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* MAIN - SECTIONS
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-main-sections {
    background: #f9f9f9;
}
.xet-section {
    position: relative;
    overflow: hidden;
}
.xet-section img { 
    vertical-align: top;
    max-width: 100%;
}

.xet-section .subTitle {
    color: #111;
}
.xet-section .subContent,
.xet-section .subContent a {
    color: #555;
}

/* BG parallax scroll */
.xet-parallax-scroll {
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat:no-repeat;
    background-position:50% 50%;
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
}

/* 섹션 구분선 */
.xet-dash-icon-wrp{
    position: relative;
    text-align: center;
}
.xet-with-icon {
    display: inline-block;
    vertical-align: middle;
    width: 150px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}
.xet-diamond-icon {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}


/* Box */
.xet-icon-box {
    cursor: default;
    padding: 35px 30px;
    position: relative;
    text-align: center;
}
.xet-icon-box::before, 
.xet-icon-box::after {
    border: 1px solid rgba(0, 0, 0, 0.1);
    content: "";
    height: calc(50% - 40px);
    pointer-events: none;
    position: absolute;
    transition: all 0.33s ease 0s;
    width: calc(100%);
}
.xet-icon-box::before {
    border-width: 1px 1px 0 1px;
    left: 0;
    top: 0;
}
.xet-icon-box::after {
    border-width: 0 1px 1px 1px;
    bottom: 0;
    right: 0;
}
.xet-icon-box:hover::before, 
.xet-icon-box:hover::after {
    border-color: #58c4a7;
    height: calc(50% - 5px);
    width: 100%;
}
.xet-icon-box:hover {
    background-color: #fff;
     transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;    
}
.xet-icon-box .moreLink {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* SLIDER 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-slider {
    overflow: hidden;
    position: relative;
    background: #000;    
}
.xet-slider h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
}
.xet-slider h1,
.xet-slider h5,
.xet-slider .xet-more {
    opacity: 0;
}

.xet-slider .xet-slider-container {
    position: relative;
    width: 100%;
    height: calc(70vh - 60px);
}
.xet-slider .xet-slider-container .swiper-slide {
    color: #fff;
    text-shadow:2px 2px 8px rgba(0,0,0,0.8);
}
.xet-slider .xet-slider-container .vertical-align {
    background-color: rgba(0,0,0,.3);
}
.xet-slider .xet-slider-next, 
.xet-slider .xet-slider-prev {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    height: 100px;
    margin-top: -50px;
    width: 60px;
    background-size: 40px;
    opacity: 0;
    background-color: rgba(0,0,0,.1);
    background-position: center center;
    background-repeat: no-repeat;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;    
}
.xet-slider .xet-slider-next {
     transform: translateX(60px);
    -moz-transform: translateX(60px);
    -webkit-transform: translateX(60px);
    right: 0;
    background-image: url('../img/next.png');
}
.xet-slider .xet-slider-prev {
    transform: translateX(-60px);
    -moz-transform: translateX(-60px);
    -webkit-transform: translateX(-60px);
    left: 0;
    background-image: url('../img/prev.png');
}
.xet-slider:hover .xet-slider-next, 
.xet-slider:hover .xet-slider-prev {
     transform: translateX(0px);
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    opacity: 1;
}
.xet-slider-next.swiper-button-disabled, 
.xet-slider-prev.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
}
.xet-slider-pagination {
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    color: #ccc;
    text-align: center;
}
.xet-slider-pagination.swiper-pagination-progress {
    top: auto !important;
    bottom: 0 !important;
}

/* OIE */
.xet-slider-pagination .swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  margin: 0 3px;
  cursor: pointer;
}
.xet-slider-pagination .swiper-active-switch {
  background-color: #58c4a7;
}
/* */

.xet-slider-pagination .swiper-pagination-current {
    font-size: 200%;
    color: #fff;
}
.xet-slider-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    margin: 0 !important;
    border-radius: 0;
    background-color: #fff;
}
.xet-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1.0;
    background-color: #58c4a7;
}
.xet-slider .swiper-pagination-progress {
    z-index: 10;
}
.xet-slider .swiper-pagination-progress .swiper-pagination-progressbar {
    background: #58c4a7;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - About 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-about {}

/* =====================================================================================================================
   THEME COLOR (fallback)
   - layout.html(또는 head)에서 :root{--xet-brand: ...} 로 주입하면 이 값은 덮어써짐
   ===================================================================================================================== */
:root{
  --xet-brand:#58c4a7;
}

/* =====================================================================================================================
   Section - xet-guide
   ===================================================================================================================== */
.xet-guide{
  --ink:#0b0f14;
  --muted:rgba(11,15,20,.66);
  --bg-white:#f9f9f9;

  max-width:1120px;
  margin:0 auto 22px;
  text-align:center;
  color:var(--ink);
  background:var(--bg-white);
}

/* 헤더 */
.xet-guide .xet-head{ text-align:center; margin-bottom:24px; }
.xet-guide .xet-head .kicker{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  font-weight:700;
  opacity:.8;
}
.xet-guide .xet-head .h2{ margin:0; font-weight:900; letter-spacing:-.03em; }
.xet-guide .xet-head .sub{ margin-top:8px; opacity:.75; }

/* 탭 */
.xet-guide .xet-tabstate{ display:none; }

.xet-guide .xet-tabhead{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5px;

  background:#f1f3f5;
  padding:5px;
  border-radius:999px;
  border:1px solid #d1d1d1;

  width:100%;
  max-width:320px;
  margin:0 auto;

  box-shadow:0 10px 20px rgba(0,0,0,.03);
}

.xet-guide .xet-tabbtn{
  position:relative;
  z-index:2;
  text-align:center;
  padding:12px 30px;
  cursor:pointer;
  border-radius:999px;
  transition:all .2s ease;
  min-width:100px;
}

.xet-guide .xet-tabbtn .k{
  font-size:15px;
  font-weight:700;
  margin:0;
  color:var(--ink);
  transition:.2s;
}
.xet-guide .xet-tabbtn .d{
  font-size:11px;
  opacity:.6;
  margin-top:2px;
  transition:.2s;
}

/* 탭 글로우 */
.xet-guide .xet-tabglow{
  position:absolute;
  top:5px; bottom:5px; left:5px;
  width:calc(50% - 5px);
  background:var(--xet-brand);
  border-radius:999px;
  transition:.25s cubic-bezier(.4,0,.2,1);
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
#xetTabLoc:checked ~ .xet-tabhead .xet-tabglow{ transform:translateX(100%); }

/* 선택된 탭 텍스트 */
#xetTabSum:checked ~ .xet-tabhead label[for="xetTabSum"] .k,
#xetTabSum:checked ~ .xet-tabhead label[for="xetTabSum"] .d,
#xetTabLoc:checked ~ .xet-tabhead label[for="xetTabLoc"] .k,
#xetTabLoc:checked ~ .xet-tabhead label[for="xetTabLoc"] .d{
  color:#fff;
  opacity:1;
}

/* 패널 */
.xet-guide .xet-panels{ margin-top:32px; position:relative; }
.xet-guide .xet-panel{ display:none; animation:xetFadeUp .4s ease forwards; }
#xetTabSum:checked ~ .xet-panels #xetPanelSum,
#xetTabLoc:checked ~ .xet-panels #xetPanelLoc{ display:block; }

.xet-guide .xet-split{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
  align-items:stretch;
}

/* 이미지 */
.xet-guide .xet-media{
  border-radius:20px;
  overflow:hidden;
  background:#eee;
  min-height:400px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.xet-guide .xet-media img{ width:100%; height:100%; object-fit:cover; }
.xet-guide .xet-media .fallback{ width:100%; height:100%; background:#e9ecef; }

/* 본문 */
.xet-guide .xet-body{
  border-radius:20px;
  background:#fff;
  padding:34px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* 타이틀 */
.xet-guide .badge{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
  color:var(--ink);
  margin:0 auto 10px;
  width:fit-content;
}
.xet-guide .title{
  font-size:24px;
  font-weight:900;
  margin-bottom:8px;
  letter-spacing:-.02em;
}
.xet-guide .desc{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  margin-bottom:18px;
}

/* 탭1: 정보 */
.xet-guide .kv{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}
.xet-guide .kv .row{
  display:grid;
  grid-template-columns:90px 1fr;
  align-items:center;
  padding:12px 16px;
  background:#f8f9fa;
  border-radius:12px;
}
.xet-guide .kv dt{
  font-size:13px;
  font-weight:800;
  color:var(--muted);
}
.xet-guide .kv dd{
  font-size:14px;
  font-weight:800;
  color:var(--ink);
  margin:0;
}

/* 탭2: 아이콘 그리드 */
.xet-guide .icons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:16px;
}

.xet-guide .icard{
  background:#f8f9fa;
  padding:16px 18px;
  border-radius:16px;

  display:grid;
  grid-template-columns:56px minmax(0, 1fr);
  grid-template-rows:auto auto;
  column-gap:14px;
  row-gap:4px;
  align-items:center;

  text-align:left;
}

.xet-guide .icard .ico{
  grid-column:1;
  grid-row:1 / span 2;

  width:40px; height:40px;
  border-radius:12px;
  background:var(--xet-brand);
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
}

.xet-guide .icard .t{
  grid-column:2;
  grid-row:1;

  margin:0 !important;
  font-weight:900;
  font-size:14px;
  line-height:1.25;

  min-width:0;
  white-space:normal;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

.xet-guide .icard .d{
  grid-column:2;
  grid-row:2;

  margin:0 !important;
  font-size:12px;
  color:var(--muted);
  line-height:1.35;

  min-width:0;
  white-space:normal;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

/* 더보기 */
.xet-guide .more{
  margin:16px auto 0;
  align-self:center;

  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:12px 22px;
  border-radius:999px;

  font-size:13px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.05em;

  background:#fff;
  color:var(--ink);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  transition:all .2s ease;
}
.xet-guide .more svg{
  width:18px; height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  transition:transform .2s;
}
.xet-guide .more:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  border-color:rgba(0,0,0,.2);
}
.xet-guide .more:hover svg{ transform:translateX(4px); }

/* 가이드: 모바일/태블릿 */
@media (max-width:720px){
  .xet-guide{
    padding:0 16px;
    box-sizing:border-box;
  }

  .xet-guide .xet-head{ margin-bottom:16px; }
  .xet-guide .xet-head .sub{ margin-top:6px; }

  .xet-guide .xet-panels{ margin-top:20px; }
  .xet-guide .xet-split{ gap:18px; }

  .xet-guide .xet-body{
    padding:18px 14px;
    border-radius:18px;
  }

  .xet-guide .badge{ margin-bottom:8px; }
  .xet-guide .title{ font-size:22px; margin-bottom:6px; }
  .xet-guide .desc{ font-size:14px; margin-bottom:12px; }

  .xet-guide .kv{ gap:8px; margin-bottom:12px; }
  .xet-guide .kv .row{
    padding:10px 14px;
    border-radius:11px;
    background:rgba(248,249,250,.72);
    border:1px solid rgba(0,0,0,.04);
  }
  .xet-guide .kv dt{ font-size:12px; }
  .xet-guide .kv dd{ font-size:13.5px; }

  .xet-guide .icons{ gap:10px; margin-bottom:12px; }
  .xet-guide .icard{
    padding:12px 12px;
    border-radius:14px;
    grid-template-columns:52px minmax(0, 1fr);
    column-gap:12px;
    row-gap:3px;
  }
  .xet-guide .icard .t{ font-size:15px; }
  .xet-guide .icard .d{ font-size:13px; }

  .xet-guide .more{
    margin-top:12px;
    padding:10px 18px;
  }
}

/* 초대형 */
@media (min-width:1400px){
  .xet-guide{ max-width:1080px; }
}
/* =====================================================================================================================
   Section - premium
   ===================================================================================================================== */
.wrap.xet-section.xet-premium{ padding:40px 0; }

.wrap.xet-section.xet-premium .head{
  max-width:1120px;
  margin:0 auto 26px;
  text-align:center;
}
.wrap.xet-section.xet-premium .head .kicker{
 margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  font-weight:700;
  opacity:.8;
}
.wrap.xet-section.xet-premium .head .h2{ margin:0; font-weight:900; letter-spacing:-.03em; }
.wrap.xet-section.xet-premium .head .sub{ margin-top:10px; opacity:.75; }

/* 래퍼 */
.wrap.xet-section.xet-premium .slider{
  position:relative;
  max-width:1120px;
  margin:0 auto;
  --slide-w: 980px;
  --peek: 140px;
}

/* 컨트롤(숨김) */
.wrap.xet-section.xet-premium .controls{
  position:absolute;
  width:0; height:0;
  overflow:hidden;
  opacity:0;
  pointer-events:none;
}

/* 오른쪽 peek */
.wrap.xet-section.xet-premium .premium-swiper{
  position:relative;
  width:calc(100% + var(--peek));
  margin-right:calc(-1 * var(--peek));
  overflow:hidden;

  padding-left:calc((100% - var(--slide-w)) / 2);
  box-sizing:content-box;
}

.wrap.xet-section.xet-premium .premium-swiper .swiper-wrapper{ align-items:stretch; }
.wrap.xet-section.xet-premium .premium-swiper .swiper-slide{
  width:var(--slide-w);
  height:auto;
}

/* 카드 */
.wrap.xet-section.xet-premium .stage{
  position:relative;
  cursor:grab;
  touch-action:pan-y;
}
.wrap.xet-section.xet-premium .stage .frame{
  display:flex;
  border-radius:26px;
  border:1px solid rgba(0,0,0,.06);
  overflow:hidden;
  background:#fff;
  box-shadow:0 14px 40px rgba(0,0,0,.10);
}
.wrap.xet-section.xet-premium .swiper-slide:not(.swiper-slide-active) .stage .frame{
  box-shadow:none;
  border:1px solid rgba(0,0,0,.06);
}
.wrap.xet-section.xet-premium .swiper-slide-active .stage .frame{
  border:1px solid rgba(0,0,0,.04);
}

/* 좌측 이미지 */
.wrap.xet-section.xet-premium .stage .main{
  flex:0 0 54%;
  position:relative;
  background:#0b0f14;
  overflow:hidden;
  min-height:360px;
}
.wrap.xet-section.xet-premium .stage .main-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.wrap.xet-section.xet-premium .stage .main-fallback{
  width:100%;
  height:100%;
  min-height:360px;
  background:linear-gradient(135deg, rgba(255,255,255,.10), rgba(0,0,0,.25));
}

/* 우측 패널 */
.wrap.xet-section.xet-premium .stage .panel{
  flex:1 1 auto;
  padding:34px 34px 28px;
  display:flex;
  flex-direction:column;
  background:#fff;
  color:#111;
}

.wrap.xet-section.xet-premium .stage .top{ display:flex; gap:16px; margin-bottom:18px; }
.wrap.xet-section.xet-premium .stage .label{
  margin:0;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.24em;
  font-weight:700;
  opacity:.9;
}
.wrap.xet-section.xet-premium .stage .label .count{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  letter-spacing:.12em;
}
.wrap.xet-section.xet-premium .stage .label .count .cur{ font-weight:900; }
.wrap.xet-section.xet-premium .stage .label .count .sep{ padding:0 6px; opacity:.7; }

.wrap.xet-section.xet-premium .stage .title{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.03em;
}
.wrap.xet-section.xet-premium .stage .desc{
  margin:0 0 22px;
  font-size:14px;
  line-height:1.7;
  opacity:.9;
  max-width:44ch;
}

.wrap.xet-section.xet-premium .stage .more{
  margin-top:auto;
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 24px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  letter-spacing:.05em;
  background:#fff;
  color:#111;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  transition:all .2s ease;
}
.wrap.xet-section.xet-premium .stage .more svg{
  width:18px; height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}
.wrap.xet-section.xet-premium .stage .more:hover{ transform:translateY(-1px); }

/* dots */
.wrap.xet-section.xet-premium .premium-pagination{
  margin-top:28px;
  padding:0 14px 34px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  width:100%;
  box-sizing:border-box;

  position:relative !important;
  left:auto !important;
  right:auto !important;
  top:auto !important;
  bottom:auto !important;
  transform:none !important;
}

.wrap.xet-section.xet-premium .premium-pagination .swiper-pagination-switch,
.wrap.xet-section.xet-premium .premium-pagination .swiper-pagination-bullet{
  width:12px; height:12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  background:transparent;
  opacity:1;
  cursor:pointer;
}
.wrap.xet-section.xet-premium .premium-pagination .swiper-active-switch,
.wrap.xet-section.xet-premium .premium-pagination .swiper-pagination-bullet-active{
  background:#111;
  border-color:#111;
}

/* Responsive */
@media (max-width:1200px){
  .wrap.xet-section.xet-premium .slider{
    --slide-w:min(940px, calc(100vw - 160px));
    --peek:120px;
  }
}

@media (max-width:1024px), (hover:none) and (pointer:coarse){
  .wrap.xet-section.xet-premium .slider{
    max-width:100% !important;
    padding:0 14px !important;
    box-sizing:border-box !important;
    --slide-w:100%;
    --peek:0px;
  }

  .wrap.xet-section.xet-premium .premium-swiper{
    width:100%;
    margin-right:0;
    overflow:hidden;
    padding-left:0;
    box-sizing:border-box;
  }

  .wrap.xet-section.xet-premium .premium-swiper .swiper-slide{ width:100% !important; }

  .wrap.xet-section.xet-premium .stage .frame{
    flex-direction:column !important;
    border-radius:18px !important;
  }

  .wrap.xet-section.xet-premium .stage .main{
    width:100% !important;
    min-height:0 !important;
    height:240px !important;
  }
  .wrap.xet-section.xet-premium .stage .main-img,
  .wrap.xet-section.xet-premium .stage .main-fallback{
    height:240px !important;
    min-height:0 !important;
  }

  .wrap.xet-section.xet-premium .stage .panel{
    padding:18px 16px 16px !important;
  }

  .wrap.xet-section.xet-premium .stage .title{ font-size:22px !important; }
  .wrap.xet-section.xet-premium .stage .desc{ max-width:none !important; }
}

/* =====================================================================================================================
   Section - landscapeinfo
   ===================================================================================================================== */
.xet-landscapeinfo{
  --ink:#0b0f14;
  --muted:rgba(11, 15, 20, .66);
  --bg-white:#f9f9f9;

  max-width:1120px;
  margin:0 auto 26px;
  text-align:center;
  color:var(--ink);
}

/* 헤더 */
.xet-landscapeinfo .xet-head{ margin-bottom:50px; }
.xet-landscapeinfo .xet-head .kicker{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  font-weight:700;
  opacity:.8;
}
.xet-landscapeinfo .xet-head .h2{ margin:0; font-weight:900; letter-spacing:-.03em; }
.xet-landscapeinfo .xet-head .sub{ margin-top:10px; opacity:.75; }

/* 탭 */
.xet-landscapeinfo .xet-tabstate{ display:none; }

.xet-landscapeinfo .xet-tabhead{
  display:inline-flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:5px;

  background:#f1f3f5;
  padding:5px;
  border-radius:999px;
  border:1px solid #d1d1d1;

  width:auto;
  max-width:100%;
  margin:0 auto;

  box-shadow:0 10px 20px rgba(0,0,0,.03);
}

.xet-landscapeinfo .xet-tabbtn{
  position:relative;
  z-index:2;
  text-align:center;
  padding:12px 30px;
  cursor:pointer;
  border-radius:999px;
  transition:all .2s ease;
  min-width:100px;
}
.xet-landscapeinfo .xet-tabbtn .k{ font-size:15px; font-weight:700; margin:0; color:var(--ink); transition:.2s; }
.xet-landscapeinfo .xet-tabbtn .d{ font-size:11px; opacity:.6; margin-top:2px; transition:.2s; }

/* 선택된 탭 */
#landTab1:checked ~ .xet-tabhead label[for="landTab1"],
#landTab2:checked ~ .xet-tabhead label[for="landTab2"],
#landTab3:checked ~ .xet-tabhead label[for="landTab3"],
#landTab4:checked ~ .xet-tabhead label[for="landTab4"],
#landTab5:checked ~ .xet-tabhead label[for="landTab5"]{
  background:var(--xet-brand) !important;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}

#landTab1:checked ~ .xet-tabhead label[for="landTab1"] .k,
#landTab2:checked ~ .xet-tabhead label[for="landTab2"] .k,
#landTab3:checked ~ .xet-tabhead label[for="landTab3"] .k,
#landTab4:checked ~ .xet-tabhead label[for="landTab4"] .k,
#landTab5:checked ~ .xet-tabhead label[for="landTab5"] .k,
#landTab1:checked ~ .xet-tabhead label[for="landTab1"] .d,
#landTab2:checked ~ .xet-tabhead label[for="landTab2"] .d,
#landTab3:checked ~ .xet-tabhead label[for="landTab3"] .d,
#landTab4:checked ~ .xet-tabhead label[for="landTab4"] .d,
#landTab5:checked ~ .xet-tabhead label[for="landTab5"] .d{
  color:#fff !important;
  opacity:1;
}

/* 패널 */
.xet-landscapeinfo .xet-panel{
  display:none;
  margin-top:40px;
  animation:xetFadeUp .4s ease forwards;
}
#landTab1:checked ~ .xet-panels #panelLand1,
#landTab2:checked ~ .xet-panels #panelLand2,
#landTab3:checked ~ .xet-panels #panelLand3,
#landTab4:checked ~ .xet-panels #panelLand4,
#landTab5:checked ~ .xet-panels #panelLand5{
  display:block;
}

/* 이미지 */
.xet-landscapeinfo .img-box{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  margin-bottom:20px;
}
.xet-landscapeinfo .img-box img{
  width:100%;
  height:auto;
  display:block;
}

/* 더보기 */
.xet-landscapeinfo .btn-wrap{ text-align:center; margin-top:30px; }

.xet-landscapeinfo .more{
  margin-top:24px;
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:12px 24px;
  border-radius:999px;

  font-size:13px;
  font-weight:800;
  text-decoration:none;
  letter-spacing:.05em;

  background:#fff;
  color:var(--ink);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 4px 12px rgba(0,0,0,.05);

  transition:all .2s ease;
}
.xet-landscapeinfo .more svg{
  width:18px; height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  transition:transform .2s;
}
.xet-landscapeinfo .more:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  border-color:var(--xet-brand);
  color:var(--xet-brand);
}
.xet-landscapeinfo .more:hover svg{ transform:translateX(4px); }

/* 모바일 */
@media (max-width:768px){
  .xet-landscapeinfo{
    max-width:100%;
    padding:0 16px;
    margin:0 auto 18px;
    box-sizing:border-box;
  }

  .xet-landscapeinfo .xet-head{ margin-bottom:30px; }
  .xet-landscapeinfo .xet-head .kicker{
    font-size:12px;
    letter-spacing:.22em;
    margin-bottom:10px;
  }
  .xet-landscapeinfo .xet-head .h2{ font-size:32px; }
  .xet-landscapeinfo .xet-head .sub{ margin-top:10px; font-size:14px; }

  .xet-landscapeinfo .xet-tabhead{ padding:5px; gap:4px; }
  .xet-landscapeinfo .xet-tabbtn{ padding:10px 18px; min-width:0; }
  .xet-landscapeinfo .xet-tabbtn .k{ font-size:14px; }
  .xet-landscapeinfo .xet-tabbtn .d{ font-size:10px; }

  .xet-landscapeinfo .xet-panel{ margin-top:24px; }
  .xet-landscapeinfo .img-box{ border-radius:16px; margin-bottom:16px; }

  .xet-landscapeinfo .btn-wrap{ margin-top:18px; }
  .xet-landscapeinfo .more{ margin-top:12px; padding:10px 18px; }
}

/* =====================================================================================================================
   Section - xet-generation
   ===================================================================================================================== */
.xet-generation-section{
  --ink:#0b0f14;
  width:100%;
  max-width:1120px;
  margin:0 auto;
  text-align:center;
  box-sizing:border-box;
}

.xet-generation-section .xet-head{ text-align:center; margin-bottom:30px; }
.xet-generation-section .xet-head .kicker{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  font-weight:700;
  opacity:.8;
}
.xet-generation-section .xet-head .h2{
  margin:0;
  font-weight:900;
  letter-spacing:-.03em;
}
.xet-generation-section .xet-head .sub{
  margin-top:10px;
  opacity:.75;
}

/* 마스터 탭 */
.xet-generation-section .unit-state{ display:none; }

.xet-generation-section .unit-nav{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  background:#f1f3f5;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);

  width:auto;
  max-width:100%;
  margin:0 auto 50px;

  box-shadow:0 10px 20px rgba(0,0,0,.03);
  box-sizing:border-box;
}

.xet-generation-section .unit-nav .unit-btn{
  position:relative;
  z-index:2;
  margin:0;

  min-width:150px;
  padding:14px 26px;

  border-radius:999px;
  cursor:pointer;
  transition:.2s;

  background:transparent;
  box-shadow:none;
  transform:none;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.xet-generation-section .unit-nav .unit-btn .t{
  font-size:16px;
  font-weight:900;
  margin:0;
  color:var(--ink);
  transition:.2s;
}
.xet-generation-section .unit-nav .unit-btn .d{
  margin-top:2px;
  font-size:12px;
  opacity:.55;
  font-weight:700;
  color:var(--ink);
  transition:.2s;
}

.xet-generation-section .unit-nav .unit-tabglow{ display:none !important; }

/* 선택된 마스터 탭 */
#unitTab1:checked ~ .unit-nav label[for="unitTab1"],
#unitTab2:checked ~ .unit-nav label[for="unitTab2"]{
  background:var(--xet-brand) !important;
  border-color:var(--xet-brand) !important;
  box-shadow:0 6px 16px rgba(0,0,0,.10) !important;
}
#unitTab1:checked ~ .unit-nav label[for="unitTab1"] .t,
#unitTab1:checked ~ .unit-nav label[for="unitTab1"] .d,
#unitTab2:checked ~ .unit-nav label[for="unitTab2"] .t,
#unitTab2:checked ~ .unit-nav label[for="unitTab2"] .d{
  color:#fff !important;
  opacity:1 !important;
}

/* 마스터 패널 */
.unit-contents{ width:100%; box-sizing:border-box; }
.unit-panel{ display:none; width:100%; }

#unitTab1:checked ~ .unit-contents #unitPanel1{ display:block; animation:xetFadeUp .45s ease; }
#unitTab2:checked ~ .unit-contents #unitPanel2{ display:block; animation:xetFadeUp .45s ease; }

/* 내부 탭 */
.unit-inner-wrap{ width:100%; box-sizing:border-box; }

.unit-subtabs{
  position:relative;
  display:inline-flex;
  width:auto;
  max-width:100%;
  justify-content:center;
  margin:0 auto 40px;
  box-sizing:border-box;
}

.unit-subtabs .unit-subglow{
  position:absolute;
  top:6px;
  bottom:6px;
  left:6px;
  width:60px;
  transform:translateX(0px);
  background:var(--xet-brand);
  border-radius:999px;
  transition:transform .25s cubic-bezier(.4,0,.2,1), width .25s cubic-bezier(.4,0,.2,1);
  box-shadow:0 4px 10px rgba(0,0,0,.12);
  z-index:1;
}

.unit-tabs-custom{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:5px;

  background:#f8f9fa;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);

  list-style:none;
  margin:0 auto;
  width:fit-content;
  max-width:100%;

  height:auto !important;
  max-height:none !important;

  box-sizing:border-box;
}

.unit-tabs-custom li{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  display:block !important;
}

.unit-tabs-custom li a{
  position:relative;
  z-index:3;
  display:block;
  padding:10px 22px;
  font-size:16px;
  font-weight:800;
  color:rgba(11,15,20,.55);
  text-decoration:none;
  border-radius:999px;
  white-space:nowrap;
  transition:.2s;
}

.xet-generation-section #unitPanel1 .tab-contents{ padding-top:24px; }

.unit-tabs-custom li.is_on a{ color:#fff !important; }

/* 콘텐츠 */
.tab-contents .content{ display:none; width:100%; }
.tab-contents .content.is_on{ display:block; }

.tab-contents figure{ margin:0 0 15px; }
.tab-contents img{
  width:100%;
  max-width:1120px;
  height:auto;
  border-radius:20px;
  display:block;
  margin:0 auto;
}
.tab-contents figure + div,
.tab-contents figure + p{
  width:100%;
  max-width:1120px;
  margin:10px auto 0;
  box-sizing:border-box;
}
.tab-contents .content > div{
  margin-top:10px;
  color:#555;
  line-height:1.65;
}

/* 인테리어 */
.interior-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;

  width:100%;
  max-width:1120px;
  margin:30px auto 0;
  padding:0;
  box-sizing:border-box;
}

.interior-grid .int-item{
  flex:0 0 calc((100% - 20px) / 2);
  max-width:calc((100% - 20px) / 2);
  box-sizing:border-box;
}
.interior-grid .int-item img{
  width:100%;
  height:auto;
  border-radius:15px;
  display:block;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* 더보기 */
.xet-generation-section .more{
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.05em;
  background:#fff;
  color:var(--ink);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  transition:all .2s ease;
}
.xet-generation-section .more svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  transition:transform .2s;
}
.xet-generation-section .more:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  border-color:rgba(0,0,0,.2);
}
.xet-generation-section .more:hover svg{ transform:translateX(4px); }

.xet-generation-section .unit-more-wrap{
  width:100%;
  margin:24px auto 0;
  text-align:center;
}

/* 마스터 탭에 따라 버튼 1개만 */
#unitTab1:checked ~ .unit-contents .unit-more--interior{ display:none !important; }
#unitTab2:checked ~ .unit-contents .unit-more--plan{ display:none !important; }

.xet-generation-section .more.is-disabled{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
}

/* 모바일 */
@media (max-width:768px){
  .xet-generation-section .unit-nav{
    width:calc(100% - 32px);
    max-width:360px;
    margin-bottom:40px;
  }
  .xet-generation-section .unit-nav .unit-btn{
    min-width:0;
    width:50%;
    padding:12px 12px;
  }

  .xet-generation-section .unit-inner-wrap{ padding:0 16px; }

  .unit-subtabs{ margin-bottom:30px; }

  .unit-tabs-custom li a{
    padding:10px 16px;
    font-size:15px;
  }

  .unit-tabs-custom{
    flex-wrap:wrap !important;
    overflow-x:visible !important;
    justify-content:center !important;
    width:fit-content;
    max-width:100%;
  }

  .interior-grid{
    padding:0 16px;
    margin-top:20px;
  }
  .interior-grid .int-item{
    flex:0 0 100%;
    max-width:100%;
  }
}

/* 공용 fadeUp (이 4개 섹션에서만 사용) */
@keyframes xetFadeUp{
  from{ opacity:0; transform:translateY(12px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Video & Contact (Legacy)
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-video{ position:relative; background-color:#000; color:#000; }
.xet-video:before{ z-index:0; position:absolute; top:0; left:0; width:100%; height:100%; content:""; background-color:rgba(249,249,249,1); }
.xet-video .video-container{ margin-top:30px !important; }

.xet-contact p { color: #555; }
.xet-contact .contact-tel { display: block; color: #111; }
.xet-contact .map { border: 1px solid #fff; }
@media (max-width:768px){
  .xet-contact .map{ width:100%; max-width:100%; margin: 16px auto 0; padding: 0 16px; box-sizing:border-box; }
  .xet-contact .map iframe, .xet-contact .map > div{ width:100% !important; max-width:100% !important; height: 240px !important; display:block; border-radius:14px; }
}



/* =========================================================================
   [FIX] Common Heads & Animations (Add this for xet-guide & others)
   ========================================================================= */

/* 1. Animation Keyframes (Required for fadeInUp) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* 2. Common Section Heads */
.xet-head {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

/* Kicker (Small Title) */
.xet-head .kicker,
.xet-section .kicker {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 700;
    opacity: 0.8;
    text-transform: uppercase;
    color: #111;
}

/* Main Title (H2) */
.xet-head .h2,
.xet-section .h2 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #111;
    line-height: 1.2;
}

/* Description (Sub / P tag) */
.xet-head .sub,
.xet-section .sub {
    margin-top: 15px;
    opacity: 0.75;
    font-size: 15px;
    line-height: 1.6;
    word-break: keep-all;
    color: #555;
    font-weight: 400;
}

/* 3. Common Button (VIEW MORE) */
.more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .05em;
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    transition: all .2s ease;
}

.more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    border-color: rgba(0,0,0,.2);
    color: #111;
}

.more svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .2s;
}

.more:hover svg {
    transform: translateX(4px);
}

.more.is-disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}

/* Blog Button Wrapper */
.blog-more-wrap {
    margin-top: 40px;
    text-align: center;
}

/* Mobile Bottom Button */
.mobile-bottom-btn {
    z-index: 88;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    gap: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
.mobile-bottom-btn a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 4px;
    height: 48px;
    background-color: #000000;
    color: #fff;    
}
.mobile-bottom-btn a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-bottom-btn a i {
    font-size: 20px;
    margin-bottom: 4px;
}
/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Video 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-video{
  position:relative;
  background-color:#000;
  color:#000;
}

.xet-video:before{
  z-index:0;
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  content:"";
  background-color:rgba(249,249,249,1);
}

/* 헤더 */
.xet-video .xet-head{ text-align:center; margin-bottom:24px; }

.xet-video .xet-head .h2{ margin:0; font-weight:900; letter-spacing:-.03em; }
.xet-video .xet-head .sub{ margin-top:8px; opacity:.75; }


/* ✅ kicker / title / sub 간격 통일 */
.xet-video .kicker{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  font-weight:700;
  opacity:.8;
}




/* ✅ 설명 ↔ 영상 간격 */
.xet-video .video-container{
  margin-top:30px !important;  /* 30px가 너무 커서 AD가 떠보임 */
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Work 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-work {}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Blog 
/* ------------------------------------------------------------------------------------------------------------------ */


/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Contact 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-contact p {
    color: #555;
}
.xet-contact .contact-tel {
    display: block;
    color: #111;
}
.xet-contact .map {
    border: 1px solid #fff;
}
@media (max-width:768px){
  .xet-contact .map{
    width:100%;
    max-width:100%;
    margin: 16px auto 0;     /* 위쪽 여백 */
    padding: 0 16px;         /* 좌우 여백 */
    box-sizing:border-box;
  }
.xet-contact .map iframe,
  .xet-contact .map > div{
    width:100% !important;
    max-width:100% !important;
    height: 240px !important;  /* 원하는 높이로 조절 */
    display:block;
    border-radius:14px;
  }
}
.xet-contact .kicker{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  font-weight:700;
  opacity:.8;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* BODY - CONTENT - PAGE
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-content-body {
    background-color: #fff;
}
.xet-content-home-body {
    background-color: #f9f9f9;
}

/* page top */
.xet-page-top {
    background-color: rgba(53, 53, 53, 0.9);
    color: #fff;
}
.xet-page-top > div {
    position: relative;
    height: auto;
}
.xet-page-top a {
    color: #fff;
}
.xet-page-top .page-title-inner {
    line-height: 36px;
}
.xet-page-top .page-title-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.xet-page-top .page-title-inner ul li {
    float: left;
    margin: 0 0 0 10px;
    padding: 0;
    vertical-align: baseline;
}
.xet-page-top .page-title-inner ul li:after {
    content: " -";
    margin: 0 0 0 5px;
    opacity: 0.6;
}
.xet-page-top .page-title-inner ul li:last-child:after {
    content: "";
    margin: 0;
}
.xet-page-top .page-title-inner ul li a {
    font-size: 13px;
}

/* LNB */
.xet-lnb {
    background-color: #fff;
}
.xet-lnb ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.xet-lnb ul > li {
    position: relative;
    display: inline-block;
    margin: 0 15px;
    padding: 0;
}
.xet-lnb > ul > li > a {
    display: inline-block;
    white-space: nowrap;
    height: 60px;
    line-height: 60px;
    padding: 0;
    margin-bottom: -1px;
    color: #111;
}
.xet-lnb > ul > li > .child {
    display: inline-block;
    padding-left: 5px;
    color: #777;
}
.xet-lnb a img {
    vertical-align: middle;
}
.xet-lnb ul > li > a.current {
    border-bottom: 1px solid #58c4a7;
    color: #58c4a7;
}
.xet-lnb ul ul {
    z-index: 99; 
    opacity: 0;
    visibility: hidden;
    position: absolute; 
    left: -30px; 
    top: 99%;    
    width: 200px;
    list-style: none;
    margin: 0; 
    padding: 10px 0;
    background: #fff;
    border: 1px solid #e1e1e1;
    box-shadow:0 4px 5px -3px rgba(0,0,0,.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,.1);
    transform: translateY(30px);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;    
}
.xet-lnb ul> li.hovered ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;    
}
.xet-lnb ul ul>li {
    display: block;
}
.xet-lnb ul ul>li>a {
    display: block;
    text-align: left;
    padding: 8px 15px;
    color: #111;
}
.xet-lnb ul ul>li:hover a,
.xet-lnb ul ul>li.current>a {
    color: #58c4a7;
}

/* content */
.xet-content { 
    background-color: #fff;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* FOOTER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-footer {
    position: relative;
    color: #7b7b7b;
    background-color: #f1f1f1;
}
#xet-footer p > a {
    white-space: nowrap;
    color: #7b7b7b;
}
#xet-footer h5 {
    color: #111;
}

/* Footer Nav */
.xet-footer-nav { 
    margin: 0; 
    padding: 0; 
    list-style:none; 
}
.xet-footer-nav > li { 
    display: inline-block; 
    margin: 0 7px 14px;
    padding: 0;    
}
.xet-footer-nav > li a { 
    display: inline-block;
    font-weight:normal; 
    cursor: pointer;
    color: #7b7b7b;
}
.xet-footer-nav > li a:hover { 
    text-decoration: underline;
}


/* SNS */
.xet-footer-sns .sns-toggle-btn {
    margin-bottom: 30px;
    cursor: pointer;
    color: #111;
}
.xet-footer-sns .sns-toggle-btn.open i {
    transform: rotate(180deg);
}
.xet-footer-sns .sns-code {
    display: none;
    margin-bottom: 30px;
}
.xet-footer-sns .sns-code>ul { 
    margin: 0; 
    padding: 0; 
    list-style:none; 
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.xet-footer-sns .sns-code>ul > li { 
    display: inline; 
    margin: 0 5px 10px;
    padding: 0;    
}
.xet-footer-sns .sns-code>ul > li a { 
    font-size: 16px;
    display:inline-block;
    font-weight:normal; 
    cursor: pointer;
    color: #111;
}
.xet-footer-sns .sns-code>ul > li a:hover { 
    text-decoration: underline;
}

/* 2025-09-15 추가 */
.xet-footer-add {
    background-color: #e1e1e1;
}

/* Dark 제거 */
/* #xet-footer.dark { ... }  삭제됨 */

/* ------------------------------------------------------------------------------------------------------------------ */
/* Mobile Side Panel
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-side-panel {
    z-index: 1100;
    position: fixed;
    background: #16181a;
    color: #ccc;
}
.xet-side-panel .side-panel-top {
    position: relative;
    height: 60px;
    padding: 0 15px;
    background: #fff;
}
.xet-side-panel .side-panel-top .xet-nav-ul > li.li-btn > button {
    width: 45px;
    font-size: 18px;
}
.xet-side-panel .side-panel-top button.xet-toggle-menu {
    position: absolute;
    right: 6px;
    top: 0;
    margin: 0;
    border: 0;
}
.xet-side-panel .side-panel-top .xet-toggle-menu.push-active span::before, 
.xet-side-panel .side-panel-top .xet-toggle-menu.push-active span::after {
    background: #333;
}

.xet-side-panel .side-panel-body {
    position: relative;
}    

/* Push */
.xet-push-left,
.xet-push-right {
    height: 100%;
    top: 0;
}
.xet-push-left {
    width: 100%;
    left: -100%;
}
.xet-push-right {
    width: 100%;
    right: -100%;
}
.xet-push-left.push-open {
    left: 0;
     -webkit-box-shadow: 2px 0px 6px rgba(0,0,0,.3);
    box-shadow: 2px 0px 6px rgba(0,0,0,.3);
}
.xet-push-right.push-open {
    right: 0;
     -webkit-box-shadow: -2px 0px 6px rgba(0,0,0,.3);
    box-shadow: -2px 0px 6px rgba(0,0,0,.3);
}
.push {
    left: 0;
    position: relative;
}
.push-toright {
    left: 100% !important;
}
.push-toleft {
    left: -100% !important;
}

body,
.xet-side-panel, 
.push {
    transition:all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition:all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transition:all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
/* push nav */

#xet-shadow-layer {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    cursor: pointer;    
    background-color: rgba(0, 0, 0, 0.6);
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* TOP SCROLL BUTTON
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-top-scroll { 
    z-index:999;
    display: none;
    position:fixed; 
    bottom: 72px;
    right: 8px;
    overflow:hidden; 
    width: 40px; 
    height: 40px; 
    line-height: 40px;
    text-align: center;
}
#xet-top-scroll a { 
    display: block;
    text-decoration:none;
    font-size: 0;
    opacity: 0.5;
    color: #fff;
    background: url(../img/up.png) center no-repeat rgba(0,0,0,.5);; 
    background-size: 16px;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}
#xet-top-scroll a:hover { 
    opacity: 1;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* waypoint - scroll animate
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-animate {
    opacity: 0;
}

/* delay time
---------------------------------*/
.delay-01s { 
    animation-delay: 0.1s; 
    -webkit-animation-delay: 0.1s; 
}
.delay-02s { 
    animation-delay: 0.2s; 
    -webkit-animation-delay: 0.2s; 
}
.delay-03s { 
    animation-delay: 0.3s; 
    -webkit-animation-delay: 0.3s; 
}
.delay-04s { 
    animation-delay: 0.4s; 
    -webkit-animation-delay: 0.4s; 
}
.delay-05s { 
    animation-delay: 0.5s; 
    -webkit-animation-delay: 0.5s; 
}
.delay-06s { 
    animation-delay: 0.6s; 
    -webkit-animation-delay: 0.6s; 
}
.delay-07s { 
    animation-delay: 0.7s; 
    -webkit-animation-delay: 0.7s; 
}
.delay-08s { 
    animation-delay: 0.8s; 
    -webkit-animation-delay: 0.8s; 
}
.delay-09s { 
    animation-delay: 0.9s; 
    -webkit-animation-delay: 0.9s; 
}
.delay-10s { 
    animation-delay: 1s; 
    -webkit-animation-delay: 1s; 
}
.delay-12s { 
    animation-delay: 1.2s; 
    -webkit-animation-delay: 1.2s; 
}
.delay-15s { 
    animation-delay: 1.5s; 
    -webkit-animation-delay: 1.5s; 
}
.delay-18s { 
    animation-delay: 1.8s; 
    -webkit-animation-delay: 1.8s; 
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Preloader
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-preloader-wrp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #000;
}
.xet-preloader {
    display: block;
    position: relative;
    text-align: center;
    left: 0;
    top: 50%;
    width: 100%;
    margin: -50px 0 0 0;
}
.xet-preloader .preloader-logo {
    height: 60px;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}
.xet-preloader .preloader-logo>img {
    height: 60px;
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } 
 }

.ball-pulse > div:nth-child(1) {
    -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); 
}
.ball-pulse > div:nth-child(2) {
    -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); 
}
.ball-pulse > div:nth-child(3) {
    -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); 
}
.ball-pulse > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 0;
    margin: 2px;
    -webkit-animation-fill-mode: both;
     animation-fill-mode: both;
    display: inline-block; 
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* Custom buttons
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-btn-theme {
    padding: 10px 40px;
    position: relative;
    text-align: center;
    color: #111;
}
.xet-btn-theme::before, 
.xet-btn-theme::after {
    border: 1px solid rgba(0, 0, 0, 0.9);
    content: "";
    height: calc(50% - 10px);
    pointer-events: none;
    position: absolute;
    transition: all 0.33s ease 0s;
    width: calc(100%);
}
.xet-btn-theme.invert {
    color: #fff;
}
.xet-btn-theme.invert::before, 
.xet-btn-theme.invert::after {
    border-color: rgba(255, 255, 255, 0.9);
}
.xet-btn-theme::before {
    border-width: 1px 1px 0 1px;
    left: 0;
    top: 0;
}
.xet-btn-theme::after {
    border-width: 0 1px 1px 1px;
    bottom: 0;
    right: 0;
}
.xet-btn-theme:hover::before, 
.xet-btn-theme:hover::after {
    border-color: #58c4a7;
    height: calc(50% - 0px);
    width: 100%;
}
.xet-btn-theme:hover {
     transition: all 0.33s ease-out;
    -moz-transition: all 0.33s ease-out;
    -webkit-transition: all 0.33s ease-out;    
}

.xet-btn-default {
    border: 2px solid #111;
}

.xet-btn-bg-theme {     
    padding: 10px 30px;
    background-color: #58c4a7 !important;
    color: #fff !important;
    border-radius:30px !important;
}

/* hover */
.xet-btn:hover {}





/* ------------------------------------------------------------------------------------------------------------------ */
/* Theme
/* ------------------------------------------------------------------------------------------------------------------ */
.theme-color {
    color: #58c4a7;
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* 모바일 하단 버튼
/* ------------------------------------------------------------------------------------------------------------------ */
.mobile-bottom-btn {
    z-index: 88;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    gap: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
.mobile-bottom-btn a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 4px;
    height: 48px;
    background-color: #000000;
    color: #fff;    
}
.mobile-bottom-btn a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-bottom-btn a i {
    font-size: 20px;
    margin-bottom: 4px;
}

/* =========================
   QNA / FAQ  (#qna-faq 전용)
   - 폰트 건드림 없음
   ========================= */

#qna-faq{max-width:1120px;margin:0 auto;padding:64px 16px}
#qna-faq *{box-sizing:border-box}

/* ===== head (사용자 제공 스타일 그대로 포함) ===== */
#qna-faq .rxqna.head{ text-align:center; margin-bottom:40px; }
#qna-faq .rxqna.kicker{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.26em;
  font-weight:700;
  color:var(--rx-brand);
  text-transform:uppercase;
  opacity:.8;
}
#qna-faq .rxqna.h2{
  margin:0;
  font-size:32px;
  font-weight:900;
  letter-spacing:-.03em;
  color:var(--rx-ink);
  line-height:1.2;
}
#qna-faq .rxqna.sub{
  margin-top:10px;
  font-size:15px;
  color:var(--rx-muted);
  font-weight:400;
  line-height:1.6;
}

/* ===== list ===== */
#qna-faq .rxqna-list{display:grid;gap:16px}

/* ===== item (둥근 박스) ===== */
#qna-faq .rxqna-item{
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
#qna-faq .rxqna-item:hover{
  border-color:rgba(0,0,0,.12);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transform:translateY(-1px);
}

/* h3 기본 여백 제거 */
#qna-faq .rxqna-h3{margin:0}

/* ===== toggle button ===== */
#qna-faq .rxqna-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:24px 24px;
  background:transparent;
  border:0;
  cursor:pointer;
  text-align:left;
  color:var(--rx-ink);
  line-height:1.45;
  font-size:18px;
  font-weight:800;
}
#qna-faq .rxqna-toggle:focus{outline:none}
#qna-faq .rxqna-toggle:focus-visible{
  box-shadow:0 0 0 3px color-mix(in oklab, var(--rx-brand) 30%, transparent);
}

/* 질문 텍스트 */
#qna-faq .rxqna-text{min-width:0;word-break:keep-all}

/* ===== 화살표(배경 없이 삼각형만) ===== */
#qna-faq .rxqna-arrow{
  flex:0 0 auto;
  width:18px;
  height:18px;
  background:transparent;
  border-radius:0;
  position:relative;
  transition:transform .18s ease;
}



/* 삼각형 ▼ */
#qna-faq .rxqna-arrow::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:0;height:0;
  border-left:7px solid transparent;
  border-right:7px solid transparent;
  border-top:8px solid rgba(0,0,0,.55);
  transform:translate(-50%,-35%);
  transition:border-top-color .18s ease;
}

/* hover 시 삼각형 색 */
#qna-faq .rxqna-toggle:hover .rxqna-arrow::before{
  border-top-color:var(--rx-brand);
}

/* 열림 상태(aria-expanded=true) : 위로 ▲ */
#qna-faq .rxqna-toggle[aria-expanded="true"] .rxqna-arrow{
  transform:rotate(180deg);
}
#qna-faq .rxqna-toggle[aria-expanded="true"] .rxqna-arrow::before{
  border-top-color:var(--rx-brand);
}

/* ===== answer ===== */
#qna-faq .rxqna-ans{
  display:none;
  padding:0 24px 22px;
  border-top:2px solid rgba(0,0,0,.06);
}
#qna-faq .rxqna-ans p{
  margin:14px 0 0;
  color:var(--rx-muted);
  line-height:1.75;
  font-size:16px;
}

/* 답변 오픈 시 */
#qna-faq .rxqna-toggle[aria-expanded="true"] + .rxqna-ans{display:block}

/* ===== mobile ===== */
@media (max-width:640px){
  #qna-faq{padding:52px 14px}
  #qna-faq .rxqna-toggle{padding:20px 18px;font-size:16px}
  #qna-faq .rxqna-arrow{width:16px;height:16px}
  #qna-faq .rxqna-arrow::before{
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-top:6px solid rgba(0,0,0,.55);
  }
  #qna-faq .rxqna-ans{padding:0 18px 18px}
}
