/* ============================
   CAREERS PAGE
============================ */

.careers-hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  backdrop-filter: blur(3px);
  color: var(--white);
}

.careers-hero {
  position: relative;
  z-index: 1;
}

.careers-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Adjust darkness here */
  z-index: -1;
}
.careers-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.career-block {
  background: var(--card-glass);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
  color: var(--text-light);
}

.career-block h2 {
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.btn-careers {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  padding: 12px 22px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-careers:hover {
  background: #e5c879;
}

.vacancy-title {
  font-size: 22px;
  margin: 10px 0;
  color: var(--white);
}

.requirements-box {
  margin-top: 20px;
}

.requirements-box ul {
  margin-left: 20px;
  line-height: 1.6;
}

.salary-info,
.closing-date {
  margin-top: 10px;
}
