/* Career page — requires index-styles.css */

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-lt) 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; max-width: none; }
.page-hero > .container > p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin: 0 auto; max-width: 52ch; }

/* ── MAIN CONTENT ── */
.career-section { background: var(--white); }

.career-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.career-text h2 { margin-bottom: 20px; }
.career-text p {
  color: var(--muted);
  max-width: none;
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 1rem;
}

.career-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.aside-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.aside-card-orange { border-left-color: var(--orange); }

.aside-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aside-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
}

.aside-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.aside-card p { color: var(--muted); font-size: 0.88rem; max-width: none; line-height: 1.6; }

/* ── TRAITS ── */
.traits-section { background: var(--off-white); }
.traits-section h2 { max-width: none; margin-bottom: 16px; }

.traits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.trait-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trait-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,31,60,0.09);
}

.trait-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.trait-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trait-card h3 { color: var(--navy); margin-bottom: 10px; }
.trait-card p { color: var(--muted); font-size: 0.92rem; max-width: none; }

/* ── CTA ── */
.career-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.career-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px);
}
.career-cta .container { position: relative; }
.career-cta h2 { margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .career-content { grid-template-columns: 1fr; gap: 48px; }
  .career-aside { flex-direction: row; }
  .aside-card { flex: 1; }
  .traits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .career-aside { flex-direction: column; }
  .traits-grid { grid-template-columns: 1fr; }
}
