@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;
  }
}
.safety {
  padding-bottom: 160px;
}
.safety__cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.safety-card {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 44px 40px;
  border-radius: 16px;
  border: 1px solid #e6e9ea;
  background: #fff;
  color: #1d1d1d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.safety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(41, 93, 96, 0.16);
  border-color: #00b7ce;
}
.safety-card__tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: #295d60;
}
.safety-card__title {
  font-family: "SUITE Variable", sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.safety-card__desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}
.safety-card__link {
  margin-top: auto;
  padding-top: 16px;
  font-weight: 700;
  color: #00b7ce;
}
.safety-card__link::after {
  content: " →";
}
.safety-card--report {
  background: linear-gradient(135deg, #295d60, #00b7ce);
  border: none;
  color: #fff;
}
.safety-card--report .safety-card__tag {
  background: rgba(255, 255, 255, 0.2);
}
.safety-card--report .safety-card__desc {
  color: rgba(255, 255, 255, 0.85);
}
.safety-card--report .safety-card__link {
  color: #fff;
}

@media (max-width: 768px) {
  .safety {
    padding-bottom: 100px;
  }
  .safety__cards {
    flex-direction: column;
    align-items: stretch;
  }
  .safety-card {
    max-width: none;
    padding: 32px 28px;
  }
}
