/* ================= PAGE HERO ================= */
.page-hero {
  margin-top: 85px;
  height: 220px;
  background: #2b2f3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

/* ================= CAREERS ================= */
.careers-section {
  padding: 80px 0 100px;
}

/* SEARCH BAR */
.career-search {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.career-search input {
  width: 100%;
  max-width: 520px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  outline: none;
}

.career-search button {
  width: 60px;
  height: 48px;
  border: none;
  background: #0a2540;
  color: #fff;
  font-size: 16px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.career-search button:hover {
  background: #123a6f;
}

/* EMPTY STATE */
.career-empty {
  text-align: center;
  color: #333;
}

.career-empty img {
  width: 260px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.career-empty h3 {
  font-size: 22px;
  font-weight: 500;
}

/* ================= FLOAT CALL ================= */
.call-float {
  position: fixed;
  right: 25px;
  bottom: 95px;
  width: 52px;
  height: 52px;
  background: #0a2540;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 1000;
  text-decoration: none;
}

.call-float:hover {
  background: #123a6f;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 30px;
  }

  .career-empty img {
    width: 200px;
  }
}
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 24px;
  }
}
    .career-empty img {
        width: 150px;
    }
    