.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* 아래쪽 흰 배경과 자연스럽게 이어지는 그라데이션 */
.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  /*
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  */
}

.hero__content {
  position: absolute;
  bottom: clamp(100px, 17.2vw, 220px);
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 clamp(24px, 4.7vw, 60px);
  z-index: 2;
}

.hero__title-kr {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__title-en {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
