/* WPJM Grid Layout matching Hello Elementor theme */
.job_listings.wpjm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 24px;
  margin-top: 1.5em;
}
.job_listings.wpjm-grid .job_listing {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.04);
  transition: all .2s ease;
}
.job_listings.wpjm-grid .job_listing:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}
.job_listings.wpjm-grid .job_listing .position h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 5px;
  font-weight: 700;
}
.job_listings.wpjm-grid .meta {
  display: none;
}
.job_listings.wpjm-grid .company {
  margin-bottom: 8px;
  font-size: 14px;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.job_listings.wpjm-grid .company::before {
  content: '✔';
  color: #10b981;
  margin-right: 6px;
}
.job_listings.wpjm-grid .job-type {
  display: none;
}
.job_listings.wpjm-grid .application_button,
.job_listings.wpjm-grid .job_listing .wp-job-manager-application-wrapper .application_button {
  display: inline-block;
  margin-top: 10px;
  background: #E11D48;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all .2s ease;
}
.job_listings.wpjm-grid .application_button:hover {
  background: #BE123C;
}
.job_listings.wpjm-grid .no_job_listings_found {
  grid-column: 1/-1;
  text-align: center;
  padding: 30px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  color: #666;
}
.job_listings.wpjm-grid .job_listing:after {
  content: '100% NO FEES';
  display: inline-block;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 2px solid #dbeafe;
  background: #eff6ff;
  font-weight: 700;
  font-size: 12px;
  color: #1e3a8a;
}
