/* ============================================================
   KIMANS REDESIGN — CAREERS (careers page + single job)
   ============================================================ */

/* Application form focus state (matches the contact enquiry form). */
.kx-apply input:focus,
.kx-apply textarea:focus,
.kx-apply select:focus {
  outline: none;
  border-color: var(--accent, #FEBB19);
  box-shadow: var(--shadow-focus, 0 0 0 3px rgba(254, 187, 25, 0.45));
}
.kx-apply input[type="file"]:hover { border-color: var(--accent, #FEBB19); }

/* Long-form job description coming from the_content(). */
.kx-prose h5,
.kx-prose strong { color: #0D0D0D; }
.kx-prose h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  letter-spacing: -0.01em;
}
.kx-prose p { margin: 0 0 14px; }
.kx-prose ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.kx-prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.kx-prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent, #FEBB19);
}
.kx-prose ul ul { margin: 8px 0 8px; }
.kx-prose a { color: var(--accent-strong, #F5A800); }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .kx-car-hero { grid-template-columns: 1fr !important; gap: 36px !important; }
  .kx-car-culture { grid-template-columns: 1fr !important; gap: 36px !important; }
  .kx-prospects-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .kx-apply-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .kx-job-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .kx-job-aside { position: static !important; }
}
@media (max-width: 680px) {
  .kx-role { grid-template-columns: 1fr !important; align-items: flex-start !important; }
  .kx-role-actions { width: 100%; }
  .kx-apply-fields { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .kx-car-hero h1 { font-size: 36px !important; }
  .kx-prospects-grid { grid-template-columns: 1fr !important; }
}
