:root{
  --home-bg: #161616;
  --home-bg-2: #222228;
  --home-panel: rgba(255,255,255,0.05);
  --home-panel-2: rgba(255,255,255,0.07);
  --home-border: rgba(255,255,255,0.12);
  --home-border-2: rgba(255,255,255,0.18);
  --home-text: rgba(255,255,255,0.92);
  --home-text-2: rgba(255,255,255,0.72);
  --home-text-3: rgba(255,255,255,0.55);
  --home-shadow: 0 18px 56px rgba(0,0,0,0.50);
  --home-shadow-soft: 0 14px 34px rgba(0,0,0,0.34);
  --home-accent: #FFD400;
  --home-accent-2: rgba(255,212,0,0.18);
  --home-radius-xl: 26px;
  --home-radius-lg: 20px;
  --home-radius-md: 16px;
}

html{ scroll-behavior: smooth; }
*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--home-text);
  background: var(--home-bg);
}

/* ===== Main ===== */
.site-main{ max-width: none; padding: 0; }
.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 16px; }

/* ===== Hero Video ===== */
.hero-video{
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
height: 100svh;
  min-height: 420px;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h, 72px));
  padding-top: var(--header-h, 72px);
  background: #000;
  isolation: isolate;
  contain: paint;
}

.hero-video::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,212,0,0.85), transparent);
  opacity: .75;
  z-index: 3;
}

.hero-video__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  }

.hero-video__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 18% 55%, rgba(0,0,0,0.72), rgba(0,0,0,0.20) 58%),
    linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.08));
  z-index: 1;
}

.hero-video__overlay::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.02), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.015), transparent 45%);
  mix-blend-mode: overlay;
  opacity: .35;
}

.hero-video__content{
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.02;
  font-size: clamp(42px, 5vw, 80px);
  text-shadow: 0 22px 60px rgba(0,0,0,0.60);
}

.hero-sub{
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  max-width: 600px;
}

/* CTA: 옐로 포인트 + 글래스 */
.hero-cta{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;

  color: rgba(255,255,255,0.84);
  font-weight: 900;
  letter-spacing: .2px;

  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  box-shadow: var(--home-shadow-soft);

  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.hero-cta:hover{
  transform: translateY(-1px);

  /* hover: 노란색 */
  background: rgba(255,212,0,0.95);
  color: #0a0a0a;
  border-color: rgba(255,212,0,0.55);
}
.hero-cta__arrow{ font-weight: 900; }

/* Scroll down */
.scroll-down{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.70);
}

.scroll-down__text{
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-down__icon{
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  position: relative;
}
.scroll-down__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  transform: translateX(-50%);
  animation: scrollDot 1.2s ease-in-out infinite;
}
@keyframes scrollDot{
  0%   { opacity: 0; transform: translate(-50%, -2px); }
  20%  { opacity: 1; }
  80%  { opacity: 1; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

/* hover: scroll-down turns yellow */
.scroll-down:hover{
  color: rgba(255,212,0,0.92);
}
.scroll-down:hover .scroll-down__icon{
  border-color: rgba(255,212,0,0.60);
}
.scroll-down:hover .scroll-down__icon::after{
  background: rgba(255,212,0,0.95);
}


/* ===== Sections (Home) ===== */
.section{
  padding: 104px 0;
  position: relative;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.section:nth-of-type(even){
  background: var(--home-bg-2);
}


.section:nth-of-type(odd){
  background: var(--home-bg);
}


.section:last-of-type{
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* 섹션 헤더 */
.section-head{
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
}
.section-head::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;             
  background: rgba(255,212,0,0.55); 
}

/* pill (Business/NEWS) */
.section-pill{
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--home-accent);
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 18px 52px rgba(0,0,0,0.55);
}

.section-title{
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.45px;
}
.section-desc{
  margin: 0;
  color: var(--home-text-2);
  line-height: 1.9;
  font-size: 16px;
  max-width: 860px;
}

/* ===== Business cards ===== */
.business-cards{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.biz-card{
  border-radius: var(--home-radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.38);
  box-shadow: var(--home-shadow-soft);
  padding: 18px 16px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.biz-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,212,0,0.35);
  background: rgba(0,0,0,0.48);
}

.biz-card h3{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: .2px;
  color: rgba(255,255,255,0.92);
}
.biz-card p{
  margin: 0;
  color: var(--home-text-2);
  line-height: 1.7;
  font-size: 14px;
}

.feature{
  display: grid;
  grid-template-columns: 0.95fr 1.75fr;
  gap: 34px;
  align-items: center;
}
.feature--reverse{ grid-template-columns: 1.75fr 0.95fr; }
.section-feature--reverse .feature-text{ order: 2; }
.section-feature--reverse .feature-media{ order: 1; }

.feature-kicker{
  margin: 0;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--home-text-3);
}
.feature-title{
  margin: 10px 0;
  font-size: clamp(34px, 4vw, 60px);
  letter-spacing: -0.85px;
  line-height: 1.05;
}
.feature-quote{
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
}
.feature-desc{
  margin: 12px 0 0 0;
  color: var(--home-text-2);
  line-height: 1.9;
}

/* ===== Buttons (더보기) ===== */
.btn-more{
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.84); 
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  box-shadow: var(--home-shadow-soft);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-more:hover{
  transform: translateY(-1px);
  background: rgba(255,212,0,0.95);
  color: #0a0a0a;
  border-color: rgba(255,212,0,0.55);
}
.btn-more__arrow{ font-weight: 900; }

/* ===== Mini slider ===== */
.mini-slider{
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--home-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: #000;
  box-shadow: var(--home-shadow);
  isolation: isolate;
}

.mini-slider::before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,212,0,0.8), transparent);
  opacity: .55;
  z-index: 2;
  pointer-events: none;
}

.mini-slider__track{ position: absolute; inset: 0; }

.mini-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 650ms ease;
  margin: 0;
}
.mini-slide.is-active{ opacity: 1; }

.mini-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-slider::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 38%;
  background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events:none;
}

.mini-slider__dots{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 8px;
  z-index: 3;
  /* prevent edge clipping inside rounded/overflow-hidden slider */
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.mini-dot{
  width: 68px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: background .15s ease, box-shadow .15s ease;
}

.mini-dot:hover{
  background: rgba(255,255,255,0.28);
}

.mini-dot.is-active{
  background: rgba(255,212,0,0.95);
  box-shadow: none;
}

.mini-dot:focus-visible{
  outline: 2px solid rgba(255,212,0,0.95);
  outline-offset: 4px;
}


.mini-slider__nav{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  z-index: 4;
  pointer-events: none; 
}

.mini-arrow{
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.48);
  background: rgba(0,0,0,0.28);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.mini-arrow:hover{
  transform: translateY(-1px);
  border-color: rgba(255,212,0,0.65);
  color: rgba(255,212,0,0.95);
  background: rgba(0,0,0,0.38);
}

.mini-arrow:active{ transform: translateY(0); }

.mini-arrow:focus-visible{
  outline: 2px solid rgba(255,212,0,0.95);
  outline-offset: 4px;
}

.mini-arrow__svg{ display: block; }

.mini-arrow--prev .mini-arrow__svg{
  transform: rotate(180deg);
}

@media (max-width: 980px){
  .mini-slider__nav{ padding: 0 10px; }
  .mini-arrow{ width: 48px; height: 48px; }
}

@media (max-width: 480px){
  .mini-arrow{ width: 44px; height: 44px; }

  /* dots: 5개일 때 모바일에서 좌우 잘림 방지 */
  .mini-slider__dots{
    left: 12px;
    right: 12px;
    gap: 8px;
    bottom: 14px;
    max-width: calc(100% - 24px);
  }
  .mini-dot{
    width: 52px;
    height: 6px;
  }
}


.news-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}


.news-head > div{
  display: grid;
  gap: 16px;
}


.news-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.news-feature{
  border-radius: var(--home-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--home-shadow);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.news-feature__thumb{
  height: 240px;
  background:
    radial-gradient(900px 380px at 25% 40%, rgba(255,212,0,0.18), transparent 60%),
    radial-gradient(700px 340px at 78% 55%, rgba(120,110,255,0.14), transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.10)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 14px, rgba(255,255,255,0.03) 14px 28px);
}

.news-feature__body{ padding: 18px 18px 22px; }

.news-meta{
  margin: 0;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--home-text-3);
}

.news-title{
  margin: 10px 0 8px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.news-excerpt{
  margin: 0;
  color: var(--home-text-2);
  line-height: 1.85;
}

.news-list{ display: grid; gap: 10px; }

.news-item{
  display: grid;
  grid-template-columns: 90px 1fr 24px;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--home-text);
  padding: 16px 14px;
  border-radius: var(--home-radius-lg);
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--home-shadow-soft);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.news-item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,212,0,0.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
}
.news-item__date{
  font-weight: 900;
  color: var(--home-text-3);
}
.news-item__text{
  font-weight: 800;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
}
.news-item__plus{
  font-weight: 900;
  font-size: 18px;
  color: rgba(255,212,0,0.78);
}
:root{
  --news-dot-img: none;
}

.news-carousel{
  background: transparent;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* arrows */
.news-arrow{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.48);
  background: rgba(0,0,0,0.28);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.news-arrow:hover{
  transform: translateY(-1px);
  border-color: rgba(255,212,0,0.65);
  color: rgba(255,212,0,0.95);
  background: rgba(0,0,0,0.38);
}

/* arrows disabled state */
.news-arrow.is-disabled,
.news-arrow:disabled,
.news-arrow[aria-disabled="true"]{
  opacity: .18;
  border-color: rgba(255,255,255,0.20);
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  background: rgba(255,255,255,0.02);
  filter: grayscale(1);
}
.news-arrow.is-disabled:hover,
.news-arrow:disabled:hover,
.news-arrow[aria-disabled="true"]:hover{
  background: transparent;
}

.news-arrow:active{ transform: translateY(0); }
.news-arrow:focus-visible{
  outline: 2px solid rgba(255,212,0,0.95);
  outline-offset: 4px;
}
.news-arrow__svg{ display: block; }
.news-arrow--prev .news-arrow__svg{ transform: rotate(180deg); }

/* cards track */
.news-cards{
  flex: 1;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 2px;
  background: transparent;
  border: 0;
  box-shadow: none;
  scrollbar-width: none;
}
.news-cards::-webkit-scrollbar{ display: none; }

.news-cards::before,
.news-cards::after{
  content: none !important;
  display: none !important;
}

.news-card{
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 220px;
  border-radius: var(--home-radius-xl);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: var(--home-text);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: none;
  background-clip: padding-box;
  scroll-snap-align: start;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.news-card::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .18s ease;
}

.news-card:hover::after{
  border-color: rgba(255,212,0,0.95);
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,212,0,0.28);
  background: rgba(255,255,255,0.04);
}

.news-card__media{
  height: 260px;
  background: #000;
}
.news-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body{
  background: rgba(255,255,255,0.06);
  padding: 18px 18px 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.news-card__title{
  margin: 0;
  color: var(--home-accent); /* 뉴스 카드 제목: #FFD400 */
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.2px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__date{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--home-text-3);
}
.news-card__date::before{
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;

  background-color: rgba(255,212,0,0.75);
  box-shadow: 0 0 0 1px rgba(255,212,0,0.25) inset;
  background-image: var(--news-dot-img, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Responsive for cards */
@media (max-width: 980px){
  .news-card{ flex-basis: calc((100% - 22px) / 2); }
  .news-arrow{ width: 48px; height: 48px; }
}
@media (max-width: 620px){
  .news-carousel{ gap: 12px; }
  .news-card{ flex-basis: 100%; }
  .news-arrow{ width: 44px; height: 44px; }
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .feature{ grid-template-columns: 1fr; }
  .feature--reverse{ grid-template-columns: 1fr; }
  .section-feature--reverse .feature-text{ order: 1; }
  .section-feature--reverse .feature-media{ order: 2; }

  .mini-slider{ height: 420px; }
  .business-cards{ grid-template-columns: 1fr; }
  .news-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .hero-video{ height: calc(100vh - var(--header-h)); min-height: 440px; }
}

@media (prefers-reduced-motion: reduce){
  .mini-slide{ transition: none; }
  .scroll-down__icon::after{ animation: none; }
  .biz-card, .news-item{ transition: none; }
}


/* ===== Hotfix: remove thin bars (requested) ===== */
.hero-video::before{
  display: none !important;
  content: none !important;
}
.mini-slider::before{
  display: none !important;
  content: none !important;
}
@media (max-width: 900px){
  .mobile-menu{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
  }
  .mobile-menu[hidden]{ display: none !important; }

  /* 남은 영역(클릭 시 닫힘): 완전히 가리지 않고 반투명 처리 */
  .mobile-menu__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    opacity: 0;
    transition: opacity .28s ease;
  }

  /* 우측 패널: 화면의 일부만 차지 */
  .mobile-menu__panel{
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 72vw);
    background: rgba(0,0,0,0.94);
    border-left: 1px solid rgba(255,255,255,0.12);
    /* X(닫기 버튼)/헤더 영역 아래부터 메뉴가 시작되도록 여백 */
    padding-top: calc(80px + env(safe-area-inset-top, 0px));
    transform: translateX(100%);
    transition: transform .28s ease;
    will-change: transform;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 열림/닫힘 상태( JS에서 class 토글 ) */
  .mobile-menu.is-open .mobile-menu__backdrop{ opacity: 1; }
  .mobile-menu.is-open .mobile-menu__panel{
    box-sizing: border-box; transform: translateX(0); }

  .mobile-menu.is-closing .mobile-menu__backdrop{ opacity: 0; }
  .mobile-menu.is-closing .mobile-menu__panel{
    box-sizing: border-box; transform: translateX(100%); }
  body.menu-open .site-header{
    z-index: 10001 !important;
  }
  body.menu-open .menu-toggle{
    position: fixed !important;
    top: calc(12px + env(safe-area-inset-top, 0px)) !important;
    right: calc(12px + env(safe-area-inset-right, 0px)) !important;
    z-index: 10002 !important;
  }

  /* 강제 우측 오픈(타 CSS의 left/translate override 방지) */
  #mobileMenu .mobile-menu__panel{
    box-sizing: border-box;
    left: auto !important;
    right: 0 !important;
    transform: translateX(100%) !important;
  }
  #mobileMenu.is-open .mobile-menu__panel{
    box-sizing: border-box;
    transform: translateX(0) !important;
  }
  #mobileMenu.is-closing .mobile-menu__panel{
    box-sizing: border-box;
    transform: translateX(100%) !important;
  }
  @media (prefers-reduced-motion: reduce){
    .mobile-menu__backdrop,
    .mobile-menu__panel{
    box-sizing: border-box; transition: none !important; }
  }
}

@media (max-width: 900px){
  body.menu-open .site-header{ z-index: 10001 !important; }
  body.menu-open .menu-toggle{
    z-index: 10002 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
  }

  /* 버튼 크기/정렬을 고정해서 토글 시 레이아웃 흔들림 방지 */
  .menu-toggle{
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative; /* bar absolute 기준 */
    -webkit-tap-highlight-color: transparent;
  }

  /* 3개의 bar는 absolute로 고정 배치 → 회전만 해서 X로 변형 */
  .menu-toggle__bar{
    position: absolute;
    left: 50%;
    width: 30px;
    height: 3px;
    background: var(--home-accent);
    border-radius: 999px;
    transform: translateX(-50%);
    transform-origin: 50% 50%;
    transition: transform .22s ease, opacity .18s ease;
    will-change: transform, opacity;
  }
  .menu-toggle__bar:nth-child(1){ transform: translateX(-50%) translateY(-9px); }
  .menu-toggle__bar:nth-child(2){ transform: translateX(-50%) translateY(0); }
  .menu-toggle__bar:nth-child(3){ transform: translateX(-50%) translateY(9px); }
  .menu-toggle.is-active .menu-toggle__bar:nth-child(1){
    transform: translateX(-50%) rotate(45deg);
  }
  .menu-toggle.is-active .menu-toggle__bar:nth-child(2){
    opacity: 0;
  }
  .menu-toggle.is-active .menu-toggle__bar:nth-child(3){
    transform: translateX(-50%) rotate(-45deg);
  }
}
.news-arrow:disabled,
.news-arrow.is-disabled,
.news-arrow[aria-disabled="true"]{
  opacity: .22 !important;
  cursor: default !important;
  pointer-events: none;
  border-color: rgba(255,255,255,0.18) !important;
  box-shadow: none !important;
}

.news-arrow:disabled .news-arrow__svg,
.news-arrow.is-disabled .news-arrow__svg,
.news-arrow[aria-disabled="true"] .news-arrow__svg{
  opacity: .7;
}

.news-arrow:not(:disabled):not(.is-disabled):not([aria-disabled="true"]){
  cursor: pointer;
  pointer-events: auto;
}
