/* ============================================================
   CAREERS PAGE — careers.css
   ============================================================ */

/* ===== HERO BANNER ===== */
.careers-hero {
  background-color: var(--orange);
  padding: 80px 24px;
  text-align: center;
  animation: fadeIn 0.5s ease both;
}

.careers-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.careers-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.careers-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* ===== BODY (placeholder for future job listings) ===== */
.careers-body {
  background-color: var(--bg);
  min-height: 120px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .careers-hero { padding: 60px 20px; }
}
