
/* ============================================
   WordPress Beaver Builder Job Listing Card
   Maps existing classes to compact card styles
   ============================================ */
   .sf_jobs_main_container {
    background-color: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-job-card);
    width: 100%;
    box-sizing: border-box;
  }
  
  .sf_main_content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
  }
  
  .sf_job_title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h4);
    font-weight: 400;
    line-height: 32px;
    color: var(--grey-headings);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0;
  }
  
  .sf_job_title a {
    color: var(--grey-headings);
    text-decoration: none;
  }
  
  .sf_job_title a:hover {
    color: var(--blue);
  }
  
  .sf_line {
    height: 1px;
    width: 100%;
    background-color: var(--grey-headings);
    border: none;
    margin: 0;
  }
  
  .sf_more_info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    width: 100%;
  }
  
  .sf_infos {
    font-family: var(--font-body);
    font-size: var(--font-size-job-info);
    line-height: var(--line-height-job-info);
    color: var(--grey-body-text);
    margin: 0;
    padding: 0;
    font-weight: 400;
  }
  
  /* Note: To have bold labels with regular values, wrap labels in <strong> tags:
     <p class="sf_infos"><strong>Location:</strong> [wpbb post:custom_field key='_job_location']</p>
  */
  .sf_infos strong {
    font-weight: 700;
  }
  
  /* Update sf_apply_now_btn to match View Details button style */
  .sf_jobs_main_container .sf_apply_now_btn {
    border: 1px solid var(--grey-button-text);
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px var(--spacing-xl);
    box-shadow: none;
    margin-top: 0;
  }
  
  .sf_jobs_main_container .sf_apply_now_btn a {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-weight: 700;
    line-height: var(--line-height-body);
    color: var(--grey-button-text);
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
  }
  
  .sf_jobs_main_container .sf_apply_now_btn:hover {
    background-color: #f5f5f5;
  }
  
  .sf_jobs_main_container .sf_apply_now_btn a:hover {
    color: var(--grey-button-text);
  }
  
  /* Responsive Styles for WordPress Job Card */
  @media (max-width: 768px) {
    .sf_jobs_main_container {
      padding: var(--spacing-md);
    }
    
    .sf_job_title {
      font-size: 20px;
      line-height: 28px;
    }
  }