/* 섹션 래퍼 */
.nx-hero {
  background: #0b0b0b;
  position: relative;
  /* 전체 너비를 차지하도록 설정 */
  width: 100%;
  margin: 0;
  padding: 0;
}

.slide-logo {
  width: 43px;
  height: 43px;
}

.nx-hero .container {
  /* 최대 너비 제한 제거하고 패딩 제거 */
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 메인 슬라이더 박스 */
.nx-hero .hero-box {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  /* 전체 너비 명시 */
  width: 100%;
}

.nx-hero .hero-swiper {
  /* swiper도 전체 너비 */
  width: 100%;
}

.nx-hero .hero-swiper .swiper-slide {
  position: relative;
  height: 100%;
  /* 슬라이드도 전체 너비 */
  width: 100%;
}

/* @media (max-width: 1024px) {
  .nx-hero .hero-swiper .swiper-slide {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .nx-hero .hero-swiper .swiper-slide {
    height: 320px;
  }
} */

/* 배경 이미지 */
.nx-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 좌→우, 하단 그라데이션 오버레이 */
.nx-hero .hero-grad-left {
  position: absolute;
}

.nx-hero .hero-grad-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(33, 24, 7, 0.55) 70%,
    rgba(39, 28, 8, 0.75) 100%
  );
}

/* 컨테이너 유틸 (Tailwind container 대체용) */
.promo-join__container {
  max-width: 1200px;
  margin: 0 auto;
  /* mx-auto */
  padding: 0 1rem;
  /* px-4 */
  text-align: center;
}

/* 섹션 배경 래퍼: w-full min-w-full flex-shrink-0 bg-[#1a1c29] */
.promo-join {
  width: 100%;
  min-width: 100%;
  background-color: #1a1c29;
  flex-shrink: 0;
}

/* 내부 여백: text-white py-20 */
.promo-join__inner {
  color: #ffffff;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

/* 문구: mb-6 text-4xl */
.promo-join__title {
  margin-bottom: 1.5rem;
  /* mb-6 */
  font-size: 2.25rem;
  /* text-4xl */
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* 색상 스팬들 */
.t-white {
  color: #ffffff;
}

.t-accent {
  color: #66ffc2;
}

/* 버튼 (Tailwind 버튼 스타일 매핑) */
.promo-join__button {
  background-color: #66ffc2;
  /* bg-[#66ffc2] */
  color: #1a1c29;
  /* text-[#1a1c29] */
  font-size: 1rem;
  /* text-base */
  border: none;
  border-radius: 9999px;
  /* rounded-full */
  padding: 1.5rem 2rem;
  /* py-6 px-8 */
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* hover:bg-[#4de3aa] hover:shadow-lg hover:-translate-y-0.5 */
.promo-join__button:hover {
  background-color: #4de3aa;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* 반응형(선택) */

@media (max-width: 1024px) {
  .promo-join__inner {
    color: #ffffff;
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

@media (max-width: 640px) {
  .promo-join__title {
    font-size: 1.75rem;
  }

  .promo-join__button {
    width: 100%;
    max-width: 340px;
  }
  .promo-join__inner {
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
