* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
  color: #111;
  background: #fff;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(5px);
}

.header-inner {
  height: 78px;
  display: grid;
  grid-template-columns: 260px minmax(760px, 960px) 260px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.logo span,
.footer-logo span {
  background: #54766f;
  color: #fff;
  font-size: 13px;
  padding: 2px 5px;
}

.logo strong {
  font-size: 18px;
  color: #2a1917;
}

.gnb {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.gnb a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
}

.gnb a:hover {
  color: #183b3b;
}

.call-btn {
  background: #173a3c;
  color: #fff;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .5px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}

.mega-menu {
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: rgba(250, 250, 250, .96);
  border-top: 1px solid #eee;
  display: none;
  padding-bottom: 24px;
}

.site-header:hover .mega-menu {
  display: block;
}

.mega-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: stretch;
  border-left: 1px solid #e9e9e9;
}

.mega-grid div {
  border-right: 1px solid #e9e9e9;
  text-align: center;
  min-height: 250px;
}

.mega-grid a {
  display: block;
  padding: 22px 8px;
  font-size: 16px;
}

.mega-grid a:hover {
  background: #173a3c;
  color: #fff;
}

.mega-grid a.active {
  background: transparent;
  color: inherit;
}

.hero-main {
  height: calc(100vh - 96px);
  min-height: 650px;
  background: url('../img/hero-main.jpg') center center / cover no-repeat;
  background-color: #dff3ff;
  position: relative;
  padding-top: 78px;
  overflow: hidden;
}

.hero-card {
  position: absolute;
  right: 9%;
  top: 260px;
  width: 450px;
  background: rgba(255, 255, 255, .9);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.brand-mini span {
  background: #54766f;
  color: #fff;
  font-size: 14px;
  padding: 2px 5px;
}

.brand-mini strong {
  font-size: 20px;
  margin-left: 5px;
}

.hero-card .desc {
  margin: 28px 0 20px;
  font-size: 20px;
  font-weight: 700;
}

.hero-card h1 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.35;
}

.hero-card h1 strong {
  font-size: 42px;
  color: #173a3c;
}

.hero-card .station {
  background: #173a3c;
  color: #fff;
  border-radius: 6px;
  padding: 20px;
  font-size: 30px;
  font-weight: 800;
}

.main-strip {
  height: 96px;
  background: #191919;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.content-section {
  padding: 95px 20px 120px;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: #173a3c;
  color: #fff;
  padding: 16px 70px;
  font-weight: 700;
}

.content-section h2 {
  margin: 80px 0 30px;
  font-size: 34px;
}

.line {
  width: 1px;
  height: 36px;
  background: #777;
  margin: 0 auto 32px;
}

.lead {
  font-size: 24px;
  line-height: 1.6;
}

.lead strong {
  font-size: 30px;
}

.image-box {
  max-width: 960px;
  margin: 45px auto 0;
}

.image-box img {
  width: 100%;
  display: block;
}

.sub-hero {
  height: 400px;
  margin-top: 78px;
  background: linear-gradient(120deg, #eee9dd, #f7f2e7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero:before {
  content: '';
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 220px;
  height: 260px;
  background: radial-gradient(circle at 35% 20%, #d8d0b8 0 2px, transparent 3px), linear-gradient(#fff, #eee);
  opacity: .55;
  border-radius: 55% 45% 0 0;
}

.breadcrumb {
  color: #777;
  margin-bottom: 26px;
}

.sub-hero h1 {
  font-size: 48px;
  margin: 0 0 25px;
}

.sub-hero p {
  font-size: 19px;
  color: #666;
}

.sub-hero .breadcrumb,
.sub-hero h1,
.sub-hero p {
  opacity: 0;
  letter-spacing: 0.18em;
  transform: translateY(18px);
  animation: subTitleMotion 0.9s ease forwards;
}

.sub-hero .breadcrumb {
  animation-delay: 0.1s;
}

.sub-hero h1 {
  animation-delay: 0.25s;
}

.sub-hero p {
  animation-delay: 0.4s;
}

@keyframes subTitleMotion {
  to {
    opacity: 1;
    letter-spacing: normal;
    transform: translateY(0);
  }
}

.tab-menu {
  display: flex;
  justify-content: center;
  margin: 48px auto 70px;
}

.tab-menu a {
  border: 1px solid #aaa;
  padding: 18px 78px;
}

.tab-menu a.active {
  background: #173a3c;
  color: #fff;
  border-color: #173a3c;
}

.page-content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px 120px;
  text-align: center;
}

.page-image-stack {
  max-width: 1060px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.page-image-stack img {
  width: 100%;
  height: auto;
  display: block;
}

.image-guide {
  margin: 35px auto 0;
  color: #888;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  background: #191919;
  color: #fff;
  padding: 55px 20px 70px;
}

.footer-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-logo {
  display: none;
}

.footer-info dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 20px;
  font-size: 16px;
}

.footer-info dt {
  font-weight: 800;
}

.footer-info dd {
  margin: 0;
  font-weight: 700;
}

.notice,
.copy {
  color: #bbb;
  font-size: 13px;
}

.footer-call {
  font-size: 28px;
  margin-top: 40px;
}

.footer-call strong {
  font-size: 34px;
}

.lead-form-section {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 520px;
  background: #f1f1f1;
}

.lead-form-visual {
  min-height: 520px;
  background: url('../img/sec2.png') center center / cover no-repeat;
}

.lead-form-panel {
  padding: 58px 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-form-head {
  position: relative;
  text-align: center;
  margin-bottom: 42px;
}

.lead-form-head h2 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 900;
  color: #444;
}

.lead-form-head p {
  margin: 0;
  color: #999;
  font-size: 16px;
}

.lead-form-head span {
  position: absolute;
  right: 0;
  top: 68px;
  color: #b40000;
  font-size: 15px;
  font-weight: 700;
}

.lead-form {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
}

.lead-field {
  height: 54px;
  border: 1px solid #999;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  background: transparent;
}

.lead-field label {
  padding-left: 18px;
  font-size: 16px;
  font-weight: 800;
  color: #222;
}

.lead-field label b {
  color: #b40000;
  margin-right: 2px;
}

.lead-field input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  color: #222;
}

.lead-field input::placeholder {
  color: #aaa;
}

.lead-field input[type="date"] {
  color: #555;
  font-family: inherit;
}

.lead-field--textarea {
  height: 86px;
  align-items: start;
}

.lead-field--textarea label {
  padding-top: 17px;
}

.lead-field textarea {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  padding: 17px 0;
  font-family: inherit;
  font-size: 16px;
  color: #222;
}

.lead-field textarea::placeholder {
  color: #aaa;
}

.lead-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 26px;
  font-size: 15px;
}

.lead-agree strong {
  font-weight: 900;
}

.lead-agree label {
  cursor: pointer;
}

.lead-submit {
  width: 100%;
  height: 76px;
  border: 0;
  border-radius: 3px;
  background: #00665f;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.lead-submit:hover {
  background: #004f4a;
}

.lead-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.lead-result {
  min-height: 22px;
  margin: 14px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.lead-result.ok {
  color: #00665f;
}

.lead-result.error {
  color: #b40000;
}

.reservation-page-content {
  max-width: 1200px;
}

.lead-form-panel--page {
  background: #fff;
  padding: 0 20px 90px;
}

.lead-form-panel--page .lead-form-head span {
  right: 0;
}

.video-wrap {
  max-width: 1060px;
  margin: 45px auto 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mega-title {
  display: none;
}

.mobile-call-btn,
.mobile-bottom-bar,
.mobile-lead-dim,
.mobile-lead-drawer {
  display: none;
}

@media (min-width: 901px) {
  .mega-col {
    border-right: 1px solid #e9e9e9;
    text-align: center;
    min-height: 250px;
  }

  .mega-grid .mega-col:first-child {
    border-left: 0;
  }
}

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 220px minmax(620px, 760px) 220px;
    padding: 0 24px;
  }

  .gnb {
    font-size: 14px;
  }

  .hero-card {
    right: 4%;
    width: 390px;
  }

  .call-btn {
    font-size: 19px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    background: #173a3c;
    backdrop-filter: none;
  }

  .header-inner {
    height: 74px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 48px 1fr 128px;
    gap: 10px;
    align-items: center;
  }

  .logo {
    justify-content: center;
    color: #fff;
    white-space: nowrap;
  }

  .logo strong {
    color: #fff;
    font-size: 18px;
  }

  .logo span {
    font-size: 12px;
    background: #78958e;
  }

  .gnb,
  .call-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .mobile-call-btn {
    display: flex;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: #d94712;
    font-size: 21px;
    font-weight: 900;
    box-shadow: inset 0 -3px 7px rgba(0, 0, 0, .14), 0 2px 8px rgba(0, 0, 0, .22);
    white-space: nowrap;
  }

  .site-header:hover .mega-menu {
    display: none;
  }

  .site-header.mobile-open .mega-menu {
    display: block;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    overflow-y: auto;
    background: #333633;
    border-top: 0;
    padding: 22px 24px 120px;
    animation: mobileMenuSlideIn .32s ease forwards;
  }

  @keyframes mobileMenuSlideIn {
    from {
      transform: translateX(-100%);
      opacity: .4;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .mega-grid {
    display: block;
    max-width: none;
    border-left: 0;
  }

  .mega-grid .mega-col {
    min-height: auto;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    text-align: left;
  }

  .mega-title {
    display: flex;
    width: 100%;
    height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px 0 48px;
    border: 0;
    background: transparent;
    color: #d9d1ca;
    font-family: inherit;
    font-size: 23px;
    font-weight: 400;
    cursor: pointer;
  }

  .mega-title::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 3px solid #d9d1ca;
    border-bottom: 3px solid #d9d1ca;
    transform: rotate(45deg);
    margin-top: -7px;
    flex-shrink: 0;
  }

  .mega-col.open .mega-title::after {
    transform: rotate(225deg);
    margin-top: 7px;
  }

  .mega-grid a {
    display: none;
    padding: 17px 34px 17px 48px;
    background: #2d2e2d;
    color: #d9d1ca;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
  }

  .mega-col.open a {
    display: block;
  }

  .mega-grid a:hover {
    background: #2d2e2d;
    color: #fff;
  }

  .hero-main {
    height: auto;
    min-height: 680px;
    padding-top: 66px;
    background-size: cover;
  }

  .hero-card {
    position: static;
    width: calc(100% - 34px);
    margin: 120px auto 0;
    padding: 32px 20px;
  }

  .hero-card h1 {
    font-size: 24px;
  }

  .hero-card h1 strong {
    font-size: 34px;
  }

  .hero-card .station {
    font-size: 24px;
  }

  .sub-hero {
    margin-top: 74px;
    height: 330px;
  }

  .sub-hero h1 {
    font-size: 38px;
  }

  .page-image-stack {
    gap: 24px;
  }

  .footer-inner {
    display: block;
  }

  .footer-info dl {
    grid-template-columns: 90px 1fr;
  }

  .footer-call {
    margin-top: 40px;
  }

  .tab-menu {
    flex-wrap: wrap;
  }

  .tab-menu a {
    padding: 14px 35px;
  }

  .lead-form-section {
    display: block;
  }

  .lead-form-visual {
    min-height: 320px;
  }

  .lead-form-panel {
    padding: 42px 18px 50px;
  }

  .lead-form-head h2 {
    font-size: 28px;
  }

  .lead-form-head p {
    font-size: 14px;
    line-height: 1.5;
  }

  .lead-form-head span {
    position: static;
    display: block;
    margin-top: 14px;
    text-align: right;
  }

  .lead-field {
    grid-template-columns: 95px 1fr;
  }

  .lead-field label {
    padding-left: 12px;
    font-size: 14px;
  }

  .lead-field input {
    font-size: 15px;
  }

  .lead-field--textarea {
    height: 92px;
  }

  .lead-field textarea {
    font-size: 15px;
  }

  .lead-form-panel--page {
    padding: 0 0 60px;
  }

  .lead-agree {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .lead-submit {
    height: 64px;
    font-size: 20px;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 72px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, .22);
  }

  .mobile-bottom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-family: inherit;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
  }

  .mobile-bottom-call {
    background: #173a3c;
  }

  .mobile-bottom-reserve {
    background: #00665f;
  }

  .mobile-lead-dim {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .48);
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
  }

  body.mobile-lead-open .mobile-lead-dim {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-lead-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 101;
    width: 86%;
    max-width: 390px;
    display: block;
    background: #fff;
    padding: 34px 20px 40px;
    transform: translateX(-105%);
    transition: transform .32s ease;
    box-shadow: 12px 0 28px rgba(0, 0, 0, .22);
  }

  body.mobile-lead-open .mobile-lead-drawer {
    transform: translateX(0);
  }

  .mobile-lead-close {
    position: absolute;
    right: 16px;
    top: 12px;
    border: 0;
    background: transparent;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-lead-drawer h2 {
    margin: 34px 0 10px;
    font-size: 30px;
    font-weight: 900;
    color: #333;
  }

  .mobile-lead-drawer p {
    margin: 0 0 28px;
    color: #777;
    line-height: 1.5;
    font-size: 15px;
  }

  .mobile-lead-field {
    border: 1px solid #aaa;
    height: 54px;
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    margin-bottom: 12px;
  }

  .mobile-lead-field label {
    padding-left: 12px;
    font-weight: 800;
  }

  .mobile-lead-field label b {
    color: #b40000;
    margin-right: 2px;
  }

  .mobile-lead-field input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 15px;
  }

  .mobile-lead-submit {
    width: 100%;
    height: 62px;
    margin-top: 14px;
    border: 0;
    border-radius: 4px;
    background: #00665f;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
  }
}

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: 44px 1fr 112px;
    padding: 0 14px;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .logo strong {
    font-size: 16px;
  }

  .logo span {
    font-size: 11px;
  }

  .mobile-call-btn {
    height: 42px;
    font-size: 18px;
  }

  .mega-title {
    height: 62px;
    padding-left: 42px;
    padding-right: 24px;
    font-size: 21px;
  }

  .mega-title::after {
    width: 11px;
    height: 11px;
  }

  .mega-grid a {
    padding: 16px 24px 16px 42px;
    font-size: 20px;
  }
}
/* ===========================
   타입안내 버튼
=========================== */

.type-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin:45px 0;
}

.type-tabs button{
    background:#fff;
    border:1px solid #d8d8d8;
    padding:15px 34px;
    font-size:18px;
    font-family:inherit;
    cursor:pointer;
    transition:.25s;
}

.type-tabs button:hover{
    background:#f5f5f5;
}

.type-tabs button.active{
    background:#173a3c;
    color:#fff;
    border-color:#173a3c;
}

.type-image-box{
    margin-top:40px;
}

.type-image-box img{
    width:100%;
    display:block;
}

/* 모바일 */

@media(max-width:900px){

.type-tabs{
    gap:8px;
}

.type-tabs button{
    flex:1 1 calc(33.333% - 8px);
    padding:13px 8px;
    font-size:15px;
}

}

@media(max-width:600px){

.type-tabs button{
    flex:1 1 calc(50% - 8px);
    font-size:14px;
}

}
/* =========================================================
   FINAL FIX - 안정화 버전
========================================================= */

/* 메인 상단 헤더 */
.home-page .site-header {
  background: transparent;
  backdrop-filter: none;
  transition: background .25s ease, backdrop-filter .25s ease;
}

.home-page .site-header .logo strong,
.home-page .site-header .gnb a {
  color: #fff;
  text-shadow: 0 1px 5px rgba(0,0,0,.35);
}

.home-page .site-header:hover,
.home-page .site-header.mobile-open {
  background: rgba(250,250,250,.96);
  backdrop-filter: blur(6px);
}

.home-page .site-header:hover .logo strong,
.home-page .site-header:hover .gnb a {
  color: #111;
  text-shadow: none;
}

.header-inner {
  padding-top: 7px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  height: 48px;
  padding: 0 24px;
  line-height: 1;
  white-space: nowrap;
}

/* 메인 배경 줌아웃 */
.hero-main {
  position: relative !important;
  height: 100vh !important;
  min-height: 720px !important;
  padding-top: 78px !important;
  overflow: hidden !important;
  background: none !important;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/01.png") center center / cover no-repeat;
  transform: scale(1.18);
  animation: heroZoomOut 18s ease-out forwards;
  z-index: 0;
}

@keyframes heroZoomOut {
  0% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

/* 메인 문구 카드 오른쪽 고정 */
.hero-card {
  position: absolute !important;
  right: 9% !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 450px !important;
  z-index: 2 !important;
}

/* 팝업 */
.intro-video-popup,
.main-promo-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.intro-video-popup.is-open,
.main-promo-popup.is-open {
  display: block;
}

.intro-video-backdrop,
.main-promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
}

.intro-video-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1180px, 82vw);
  transform: translate(-50%, -50%);
}

.intro-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.intro-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.intro-video-links {
  width: min(900px, 80%);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.intro-video-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5967ba;
  border-right: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.intro-video-links a:last-child {
  border-right: 0;
  background: #0b2074;
}

/* 메인 팝업 위로 사라짐 */
.main-promo-popup {
  transform: translateY(0);
}

.main-promo-popup.is-closing {
  display: block !important;
  pointer-events: none;
  animation: promoUpClose 900ms ease-in forwards;
}

@keyframes promoUpClose {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-120vh);
  }
}

.main-promo-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1740px, 96vw);
  transform: translate(-50%, -50%);
}

.main-promo-close {
  width: max-content;
  margin: 0 auto 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  user-select: none;
}

.main-promo-close span {
  margin-left: 4px;
}

.main-promo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.main-promo-card {
  width: min(340px, 18vw);
  min-width: 240px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

.main-promo-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* 태블릿 */
@media (max-width: 1200px) {
  .hero-card {
    right: 4% !important;
    width: 390px !important;
  }
}

/* 모바일 */
@media (max-width: 900px) {
  .home-page .site-header {
    background: #173a3c;
  }

  .home-page .site-header .logo strong {
    color: #fff;
    text-shadow: none;
  }

  .hero-main {
    min-height: 680px !important;
    padding-top: 66px !important;
  }

  .hero-main::before {
    animation: heroZoomOutMobile 18s ease-out forwards;
  }

  @keyframes heroZoomOutMobile {
    0% {
      transform: scale(1.22);
    }
    100% {
      transform: scale(1.04);
    }
  }

  .hero-card {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 52% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 34px) !important;
    padding: 32px 20px !important;
  }

  .intro-video-box {
    width: calc(100vw - 28px);
  }

  .intro-video-links {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 14px;
  }

  .intro-video-links a {
    min-height: 48px;
    font-size: 14px;
  }

  .main-promo-shell {
    width: calc(100vw - 28px);
  }

  .main-promo-wrap {
    max-height: 76vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-promo-card {
    width: 100%;
    min-width: 0;
  }
}