.sub-top-container {
  position: relative;
  height: 400px; /* 템플릿 <style>로 덮어씀, 폴백용 */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; /* 템플릿 <style>로 덮어씀, 폴백용 */
  color: #fff;
}

/* 배경 이미지 스타일 */
.sub-top-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sub-top-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 오버레이 스타일 */
.sub-top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* 콘텐츠 영역 */
.sub-top-content-area {
  position: relative;
  z-index: 3;
  text-align: center; /* 템플릿 <style>로 덮어씀, 폴백용 */
  width: 100%;
}

.sub-top-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sub-top-description {
  font-size: 18px;
  font-weight: 300;
}

/* ------------------------------------------- */
/* 📱 모바일 환경 (1023px 이하) */
/* ------------------------------------------- */

@media (max-width: 1023px) {

  .sub-top-container {
    height: 250px; /* 템플릿 <style>로 덮어씀, 폴백용 */
  }

  .sub-top-content-area {
    padding: 0 20px;
  }

  .sub-top-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .sub-top-description {
    font-size: 15px;
  }
}
