/* ==============================
   Hiring Page – Careers Styling
   ============================== */

.careers-container {
  padding-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
  color: #111827;
}

/* Hero Background with Blur */
.careers-hero {
  background: url('/assets/images/employeeback.webp') center/cover no-repeat;
  position: relative;
  padding: 5rem 1rem;
  text-align: center;
}

.careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px); /* Safari support */
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
}

/* Job Listings */
.job-section {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  padding: 0 1rem;
}

.job-section h2,
.job-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.job-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: #444;
}

.job-section ul li strong {
  color: #111827;
}

/* Links */
.link-highlight {
  color: #10B981;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-highlight:hover,
.link-highlight:focus {
  text-decoration: underline;
  outline: none;
}

/* Contact */
.contact-section {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  color: #111;
}

/* Responsive Enhancements */
@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .job-section h2,
  .job-section h3 {
    font-size: 1.2rem;
  }

  .job-section ul {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1.5rem 1rem;
  }

  .job-section {
    padding: 0 1rem;
  }

  .contact-section {
    font-size: 1rem;
  }
}
