/**
 * oneup_v01 Child — 사이트별 스타일
 *
 * 부모 테마 CSS 이후 로드됩니다.
 */

/* sub-visual-custom */


.cus-sub-header {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  padding: 0 3%;
  gap: var(--one-gap-xl);
}

.cus-sub-header__top {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.cus-sub-header__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.cus-sub-header__left {
  width: 60%;
}

.cus-sub-header__left .sub-header__title {
  margin-bottom: 0;
}

.cus-sub-header__right {
  width: 40%;
  display: flex;
  justify-content: flex-end;
}

.cus-sub-header__right .sub-header__desc {
  margin-bottom: 0;
}

.cus-sub-header__right .sub-header__title {
  margin-bottom: 0;

}

/* ============================================================
   반응형 — 태블릿 (max-width: 1024px)
============================================================ */

@media all and (max-width: 1024px) {
  .cus-sub-header {
    padding: 0 10%;
  }
}

/* ============================================================
   반응형 — 모바일 (max-width: 639px)
============================================================ */

@media all and (max-width: 639px) {
  .cus-sub-header__top {
    justify-content: center;
  }

  .cus-sub-header__bottom {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: var(--one-gap-lg);
  }

  .cus-sub-header__left {
    width: 100%;
    text-align: center;
  }

  .cus-sub-header__right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}