/* ===== Hero Text: 공통 ===== */
.hero .hero-text-overlay {
  position: absolute !important;
  z-index: 3 !important;
  left: 0; right: 0; margin: 0 auto;
  text-align: center;
  color: #fff;
}

/* PC */
@media (min-width: 768px) {
  .hero .hero-text-overlay {
    top: 22% !important; /* 원본 스타일 */
  }
}

/* Mobile */
@media (max-width: 767.9px) {
  .hero .hero-text-overlay {
    top: 15% !important; /* 원본 스타일 */
  }
}

.hero .hero-text-overlay h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin: 0;
}
.hero .hero-text-overlay p {
  font-size: 2.5rem;
  margin-top: 10px;
}

/* 작은 모바일 폰트 축소 */
@media (max-width: 767.9px) {
  .hero .hero-text-overlay h1 { font-size: 2.5rem; }
  .hero .hero-text-overlay p  { font-size: 1.5rem; }
}

/* ===== 서브 문구 그룹 ===== */
.sub-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.set2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0;
}
.set3-pc {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}
@media (min-width: 768px) {
  .sub-text-group { margin-top: 2rem; }
  .set2 { margin-bottom: 0; }
  .set3-pc {
    display: block !important;
    margin-top: 0.5rem !important;
  }
}

/* ===== 공통: 레이아웃 기본 ===== */
.hero .text-wrap {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== PC (≥ 992px) ===== */
@media (min-width: 768px) {
  .main-kor {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.3em 0;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    text-align: center;
  }
  .set2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}

/* ===== Mobile (≤ 991px) ===== */
@media (max-width: 768px) {
  .main-kor {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.3em 0;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    text-align: center;
  }
  .set2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}


/* ===== 영문 라인 ===== */
.text-en {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.6em;  /* 원본값 */
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  color: #fff;
}
