@charset "UTF-8";
/*
 * 공용 히어로 컴포넌트 (SSOT)
 * disclosure(채용/안전) · benefit(인센티브) 등 "랜딩형" 서브페이지가 공유.
 * 사용: 페이지 scss 에서 `@use '../hero' as *;`  →  마크업은 .page-hero* 클래스.
 */
.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 0;
  text-align: center;
}
.page-hero__eyebrow {
  color: #00b7ce;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 16px;
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: "SUITE Variable", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.35;
  color: #1d1d1d;
  margin: 0 0 30px;
}
.page-hero__desc {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 56px;
}
.page-hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #295d60, #00b7ce);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 183, 206, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-hero__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 183, 206, 0.35);
}
.page-hero__cta-main {
  font-size: 24px;
  font-weight: 700;
}
.page-hero__cta-sub {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 400;
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 30px;
  }
  .page-hero__title {
    font-size: 28px;
  }
  .page-hero__desc {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .page-hero__cta {
    width: 100%;
    padding: 20px 24px;
  }
  .page-hero__cta-main {
    font-size: 20px;
  }
}
.recruit {
  padding-bottom: 160px;
}

@media (max-width: 768px) {
  .recruit {
    padding-bottom: 100px;
  }
}
