/* BODY WRAPPER */
.jb-body {
  font-family: 'Inter', sans-serif;
}

/* BLOCK SPACING */
.jb-block {
  padding: 80px 20px;
}

/* LIGHT SECTIONS */
.jb-light {
  background: #f9fafb;
}

/* DARK SECTION */
.jb-dark {
  background: #020617;
  color: white;
}

/* GRADIENT SECTION */
.jb-gradient {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
}

/* CTA */
.jb-cta {
  background: #111827;
  color: white;
  text-align: center;
}

/* HERO */
.jb-hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

/* IMPROVE JOB CARDS (NO BACKEND NEEDED) */
.job-card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  transition: 0.3s;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* BUTTONS */
button, .btn {
  background: #2563eb;
  color: white;
  border-radius: 8px;
  padding: 10px 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .jb-block {
    padding: 50px 15px;
  }

  .jb-hero {
    padding: 80px 20px;
  }
}