@import '/vip_club/css/reset.css';
@import '/vip_club/css/nomalize.css';

@import url('/vip_club/css/webfont.css');
@import url('/vip_club/assets/suit/SUIT.css');

:root {
  --font-main: 'SUIT', sans-serif;

  /*  COLOR  */
  --primary: #DDBD85;
  --secondary: #1B1100;

  --txt-main: #fff;
  --txt-sub: #D9D9D9;
  --gnb-active: #EDA858;
  --back-color: #000;
  --border-color: #444;

  --card-gradient: linear-gradient(158deg, #1B1100 65.18%, #4A3819 153.07%);

  --gold-gradient: linear-gradient(-45deg, #ab8e5d, #987230, #61440f);
  --gold-border: linear-gradient(90deg, rgba(221, 189, 133, 0) 0%, #DDBD85 50%,rgba(221, 189, 133, 0) 100%);

  /*  Z-INDEX  */
  --icon :10;
  --gnb: 100;
  --sidebar: 200;
  --overlay: 300;
  --popup: 400;

  /*  RADIUS  */
  --input--radius: 6px;
  --btn-primary-radius: 10px;
  --btn-secondary-radius: 28px;
  --popup-radius: 16px;
  --box-radius: 20px;

  /*  MAX-WIDTH  */
  --max-width: 1580px;

  /*  HEIGHT  */
  --global-nav: 50px;
  --global-header-lg: 206px;
  --global-header-md: 76px;
  --global-header-sm: 70px;
}

.sm-only,
.md-only,
.lg-hidden {
  display: none;
}


/* ········································· */
/* ·············· COMPONENTS(LG) ··········· */
/* ········································· */

/* ····· POSITON ······ */
.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ······ BUTTONS ······ */ 
.btn {
  padding: 0 20px;
  font-weight: 700;
  transition: color 200ms ease-in-out, background-color 200ms ease-in-out;
}

.btn:disabled {
  cursor: not-allowed;
}

.btn-primary {
  color: var(--back-color);
  border-radius: var(--btn-primary-radius);
  background-color: var(--primary);
}

.btn-primary:not(:disabled):hover {
  background-color: var(--gnb-active);
}

.btn-primary:disabled {
  background-color: var(--border-color);
}

.btn-primary.outlined {
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--btn-primary-radius);
  background-color: var(--secondary);
}

.btn-primary.outlined:not(:disabled):hover {
  color: var(--txt-main);
  background-color: var(--secondary);
}

.btn-primary.outlined:disabled {
  opacity: .5;
}

.btn-secondary {
  color: var(--txt-main);
  border: 1px solid #F8DEB1;
  border-radius: var(--btn-secondary-radius);
  background: var(--secondary);
  transition: filter 300ms ease-in-out;
}

.btn-secondary:not(:disabled):hover {
  filter: brightness(1.2);
}

.btn-secondary.is-active {
  color: var(--back-color);
  background: linear-gradient(180deg, #DDBD85 0%, #AA7C2B 93.52%);
}

/* NOTE: Button Sizes */
.btn-44 {
  height: 44px;
}

.btn-50 {
  height: 50px;
}

.btn-54 {
  height: 54px;
}

/* ····· INPUTBOX ····· */
.inputbox {
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: var(--input--radius);
}

.inputbox input {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  color: var(--primary); 
}

/* ····· CHECKBOXES ····· */
.checkbox-item {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

.checkbox-item input {
  display: none;
}

.checkbox-item .checkmark {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  background-color: transparent;
  transition: background-color 300ms ease;
}

.checkbox-item:hover .checkmark {
  background-color: var(--border-color);
}

.checkbox-item p {
  position: relative;
  flex-shrink: 0;
  color: var(--txt-sub);
}

/* ····· CHECK ······ */
.checkbox-item .checkmark {
  position: relative;
  border-radius: var(--input--radius); 
}

.checkbox-item input:checked + .checkmark {
  border: 1px solid var(--primary);
}

.checkbox-item .checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 8px;
  opacity: 0;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) scale(0);
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.checkbox-item input:checked + .checkmark::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

/* ····· CUSTOM SELECT ······ */
.custom-select {
  position: relative;
  cursor: pointer;
}

.custom-select .selected,
.custom-select .option-list {
  display: flex;
  width: 100%;
  border-radius: var(--btn-primary-radius);
}

.custom-select .selected {
  justify-content: space-between;
  align-items: center;    
  background-color: var(--secondary);
}

.custom-select .selected > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-select .selected .name {
  color: var(--txt-main);
  font-weight: 700;
}

.custom-select .option-list {
  position: absolute;
  z-index: var(--icon);
  flex-direction: column;
  visibility: hidden;
  max-height: 0;
  overflow-y: hidden;
  font-weight: 700;
  border: 1px solid var(--primary);
  background-color: var(--secondary);
  transition: visibility 300ms ease-in-out, max-height 300ms ease-in-out;
}

.custom-select .option-list > div {
  position: relative;
  transition: color 300ms ease-in-out, font-weight 300ms ease-in-out;
}

.custom-select .option-list > div:hover {
  color: var(--txt-main);
  font-weight: 700;
}

.custom-select .option-list > div:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 86%;
  height: 1px;
  background-color: var(--border-color);
}

.custom-select .option-list > div,
.custom-select .option-list > div p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.custom-select.is-active .option-list {
  visibility: visible;
  padding: 8px 0;
}

.custom-select img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* ····· ICON BOX (CIRCLE, SQUARE) ······ */
.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box.circle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
}

.icon-box.circle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  color: var(--back-color);
}

.icon-box.square {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: var(--box-radius);
  overflow: hidden;
  background: var(--gold-gradient);
}

.icon-box.square::before {
  content: '';
  position: absolute;
  background: inherit; 
  inset: 0;
  filter: brightness(0.5);
  transition: filter 300ms ease-in-out; 
}

.icon-box.square i {
  font-size: 60px;
  color: var(--txt-main);
  opacity: .2;
  z-index: var(--icon);
}

/* ····· GOLD BOX ······ */
.gold-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  border-radius: var(--box-radius);
  background-color: var(--secondary);
}

.gold-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: var(--box-radius);
  background: var(--gold-gradient);
  transition: all 300ms ease-in-out;
}

.gold-box:hover::before {
  animation: border-pulse 2s ease-out infinite;
}

.gold-box.speed-game-info-item,
.gold-box.partner-item {
  cursor: default;
}

.gold-box.speed-game-info-item:hover::before,
.gold-box.partner-item:hover::before {
  animation: none;
}

@keyframes border-pulse {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5);
  }
  100% {
    filter: brightness(1);
  }
}

/* ····· TOP LINE BOX ······ */
.top-line-box {
  position: relative;
  background-color: var(--secondary);
}

.top-line-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gold-border);
}

/* ····· GOLD LINE ······ */
.gold-line {
  position: relative;
}

.gold-line::before,
.gold-line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-border);
}

.gold-line::before {
  top: 0;
}

.gold-line::after  {
  bottom: 0;
}

/* ····· STAR RATING ······ */
.star-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 20px; 
}

.star-rating .ic-star {
  color: var(--primary);
  opacity: .3;
}

.star-rating .ic-star.is-active {
  opacity: 1;
}

/* ····· PAGINATION ······ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 8px;
  margin-top: 50px;
}

.pagination .page-control,
.page-item {
  position: relative;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--primary);
  font-weight: 700;
  border: 1px solid var(--primary);
  border-radius: var(--btn-primary-radius);
  background-color: var(--secondary);
  transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
}

.pagination .page-control {
  border-color: var(--border-color);
  background-color: var(--border-color);
}

.pagination .page-control:hover {
  background-color: var(--txt-sub);
}

.pagination .page-list {
  display: flex;
  gap: 8px;
}

.pagination .page-control i,
.page-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pagination .page-control.next {
  transform: rotate(180deg);
}

.page-item.is-active {
  color: var(--back-color);
  border: transparent;
  background: var(--gold-gradient);
}

.page-item:not(.is-active):hover {
  color: var(--txt-main);
}

/* ····· SEARCH ······ */
.search-box {
  position: relative;
  max-width: 420px;
  height: 50px;
  overflow: hidden;
  border-color: var(--primary);
  border-radius: var(--input--radius);
}

.search-box::after {
  content: '\e925';
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--border-color);
  font-family: vip_club;
}

.search-box input {
  width: calc(100% - 100px);
  color: var(--primary);
  padding: 0 16px 0 40px;
}

.search-box button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  min-width: 100px;
  height: 100%;
  font-weight: 700;
  color: var(--back-color);
  background-color: var(--primary);
}

/* ····· SUB TITLE ······ */
.sub-title {
  text-align: center;
}

.sub-title h2 {
  font-size: 32px;
}

.sub-title p {
  margin-top: 12px;
  color: var(--txt-sub);
}


body {
  font-family: var(--font-main);
  background-color: var(--back-color);
}

/* ········································· */
/* ················ GLOBAL(LG) ············· */
/* ········································· */
/* ····· HEADER ····· */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--gnb);
  width: 100%;
  height: var(--global-header-lg);
  padding: 0 40px;
  background-color: var(--back-color);
}

.header-top {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 10px;
  max-width: var(--max-width);
  height: calc(100% - var(--global-nav));
  margin: 0 auto;
  padding: 20px 0;
}

.global-header .logo {
  width: 142px; 
  height: 110px;
}

.global-header .logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url('/vip_club/assets/images/logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.lang-select {
  min-width: 200px;
}

.lang-select .selected {
  height: 50px;
  padding: 0 16px;
}

.lang-select.is-active .option-list {
  max-height: calc((58px * 6) + 16px);
}

.lang-select .option-list > div {
  padding: 12px 16px;
}

.lang-select i {
  font-size: 8px;
}

.header-top .reserve-btn {
  width: 140px;
}

.gnb-wrapper {
  position: relative;
  gap: 40px;
  height: 50px;
}

.gnb-list {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.gnb-item {
  height: 100%;
}

.gnb-item:hover > a {
  color: var(--primary);
  transition: color 300ms ease-in-out;
}

.gnb-item.is-active > a {
  color: var(--gnb-active);
}

.gnb-item > a {
  display: inline-block;
  height: 100%;
  line-height: 50px;
  color: var(--txt-main);
  font-weight: 700;
}

/* ····· SIDEBAR ····· */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--sidebar);
  transform: translateX(-100%);
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: var(--back-color);
  transition: transform 300ms ease-in-out;
}

.sidebar.is-active {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--global-header-sm);
  padding: 10px 16px;
  border-bottom: .5px solid var(--primary);
}

.sidebar-header .close-btn {
  cursor: pointer;
  font-size: 18px;
}

.sidebar-main {
  margin: 18px 16px;
}

.sidebar-main .reserve-btn {
  width: 100%;
}

.sidebar-nav {
  overflow-y: scroll;
  padding: 4px 16px;
  margin-top: 20px;
  border-radius: var(--input--radius);
  background-color: var(--secondary);
}

.drawer-menu:not(:last-of-type) {
  border-bottom: .5px solid rgba(255, 255, 255, .2);
}

.drawer-menu .drawer-menu-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--txt-main);
  width: 100%;
  height: 54px;
  padding: 20px 8px;
  font-weight: 700;
  transition: color 200ms ease-in-out; 
}

.drawer-menu.is-active .drawer-menu-button {
  color: var(--gnb-active);
}

.drawer-menu .drawer-menu-button .category {
  margin-right: 6px;
  font-weight: 800;
}

.drawer-menu .drawer-menu-button .ic-dropdown {
  font-size: 6px;
  color: var(--txt-sub);
  transition: transform 200ms ease-in-out;
}

.drawer-menu.is-open .drawer-menu-button .ic-dropdown {
  transform: translateY(-50%) rotate(-180deg); 
}
 
.drawer-menu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out; 
}

.drawer-menu.is-open .drawer-menu-content {
  max-height: 10000px; 
}

.sidebar .drawer-menu.is-open .drawer-menu-content {
  max-height: 150px; 
}

.drawer-menu-item a {
  display: flex;
  align-items: center;  
  color: var(--txt-sub);
  height: 50px;
  padding: 0 12px;
  font-size: 14px;
  border-bottom: .1px solid rgba(255, 255, 255, 0.1);
}

.drawer-menu-item.is-active a {
  border-bottom: .1px solid var(--gnb-active);
}

/* ····· FOOTER ······ */
.global-footer {
  width: 100%;
  margin-top: 60px;
  background-color: #111;
}

.global-footer > div {
  width: 90%;
  margin: 0 auto;
  padding: 45px 0;
}

.global-footer .logo {
  width: 180px;
  height: 100px;
} 

.contact-list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--primary);
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-weight: 700;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.contact-method a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
}

.contact-method button:hover {
  filter: brightness(1.4);
  transition: filter 300ms ease-in-out;
}

.contact-item.contact .contact-method span {
  color: #989898;
}

.contact-item.chat .contact-method i {
  font-size: 30px;
}

.contact-item.chat .contact-method .ic-talk {
  margin-top: 1px;
}

.contact-item.chat .contact-method .ic-telegram {
  margin-left: -1px;
  font-size: 40px;
}

.contact-item.channel .contact-method i {
  font-size: 30px;
}

.contact-item.channel .contact-method .ic-twitter {
  margin-top: 1px;
  margin-left: 1px;
  font-size: 26px;
}

.contact-item.channel .contact-method .ic-youtube {
  font-size: 22px;
}

.copy-right {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #989898;
}


/* ········································· */
/* ················ 메인(LG) ················ */
/* ········································· */
.main-content {
  margin-top: calc(var(--global-header-lg) + 20px);
}

/* ····· MAIN-BANNER ····· */
.main-banner.main {
  height: 648px;
}

.main-banner {
  position: relative;
  height: 420px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1580px;
  margin: 0 auto;
  border-radius: var(--btn-primary-radius);
  overflow: hidden;
}

.main-banner video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.main-banner.main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/vip_club/assets/overlay50.png');
  background-position: center;
}

.main-banner.right .vip-intro {
  text-align: right;
}

.main-banner.service-intro {
  background-image: url('/vip_club/assets/images/banner/service-intro.jpg');
  background-position: left;
}

.main-banner.o2o-service {
  background-image: url('/vip_club/assets/images/banner/o2o-service.jpg');
}

.main-banner.partner {
  background-image: url('/vip_club/assets/images/banner/parther.jpg');
}

.main-banner.news {
  background-image: url('/vip_club/assets/images/banner/news-insight.jpg');
}

.main-banner.customer {
  background-image: url('/vip_club/assets/images/banner/customer.jpg');
}

.vip-intro {
  width: 90%;
  max-width: var(--max-width);
  z-index: var(--icon);
}

.vip-intro > p {
  color: var(--txt-main);
}

.vip-intro > ul {
  color: var(--txt-sub);
}

.vip-intro > ul li span {
  color: var(--txt-main);
  font-weight: 800;
}

.vip-intro span {
  font-family: inherit;
}

.vip-slogan {
  font-size: 40px;
}

.vip-title {
  margin-top: 16px;
  font-family: Didot;
  font-size: 60px;
  font-weight: 700;
}

.vip-intro.sub .vip-title {
  margin-top: 0;
  font-size: 48px;
}

.vip-intro.sub ul {
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.4;
}

.vip-intro.sub ul li:not(:first-child) {
  margin-top: 24px;
}

.vip-description {
  font-family: Didot;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 550px;
  height: 60px;
  margin-top: 80px;
  color: var(--back-color);
  font-weight: 700;
  background: linear-gradient(90deg, rgba(163, 88, 32, 0.00) 0%, rgba(167, 114, 52, 0.73) 10.2%, rgba(237, 168, 88, 0.85) 22.8%, #FFCC91 48.9%, rgba(237, 168, 88, 0.96) 70.3%, rgba(167, 114, 52, 0.93) 84.9%, rgba(163, 88, 32, 0.00) 100%);
}

.content-wrap {
  max-width: var(--max-width);
  margin: 60px auto 0;
}

/* ····· VIP CARD ····· */
.vip-card-item {
  display: flex;
  align-items: stretch;
  gap: 16px;
  min-height: 420px;
}

.vip-card-item:not(:first-of-type) {
  margin-top: 40px;
}

.vip-card-item > div {
  overflow: hidden;
  border-radius: var(--btn-primary-radius);
}

.vip-card-item:nth-child(odd) .vip-card-image {
  order: 1;
}

.vip-card-image {
  flex: 4;
  height: inherit;
}

.vip-card-image img {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 6;
  height: inherit;
  padding: 30px 50px;
  background: var(--card-gradient);
}

.vip-card-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.vip-card-description {
  display: flex;
  flex-direction: column;
  line-height: 1.8;
  margin-top: 30px;
  color: var(--txt-sub);
}

.vip-card-item.intro .vip-card-description,
.vip-card-item.partner .vip-card-description {
  gap: 16px;
}

.vip-card-description p span {
  font-weight: 700;
}

/* ····· VIP SERVICE ····· */
.vip-service {
  margin-top: 160px;
}

.vip-service-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--Gold, #DDBD85) 38.5%, #4A2F00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card-item {
  width: calc((100% - (20px * 3)) / 4);
  min-height: 300px;
  padding: 50px 40px;
  text-align: center;
}

.service-card-item.gold-box::before {
  background: transparent;
}

.service-card-item.gold-box:hover::before {
  background: var(--gold-gradient);
}

.service-card-item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.service-card-title {
  margin-top: 20px;
}

.service-card-item.gold-box:hover .service-card-title {
  color: var(--txt-main);
}

.service-card-list {
  margin-top: 60px;
}

.service-card-content {
  color: var(--txt-sub);
  line-height: 175%;
  opacity: .5;
}

.service-card-item:hover .service-card-content,
.service-card-item.gold-box:hover .icon-box.square i {
  opacity: 1;
}

.service-card-item:hover .icon-box.square::before {
  filter: none;
}


/* ········································· */
/* ············ VIP 서비스 소개(LG) ··········· */
/* ········································· */
.vip-service-list {
  display: flex;
  gap: 16px;
  width: 100%;
  height: 620px;
  margin: 20px auto 0;
}

.vip-service-item {
  position: relative;
  display: flex;
  flex-grow: 1;
  color: var(--txt-main);
  transition: all 400ms ease-in-out;
}

.vip-service-item.is-active {
  flex-grow: 2;
}

.vip-service-item .vip-service-img {
  position: relative;
  width: 100%;
  min-width: 260px;
  max-width: 369px;
  height: 100%;
  filter: brightness(.5);
  transition: filter 400ms ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.vip-service-item:nth-child(1) .vip-service-img {
  background-image: url('/vip_club/assets/images/service-1.jpg');
}

.vip-service-item:nth-child(2) .vip-service-img {
  background-image: url('/vip_club/assets/images/service-2.jpg');
}

.vip-service-item:nth-child(3) .vip-service-img {
  background-image: url('/vip_club/assets/images/service-3.jpg');
}

.vip-service-item:hover .vip-service-img  {
  filter: brightness(1);
  cursor: pointer;
}

.vip-service-item.is-active .vip-service-img {
  filter: brightness(1);
}

.vip-service-item.is-active .vip-service-img p {
  display: none;
}

.vip-service-item .vip-service-view {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 40px;
  width: 100%;
  font-weight: 700;
  text-align: center;
}

.vip-service-item .vip-service-view .view-icon {
  font-size: 24px;
}

.vip-service-item .vip-service-view .view-content {
  margin-right: 16px;
  text-decoration: underline;
}

.vip-service-caption {
  visibility: hidden;
  max-width: 0;
  overflow: hidden;
  background-color: var(--secondary);  
}

.vip-service-item.is-active .vip-service-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  visibility: visible;
  max-width: 550px;
  padding: 0 50px;
} 

.vip-service-heading {
  position: relative;
  padding: 16px 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.vip-service-caption p,
.vip-service-features li {
  line-height: 1.5;
  color: var(--txt-sub);
  text-align: left;
}

.vip-service-features {
  list-style: disc;
  padding-left: 12px;
  text-wrap: nowrap;
}

/* ····· PACKAGE INFO CARD ······ */
.package-info-wrap {
  margin-top: 60px;
}

.package-info-description {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 20px 26px;
  background-color: var(--secondary);
  border-radius: var(--input--radius);
}

.package-info-description i {
  font-size: 30px;
}

.package-info-description p {
  color: var(--txt-sub);
}

.package-info-list {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.package-info-item {
  position: relative;
  width: calc((100% - (20px * 3)) / 4);
  padding: 30px 30px 110px;
}

.package-info-item:hover button {
  background-color: var(--gnb-active);
  transition: background-color 200ms ease-in-out;
}

.package-info-item > a {
  width: 100%;
  height: 100%;
  text-align: center;
}

.package-plan {
  width: 100%;
  font-weight: 700;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--primary);
  color: var(--txt-sub);
}

.package-plan .package-tier {
  margin-top: 16px;
  font-size: 28px;
  color: var(--primary);
}

.package-price {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--txt-sub);
}

.package-info-item ul {
  width: 100%;
  margin-top: 30px;
}

.package-info-item ul li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  text-align: left;
  color: var(--txt-sub);
}

.package-info-item ul li::before {
  content: '\e90b';
  width: 20px;
  height: 20px;
  font-family: vip_club;
  font-size: 20px;
  opacity: .5;
}

.package-info-item button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  min-width: 140px;
}


/* ········································· */
/* ·············· O2O 서비스(LG) ············· */
/* ········································· */
.content-wrap.o2o-service {
  max-width: 1000px;
}

.content-wrap .tab-content {
  margin-top: 60px;
}

.tab-btn-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tab-btn-list button {
  max-width: 240px;
  min-width: 240px;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.tab-content:first-of-type {
  margin-top: 40px;
}

.content-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  height: 550px;
  color: var(--txt-main);
}

.img-wrap {
  flex-shrink: 0;
  width: 360px;
  height: inherit;
  border-radius: var(--input--radius);
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-area-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-area-title h2 {
  color: var(--primary);
}

.text-area-title p {
  color: var(--txt-sub);
}

.access-button {
  align-self: start;
  min-width: 140px;
  margin-top: 12px;
}


/* ····· SPEED GAME INFO ······ */
.speed-game-wrap {
  margin-top: 30px;
}

.speed-game-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 30px;
  cursor: default;
}

.speed-game-info-item:not(:first-child) {
  margin-top: 16px;
}

.speed-game-info-item .num {
  margin-right: 10px;
  font-size: 48px;
  font-weight: 900;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.speed-game-info-item > div {
  flex-grow: 1;
}

.speed-game-info-item > div p:first-child {
  font-size: 20px;
  font-weight: 700;
}

.speed-game-info-item > div p:last-child {
  margin-top: 6px;
  color: var(--txt-sub);
  font-size: 14px;
}


/* ········································· */
/* ·············· 제휴 파트너(LG) ············· */
/* ········································· */
.content-wrap.partnership .tab-btn-list button {
  width: calc((100% - (8px * 2)) / 3);
  min-width: 0;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: var(--max-width);
}

.partner-item {
  width: calc((100% - (20px * 2)) / 3);
  padding: 40px;
  align-items: start;
}

.partner-item .swiper {
  width:100%;
  height:260px;
  border-radius: var(--input--radius);
  overflow:hidden;
}

.partner-item .swiper .swiper-button-prev:after, 
.partner-item .swiper .swiper-button-next:after {
  font-size:20px;
  font-weight:600;
  color: var(--primary);
}

.partner-item .swiper .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: .5
}

.partner-item .swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

.partner-item img {
  width:max-content;
  width:100%;
  min-height:240px
}

.partner-title {
  color: var(--txt-main);
}

.partner-txt {
  color: var(--txt-sub);
}

.partner-info {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.partner-info .sub-title {
  min-width: 100px;
  text-align: left;
  color: var(--txt-main);
}




/* ········································· */
/* ············ 뉴스 & 인사이트(LG) ··········· */
/* ········································· */
/* ····· 스카이이글스 소식 ····· */
.content-wrap.news .tab-btn-list button {
  width: calc((100% - (8px * 2)) / 3);
  min-width: 0;
}

.news-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-title-wrap .title {
  color: var(--txt-main);
}

.news-title-wrap .search-box {
  width: 100%;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.news-item {
  width: calc((100% - (20px * 4 ))/ 5);
  font-weight: 700;
  transition: filter 300ms ease-in-out;
}

.news-item:hover {
  filter: brightness(1.2);
}

.news-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-item .news-title {
  color: var(--txt-sub);
  margin-top: 12px;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item .news-tag {
  color: var(--primary);
}

.news-views {
  margin-top: 8px;
  font-size: 14px;
  color: var(--txt-sub);
}

/* ····· 환율 정보 ····· */
.tab-content.exchange .title {
  text-align: center;
  color: var(--txt-main);
}

.exchange-wrap {
  max-width: 1240px;
  margin: 50px auto 0;
}

.country-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.country-item {
  width: calc((100% - (20px * 3)) / 4);
  padding: 30px 50px;
  border-radius: var(--box-radius);
  background-color: var(--secondary);
}

.country-item .country {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--txt-sub);
}

.country-item .country img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.country-item .rate {
  margin-top: 20px;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
}

.exchange-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--txt-sub);
}

.gold-box.exchange-box {
  position: relative;
  margin-top: 60px;
  cursor: default;
  align-items: start;
  padding: 20px;
  background-color: var(--back-color);
}

.gold-box.exchange-box > div {
  display: flex;
  width: 100%;
  height: 100px;
  border-radius: var(--box-radius);
  background-color: var(--secondary);
}

.exchange-box-first.change-order {
  order: 2;
}

.country-select {
  flex: 1;
}

.country-select .selected {
  position: relative;
  height: 100px;
  padding: 0 30px;
}

.country-select .selected::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: var(--border-color);
}

.country-select .selected > div {
  gap: 16px;
}

.country-select .selected img {
  width: 44px;
  height: 44px;
}

.country-select .code {
  margin-top: 4px;
  font-size: 14px;
}

.country-select .selected i {
  justify-self: end;
  font-size: 12px;
  color: var(--primary);
}

.country-select .option-list {
  top: 100px;
}

.country-select.is-active .option-list {
  max-height: calc((58px * 4) + 16px);
}

.country-select .option-list > div {
  padding: 16px 30px;
}

.exchange-rate {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 4px;
  padding: 0 40px;
}

.exchange-rate .main {
  height: fit-content;
  text-align: right;
  font-size: 24px;
  font-weight: 800;
  color: var(--txt-main);
  text-align: right;
}

.exchange-rate .main::placeholder {
  color: inherit;
}

.exchange-rate .sub {
  font-size: 14px;
  font-weight: 700;
}

.exchange-icon:hover {
  filter: brightness(1.4);
  transition: filter 300ms ease-in-out;
}

.exchange-icon .icon-box.circle {
  width: 50px;
  height: 50px;
  transform: rotate(90deg);
  cursor: pointer;
}

.exchange-icon .icon-box.circle i {
  font-size: 20px;
}


/* ········································· */
/* ··············· 뉴스 리드(LG) ············· */
/* ········································· */
.content-wrap.news-read .list-btn {
  min-width: 140px;
}

.drawer-top {
  display: flex;
}

.drawer-top p {
  width: 50%;
  padding: 0 8px;
}

.drawer-top p span {
  display: inline-block;
  min-width: 100px;
  color: var(--primary);
  font-weight: 700;
}

.drawer-top .date {
  position: relative;
}

.drawer-top .date::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 20px;
  width: 1px;
  height: 16px;
  background-color: var(--border-color);
}

.drawer-img {
  margin-top: 20px;
}

.content-wrap.news-read .drawer-menu-item {
  margin: 30px 0;
}

.content-wrap.news-read .drawer-menu-item p  {
  margin-top: 20px;
}

.content-wrap.news-read .drawer-board .drawer-menu.is-active .drawer-menu-content {
  padding: 20px 0 0;
}


/* ········································· */
/* ················ 고객센터(LG) ············· */
/* ········································· */
.map-wrap .contact-icon-list {
  display: flex;
  justify-content: center;  
  gap: 12px;
  padding: 30px 0;
  margin-top: 0;
}

.map-wrap .contact-method {
  margin-top: 0;
}

.map-wrap .contact-text {
  color: var(--txt-main);
  font-weight: 700;
  margin-right: 20px;
} 

.map-wrap .contact-item.chat {
  margin-top: 0;
}

.map-wrap .map {
  height: 500px;
}

/* ····· FAQ ····· */
.faq-wrap {
  margin-top: 60px;
}

/* ····· DRAWER BOARD ····· */
.drawer-board {
  margin-top: 20px;
}

.drawer-board .drawer-menu {
  padding: 0 30px;
  margin-top: 12px;
  background-color: var(--secondary);
  border-radius: var(--input--radius);
}

.drawer-board .drawer-menu:not(:last-of-type) {
  border: none;
}

.drawer-board .drawer-menu.is-open .drawer-menu-button {
  border-bottom: 1px solid var(--border-color);
}

.drawer-board .drawer-menu-button {
  position: relative;
  height: 68px;
}

.drawer-board .drawer-menu-button::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: var(--primary);
}

.drawer-board .drawer-menu.is-open .drawer-menu-button::before {
  background-color: var(--gnb-active);
}

.drawer-board .drawer-menu-button p {
  width: 90%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-board .drawer-menu .drawer-menu-content {
  color: var(--txt-sub);
  transition: color 200ms ease-in-out, padding 200ms ease-in-out;
}
 
.drawer-board .drawer-menu.is-active .drawer-menu-content {
  padding: 20px 0;
  color: var(--txt-sub);
}



/* ········································· */
/* ················ POPUP(LG) ·············· */
/* ········································· */
body.popup-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--popup);
  display: none;
  padding: 25px;
  border-radius: var(--popup-radius);
  border: 1px solid var(--primary);
  background-color: var(--secondary);
}

.popup.is-active {
  display: block;
}

.popup .close-btn.icon {
  position: absolute;
  top: 26px;
  right: 26px;
  cursor: pointer;
  font-size: 30px;
  transition: color 300ms ease-in-out;
}

.popup .close-btn.icon:hover {
  color: var(--gnb-active);
}

.popup .title {
  margin-top: 36px;
  text-align: center;
}

.popup .content-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 200px;
  overflow-y: scroll;
  margin-top: 20px;
  line-height: 1.4;
  color: var(--txt-sub);
}

.popup .content-list span {
  font-weight: 800;
}

.popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.popup-footer .close-btn {
  min-width: 160px;
}

/* ····· POPUP : NOTICE ····· */
.popup.notice {
  width: 90%;
  max-width: 650px;
  max-height: 90dvh;
  overflow-y: scroll;
}

.notice-img {
  height: 240px;
  margin-top: 30px;
  border-radius: var(--btn-primary-radius);
  overflow: hidden;
}

.popup-option p {
  opacity: .5;
}

/* ····· OVERLAY ····· */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--overlay);
  visibility: hidden;
  opacity: 0;
  background-color: #000;
  transition: visibility 300ms ease-in-out, opacity 300ms ease-in-out;
}

.popup.is-active ~.overlay {
  visibility: visible;
  opacity: .8;
}


/* SMALL WEB (S-LG) | 801px ~ 1200px */ 
@media screen and (max-width: 1200px ) {  
  /* ········································· */
  /* ············· COMPONENTS(S-LG) ·········· */
  /* ········································· */
  /* ····· STAR RATING ······ */
  .star-rating {
    gap: 6px;
    font-size: 18px; 
  }

  .global-header {
    padding: 0 20px ;
  }

  .gnb-list {
    padding: 0 30px;
  }

  .global-header .logo {
    width: 120px; 
    height: 90px;
  }

  /* ····· SEARCH ······ */
  .search-box {
    max-width: 360px;
    height: 44px;
  }


  /* ········································· */
  /* ·············· GLOBAL(S-LG) ············· */
  /* ········································· */
  /* ····· HEADER ····· */
  .lang-select {
    min-width: 160px;
  }

  .header-top .reserve-btn {
    width: 100px;
  }

  /* ····· FOOTER ······ */
  .global-footer {
    margin-top: 50px;
  }

  .global-footer > div {
    padding: 30px 0;
  }

  .global-footer .logo {
    width: 110px;
    height: 48px;
    margin: 0 auto;
  } 

  .contact-list {
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-top: 40px;
    padding-bottom: 40px;
    text-align: center;
  }

  .contact-item.chat,
  .contact-item.channel {
    margin-top: 40px;
  }

  .contact-method {
    margin-top: 12px;
  }
  
  .contact-method .icon-box {
    width: 36px;
    height: 36px;
  }

  .contact-item .contact-method i {
    font-size: 18px;
  }

  .contact-item.chat .contact-method i {
    font-size: 22px;
  }

  .contact-item.chat .contact-method .ic-telegram {
    font-size: 30px;
  }

  .contact-item.channel .contact-method i {
    font-size: 20px;
  }

  .contact-item.channel .contact-method .ic-twitter {
    font-size: 19px;
  }

  .contact-item.channel .contact-method .ic-youtube {
    font-size: 16px;
  }

  .copy-right {
    margin-top: 20px;
    font-size: 12px;
  }


  /* ········································· */
  /* ··············· 메인(S-LG) ··············· */
  /* ········································· */
  /* ····· MAIN-BANNER ····· */
  .main-banner, .main-banner.main {
    height: 400px;
  }

  .main-banner.main::after {
    content: none;
  }
  

  .vip-slogan {
    font-size: 30px;
  }

  .vip-title {
    margin-top: 12px;
    font-size: 40px;
  }

  .vip-intro.sub .vip-title {
    font-size: 36px;
  }
  
  .vip-intro.sub ul {
    font-size: 16px;
  }

  .vip-description {
    width: 500px;
    height: 50px;
    margin-top: 36px;
    font-size: 14px;
  }

  .content-wrap {
    padding: 0 20px;
  }

  /* ····· VIP CARD ····· */
  .vip-card-content {
    padding: 20px 30px;
  }

  .vip-card-title {
    font-size: 26px;
  }

  /* ····· VIP SERVICE ····· */
  .vip-service {
    margin-top: 100px;
  }

  .vip-service-title {
    font-size: 28px;
  }

  .service-card-item {
    width: calc((100% - (20px * 2)) / 3);
    min-height: 140px;
    padding: 40px 20px;
  }

  .service-card-title {
    margin-top: 12px;
  }

  .service-card-list {
    margin-top: 40px;
  }

  .service-card-item .icon-box.square {
    width: 90px;
    height: 90px;
  }

  .service-card-item .icon-box.square i {
    font-size: 50px;
  }

  .service-card-content {
    line-height: 100%;
  }


  /* ········································· */
  /* ··········· VIP 서비스 소개(S-LG) ·········· */
  /* ········································· */
  .vip-service-list {
    flex-direction: column;
    height: fit-content;
  }

  .vip-service-item {
    height: 500px;
  }

  .vip-service-heading {
    width: 70%;
    font-size: 18px;
    margin: 0 auto 20px;
  }
  
  .vip-service-item .vip-service-img {
    max-width: none;
    width: 35%;
    filter: brightness(1);
  }

  .vip-service-item:hover .vip-service-img  {
    cursor: default;
  }

  .vip-service-item .vip-service-img p {
    display: none;
  }

  .vip-service-item.is-active .vip-service-caption,
  .vip-service-item .vip-service-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 12px;
    visibility: visible;
    opacity: 1;
    max-width: none;
    min-width: 0;
    padding: 40px 30px;
  }

  .package-info-list {
    flex-wrap: wrap;
  }

  /* ····· PACKAGE INFO CARD ······ */
  .package-info-item {
    width: calc((100% - (20px * 1)) / 2);
  }


  /* ········································· */
  /* ············· O2O 서비스(S-LG) ············ */
  /* ········································· */
  .speed-game-info-item {
    padding: 16px 20px;
  }
  
  .speed-game-info-item .num {
    font-size: 38px;
  }
  
  .speed-game-info-item > div p:first-child {
    font-size: 18px;
  }


  /* ········································· */
  /* ············· 제휴 파트너(S-LG) ············ */
  /* ········································· */
  .news-list {
    gap: 16px;
    margin-top: 40px;
  }

  .partner-item {
    width: calc((100% - (20px * 1)) / 2);
    padding: 22px;
  }


  /* ········································· */
  /* ············ 뉴스 & 인사이트(S-LG) ··········· */
  /* ········································· */
  .news-item {
    width: calc((100% - (20px * 3))/ 4);
  }

  /* ····· 환율 정보 ····· */
  .country-list {
    gap: 12px;
  }

  .country-item {
    padding: 20px;
  }

  .country-item .rate {
    margin-top: 12px;
    font-size: 24px;
  }
}

/* TABLET (MD) | 569px ~ 800px */
@media screen and (max-width: 800px) {
  .lg-only {
    display: none;
  }

  .md-only,
  .lg-hidden {
    display: block;
  }


  /* ········································· */
  /* ············· COMPONENTS(MD) ·········· */
  /* ········································· */
  /* ····· SEARCH ······ */
  .search-box {
    max-width: 300px;
  }

  .search-box input {
    width: calc(100% - 80px);
  }
  
  .search-box button {
    min-width: 80px;
  }
  

  /* ········································· */
  /* ················ GLOBAL(MD) ············· */
  /* ········································· */
  /* ····· HEADER ····· */
  .global-header {
    height: var(--global-header-md);
    padding: 0 24px;
  }

  .global-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-border);
  }

  .header-top {
    position: relative;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .global-header .logo {
    width: 92px; 
    height: 40px;
  }

  .global-header .logo a {
    background-image: url('/vip_club/assets/images/logo-sm.svg');
  }

  .sidebar-icon {
    position: absolute;
    left: 0;
    font-size: 28px;
    cursor: pointer;
  }

  .lang-select {
    min-width: fit-content;
  }

  .lang-select .name {
    display: none;
  }
  
  .lang-select .selected {
    padding: 0;
  }

  .lang-select .selected > div {
    gap: 0;
  }
  
  .lang-select .option-list {
    left: 50%;
    transform: translateX(-50%);    
    width: auto;
  }

  .lang-select.is-active .option-list {
    padding: 0;
  }
  
  .lang-select img {
    width: 34px;
    height: 34px;
  }
  
  .lang-select i {
    display: none;
  }

  /* ········································· */
  /* ················ 메인(MD) ················ */
  /* ········································· */
  .main-content {
    margin-top: calc(var(--global-header-md) + 12px);
  }

  /* ····· MAIN-BANNER ····· */
  .main-banner, .main-banner.main {
    height: 300px;
  }

  .vip-slogan {
    font-size: 26px;
  }

  .vip-title {
    font-size: 34px;
  }

  .vip-intro.sub .vip-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 32px;
  }

  .vip-intro.sub ul {
    display: none;
  }

  .vip-description {
    width: 450px;
    height: 40px;
  }

  .content-wrap {
    margin: 40px auto 0;
  }

  /* ····· VIP CARD ····· */
  .vip-card-content {
    width: 100%;
    padding: 30px;
  }

  .vip-card-item {
    flex-direction: column;
    gap: 8px;
  }

  .vip-card-item:not(:first-child) {
    margin-top: 20px;
  }

  .vip-card-item:nth-child(odd) .vip-card-image {
    order: 0;
  }

  .vip-card-image {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .vip-card-title {
    font-size: 24px;
  }

  .vip-card-description {*/
    margin-top: 30px;
  }

  /* ····· VIP SERVICE ····· */
  .service-card-item {
    width: calc((100% - (20px * 1)) / 2);
    padding: 20px;
  }


  /* ········································· */
  /* ············ VIP 서비스 소개(MD) ··········· */
  /* ········································· */
  .vip-service-item {
    flex-direction: column;
    height: fit-content;
  }
  
  .vip-service-item .vip-service-img,
  .vip-service-item.is-active .vip-service-img  {
    position: relative;
    max-width: none;
    width: 100%;
    height: 260px;
  }
  
  .vip-service-item:nth-child(2) .vip-service-img {
    background-position: center top -50px;
  }

  .vip-service-item.is-active .vip-service-caption,
  .vip-service-item .vip-service-caption {
    display: flex;
    flex-direction: column;
    justify-content: start;
    flex: 1;
    gap: 12px;
    visibility: visible;
    opacity: 1;
    max-width: none;
    padding: 40px 30px;
  }


  /* ········································· */
  /* ·············· O2O 서비스(MD) ············· */
  /* ········································· */
  .content-wrap .tab-content {
    margin-top: 40px;
  }

  .content-section {
    flex-direction: column;
    gap: 24px;
    height: fit-content;
  }

  .content-section .img-wrap {
    width: 100%;
    height: 420px;
  }
  

  /* ········································· */
  /* ·············· 제휴 파트너(MD) ············· */
  /* ········································· */
  .partner-item {
    width: 100%;
    padding: 22px;
  }

  /* ········································· */
  /* ············ 뉴스 & 인사이트(MD) ··········· */
  /* ········································· */
  .news-item {
    width: calc((100% - (20px * 2))/ 3);
  }

  /* ····· 환율 정보 ····· */
  .country-list {
    gap: 8px;
  }

  .exchange-wrap {
    margin: 30px auto 0;
  }

  .country-list {
    flex-wrap: wrap;
  }

  .country-item {
    width: calc((100% - (20px * 1)) / 2);
    padding: 16px;
  }

  .country-item .rate {
    margin-top: 10px;
    font-size: 22px;
  }

  .gold-box.exchange-box {
    gap: 10px;
  }

  .gold-box.exchange-box {
    padding: 12px;
  }

  .country-select {
    flex: 1.5;
  }

  .country-select .selected > div {
    gap: 12px;
  }
  
  .country-select .selected img {
    width: 36px;
    height: 36px;
  }

  .exchange-icon .icon-box.circle {
    width: 44px;
    height: 44px;
  }


  /* ········································· */
  /* ··············· 뉴스 리드(MD) ············· */
  /* ········································· */
  .content-wrap.news-read .list-btn {
    min-width: 120px;
    height: 44px;
  }

  .drawer-top p span {
    min-width: 80px;
  }
}

/* MOBILE (SM) | 431px ~ 568px */
@media screen and (max-width: 568px) {
  .sm-hidden {
    display: none;
  }
  
  .global-header {
    height: var(--global-header-sm);
  }

  .header-top {
    padding: 10px 0;
  }

  .logo {
    width: 78px; 
    height: 34px;
  }

  /* ········································· */
  /* ················· 메인(SM) ··············· */
  /* ········································· */
  .main-content {
    margin-top: calc(var(--global-header-sm) + 12px);
  }

  /* ····· MAIN-BANNER ····· */
  .main-banner, .main-banner.main {
    height: 240px;
  }

  .vip-slogan {
    font-size: 16px;
  }

  .vip-title {
    margin-top: 4px;
    font-size: 24px;
  }

  .vip-intro.sub .vip-title {
    font-size: 24px;
  }

  .vip-description {
    width: 90%;
    height: 30px;
    margin-top: 10px;
    font-size: 10px;
    white-space: nowrap; 
  }

  /* ····· VIP CARD ····· */
  /* .vip-card-content {
    padding: 20px 0;
  }

  .vip-card-item {
    gap: 4px;
  }

  .vip-card-image {
    height: 220px;
  }

  .vip-card-description {
    margin-top: 30px;
  } */

  /* ····· VIP SERVICE ····· */
  .vip-service {
    margin-top: 40px;
  }

  .vip-service-title {
    font-size: 22px;
  }

  .service-card-list {
    gap: 12px;
    margin-top: 30px;
  }

  .service-card-item {
    width: calc((100% - 12px) / 2);
    min-height: 130px;
  }
  
  .service-card-item > div {
    gap: 12px;
  }

  .service-card-item .icon-box.square {
    width: 60px;
    height: 60px;
  }

  .service-card-item .icon-box.square i {
    font-size: 30px;
  }

  .service-card-title {
    margin-top: 0;
    font-size: 14px;
  }


  /* ········································· */
  /* ············ VIP 서비스 소개(SM) ··········· */
  /* ········································· */
  .package-info-item {
    width: 100%;
    padding: 16px 40px 100px;
  }


  /* ········································· */
  /* ·············· O2O 서비스(SM) ············· */
  /* ········································· */
  .content-wrap {
    margin: 20px auto 0;
  }

  .tab-btn-list {
    gap: 8px;
  }
  
  .tab-btn-list button {
    height: 50px;
    min-width: calc((100% - 8px) / 2);
  }

  .content-wrap .tab-content {
    margin-top: 20px;
  }


  /* ········································· */
  /* ············ 뉴스 & 인사이트(SM) ··········· */
  /* ········································· */
  .news-title-wrap {
    flex-direction: column;
    align-items: start;
    gap: 12px;
    margin-top: 40px;
  }

  .news-insight .title {
    font-size: 20px;
  }

  /* ····· SEARCH ······ */
  .news-title-wrap .search-box {
    max-width: 100%;
    font-size: 14px;
  }

  .news-title-wrap .search-box input {
    width: calc(100% - 100px);
  }
  
  .news-title-wrap .search-box button {
    min-width: 100px;
  }
    
  .news-item {
    width: calc((100% - (20px * 1))/ 2);
  }

  /* ····· 환율 정보 ····· */
  .exchange-wrap {
    margin: 24px auto 0;
  }

  .country-item {
    width: 100%;
  }

  .gold-box.exchange-box > div {
    height: 80px;
  }

  .country-select {
    flex: 1.8;
  }

  .country-select .selected {
    height: 80px;
    padding: 0 16px;
  }

  .country-select .selected i {
    font-size: 10px;
  }

  .country-select .option-list {
    top: 80px;
  }

  .country-select .option-list > div {
    padding: 12px 20px;
  }

  .country-select .option-list > div p {
    gap: 12px;
  }

  .country-select .selected img {
    width: 32px;
    height: 32px;
  }

  .country-select .code {
    display: none;
  }

  .exchange-rate {
    padding: 0 12px;
  }

  .exchange-rate .main {
    font-size: 18px;
  }

  .exchange-icon .icon-box.circle {
    width: 34px;
    height: 34px;
  }
  
  .exchange-icon .icon-box.circle i {
    font-size: 16px;
  }


  /* ········································· */
  /* ··············· 뉴스 리드(SM) ············· */
  /* ········································· */
  .content-wrap.news-read .news-title-wrap {
    flex-direction: row;
    align-items: center;
  }

  .drawer-top p span {
    min-width: 80px;
  }

  .drawer-top {
    width: 100%;
    flex-direction: column;
  }

  .drawer-top p {
    flex-direction: column;
    width: 100%;
    padding: 6px;
  }

  .drawer-top .date::after {
    content: none;
  }
  
  .drawer-board .drawer-menu {
    padding: 0 20px;
  }


  /* ········································· */
  /* ················ POPUP(SM) ·············· */
  /* ········································· */
  .popup {
    padding: 16px;
  }

  .popup .close-btn.icon {
    top: 20px;
    right: 20px;
  }

  .popup .title {
    font-size: 20px;
  }

  .popup-footer .close-btn {
    min-width: 100px;
  }

  /* ····· POPUP : NOTICE ····· */
  .notice-img {
    height: 200px;
    margin-top: 20px;
  }
}

/* SMALL MOBILE (S-SM) | ~ 430px */
@media screen and (max-width: 430px) {
  /* ········································· */
  /* ··············· 메인(S-SM) ··············· */
  /* ········································· */
  /* ····· MAIN-BANNER ····· */
  .partner-item .swiper {
    height:230px;
  }

  .vip-slogan {
    font-size: 14px;
  }

  .vip-title {
    font-size: 18px;
  }

  .vip-description {
    font-size: 8px;
  }

  /* ····· VIP CARD ····· */
  .vip-card-image {
    height: 200px;
  }

  .vip-card-title {
    font-size: 18px;
  }

  /* ····· VIP SERVICE ····· */
  .service-card-item {
    height: 140px;
  }

  .vip-service-caption {
    padding: 20px!important;
    /* border: 2px solid red ; */
  }

  /* ········································· */
  /* ············· O2O 서비스(S-SM) ············ */
  /* ········································· */
  .tab-btn-list button {
    font-size: 14px;
  }


  /* ········································· */
  /* ············ 뉴스 & 인사이트(S-SM) ·········· */
  /* ········································· */
  .content-wrap {
    padding: 0 12px;
  }

  /* ····· 스카이이글스 소식 ····· */
  .content-wrap.news .tab-btn-list button {
    padding: 0;
  }

  .news-list {
    gap: 30px;
  }

  .news-item {
    width: 100%;
  }

  .country-select {
    flex: 2.5;
  }


  /* ········································· */
  /* ··············· 뉴스 리드(S-SM) ············· */
  /* ········································· */
  .content-wrap.news-read .list-btn {
    min-width: 80px;
  }


  /* ········································· */
  /* ················ POPUP(SM) ·············· */
  /* ········································· */
  .popup .close-btn.icon {
    font-size: 26px;
  }

  /* ····· POPUP : NOTICE ····· */
  .notice-img {
    height: 160px;
  }
}

