/* ============================================================
   people-hero.css — 社員インタビューページ ヒーローセクション
   背景: オフホワイト（--c-bg-section）
   アニメーション: rvシステム（rv-left / rv-up）
   ============================================================ */

/* ---- Section ---- */
.people-hero {
  background-color: var(--c-bg-section, #F7F8FA);
  padding: 140px 0 80px;
  position: relative;
  z-index: var(--z-content, 10);
  overflow: hidden;
}

/* 装飾: 右上ネイビー斜線アクセント */
.people-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, transparent 60%, rgba(30, 58, 95, 0.06) 100%);
  pointer-events: none;
}

/* ---- Container ---- */
.people-hero__inner {
  max-width: var(--s-container, 1200px);
  margin: 0 auto;
  padding: 0 var(--s-gutter, 32px);
  position: relative;
  z-index: var(--z-content, 10);
}

/* ---- Breadcrumb ---- */
.people-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label, 'Inter', sans-serif);
  font-size: 0.8rem;
  color: var(--c-text-muted, #999);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.people-hero__breadcrumb a {
  color: var(--c-navy, #1E3A5F);
  text-decoration: none;
  transition: color 0.2s;
}

.people-hero__breadcrumb a:hover {
  color: var(--c-gold);
}

.people-hero__breadcrumb-sep {
  color: var(--c-border, #E5E5E5);
  font-size: 0.7rem;
}

/* ---- Eyebrow ---- */
.people-hero__eyebrow {
  font-family: var(--f-label, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 20px;
}

/* ---- Title ---- */
.people-hero__title {
  font-family: var(--f-heading-ja, 'Noto Serif JP', serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--c-navy-deep, #0D1B2E);
  line-height: 1.3;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

/* ---- Subtitle ---- */
.people-hero__subtitle {
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-text-light, #555);
  line-height: 1.8;
  margin: 0 0 48px;
  max-width: 520px;
}

/* ---- Meta Badge ---- */
.people-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.people-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label, 'Inter', sans-serif);
  font-size: 0.85rem;
  color: var(--c-text-light, #555);
}

.people-hero__meta-item i {
  color: var(--c-gold);
  font-size: 0.8rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .people-hero {
    padding: 120px 0 60px;
  }

  .people-hero__title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .people-hero__subtitle {
    font-size: 0.9rem;
  }
}
