.job-single {
  max-width: 80%;
  margin: 60px auto;
  padding: 0 16px;
}

/* HEADER */
.job-header {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  margin-bottom: 40px;
}

.job-header .job-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--fs-color-primary);
  margin-bottom: 16px;
}

.job-header .job-salary {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.job-header .job-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.job-header .job-meta li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #555;
}

/* APPLY BUTTON */
.job-apply-btn {
  display: inline-block;
  background: #e60023;
  color: #fff!important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  &:hover {
    box-shadow: 0 8px 20px rgba(230,0,35,.3);
  }
}

/* CONTENT */
.job-content {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  margin-bottom: 40px;
}

.job-content h2,
.job-content h3 {
  margin-top: 24px;
}

/* APPLY FORM */
.job-apply {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .job-header,
  .job-content,
  .job-apply {
    padding: 24px;
  }

  .job-header .job-title {
    font-size: 26px;
  }
}

/* ================================
   CV UPLOAD FORM (CF7)
================================ */

.cv-upload-box {
  border: 2px dashed var(--fs-color-primary);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  max-width: 100%;
}

/* ---------- HEADER ---------- */
.cv-upload-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.cv-icon {
  font-size: 34px;
  color:#cd0000;
}

.cv-text strong {
  font-size: 16px;
}

.cv-text p {
  margin: 4px 0 0;
  color: #777;
  font-size: 14px;
}

/* ---------- FILE INPUT ---------- */
.cv-upload-input {
  margin: 18px 0 22px;
  position: relative;
  display: flex;
  justify-content: center;
    align-items: center;
}

.cv-upload-input input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  height: 46px;
}

.btn-choose-cv {
  display: inline-block;
  background: #f2f3f5;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  position: relative;
}

/* ---------- NOTE ---------- */
.cv-note {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
  font-size: 14px;
}

.note-left {
  color: var(--fs-color-primary);
  font-weight: 600;
}

.note-right {
  color: #e74c3c;
}

/* ---------- FORM GRID ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* CF7 INPUT FIX */
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form-control {
  width: 100%;
  padding: 12px 14px!important;
  border-radius: 99px!important;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  overflow: hidden;
  height: 45px!important;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--fs-color-primary);
}

.form-group.full {
  grid-column: 1 / -1;
}

/* ---------- SUBMIT ---------- */
.form-submit {
  margin-top: 24px;
}

.btn-submit {
  background:   var(--fs-color-primary);
  color: #fff;
  padding: 0!important;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* ---------- MOBILE ---------- */
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
