/* RESET FOR DIVI */
body .hrhjp-container * {
  box-sizing: border-box;
}

/* PAGE WRAPPER */
body .hrhjp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* TITLE */
body .hrhjp-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* SEARCH BAR */
body .hrhjp-search-bar {
  display: flex;
  gap: 12px;
  background: #ffffff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  margin-bottom: 32px;
}

body .hrhjp-search-bar input,
body .hrhjp-search-bar select {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d6dee6;
  font-size: 15px;
}

body .hrhjp-search-bar button {
  background: #0a66c2;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* JOB CARD */
body .hrhjp-job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 22px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
}

body .hrhjp-job-card .job-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

body .hrhjp-job-card .job-company {
  font-weight: 600;
  color: #0a66c2;
}

body .hrhjp-job-card .job-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

body .hrhjp-job-card .job-salary {
  margin-top: 10px;
  font-weight: 700;
}

/* APPLY BUTTON */
body .job-apply-btn {
  background: #0a66c2;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* SINGLE JOB */
body .single-job .job-description {
  margin: 30px 0;
  line-height: 1.7;
}

body .apply-form {
  background: #f4f7fb;
  padding: 28px;
  border-radius: 16px;
  margin-top: 30px;
}

body .apply-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
}

body .apply-form button {
  background: #0a66c2;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {

  body .hrhjp-search-bar {
    flex-direction: column;
  }

  body .hrhjp-job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  body .job-apply-btn {
    width: 100%;
    text-align: center;
  }
}
