:root {
	--primary-color: #0d4088;
	--secondary-color: #ce771a;
	--primary-hover: #0A336D;
	--primary60: #0d4088;
	--primary70: #0A336D;
	--secondary60: #ce771a;
}

/* =====================================================
   AppliCan Job Listing – Visual Layout Upgrade (TEST)
   Safe to remove / adjust
   ===================================================== */

/* Scope everything to the widget */
#hiringthing-jobs {
  max-width: 1000px;
  margin: 0 auto;
  font-family: inherit;
}

/* Each job as a “card” */
#hiringthing-jobs li,
#hiringthing-jobs .job,
#hiringthing-jobs .job-listing,
#hiringthing-jobs .hiringthing-job {
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
  background: #ffffff;
}

/* Job title */
#hiringthing-jobs h3,
#hiringthing-jobs .job-title,
#hiringthing-jobs .title,
#hiringthing-jobs .hiringthing-job-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.25;
}

/* First paragraph = “meta” (salary / FT-PT if present) */
#hiringthing-jobs p:first-of-type {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  opacity: .85;
}

/* Remaining description text */
#hiringthing-jobs p {
  margin: 0 0 8px;
  line-height: 1.5;
}

/* Make descriptions easier to scan (fake bullets) */
#hiringthing-jobs p:not(:first-of-type)::before {
  content: "• ";
  font-weight: bold;
}

/* Improve spacing when lists already exist */
#hiringthing-jobs ul {
  padding-left: 18px;
  margin: 8px 0 0;
}
#hiringthing-jobs li ul li {
  border: none;
  padding: 0;
  margin: 6px 0;
  background: transparent;
}

/* Hover polish (optional) */
#hiringthing-jobs li:hover,
#hiringthing-jobs .hiringthing-job:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: box-shadow .2s ease;
}

