/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
   :root {
    /* Colors */
    --white: #ffffff;
    --blue: #4982b9;
    --aqua: #27e0d0;
    --grey-body-text: #494A52;
    --grey-button-text: #43424a;
    --grey-headings: #494a52;
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: arial, helvetica, sans-serif;
    
    /* Font Sizes */
    --font-size-h3: 33px;
    --font-size-h4: 24px;
    --font-size-body: 17px;
    --font-size-job-info: 16px;
    --font-size-button: 14px;
    
    /* Line Heights */
    --line-height-h3: 40px;
    --line-height-h4: 28px;
    --line-height-body: 24px;
    --line-height-job-info: 24px;
    --line-height-button: 16px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Shadows */
    --shadow-job-card: 0px 2px 30px 0px rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
	   
    --primary-background-color: #f2f2f2;
  }



.button-row {
  display: flex;
  gap: 12px;          /* spacing between buttons */
  justify-content: center; /* optional */
}

button.standard {
  background-color: var(--aqua);
  padding: 12px var(--spacing-xl);
  border-radius: var(--radius-sm);
  border: none;

  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;

  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;

  width: auto;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Beaver Builder Button module */
.fl-builder-content .fl-button-wrap .fl-button,
.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
  background-color: var(--aqua);
  padding: 12px var(--spacing-xl);
  border-radius: var(--radius-sm);
  border: none;

  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, #43424A) !important;
  text-align: center;
  text-decoration: none;

  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;

  width: 147px;
  white-space: nowrap;
  box-sizing: border-box;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fl-builder-content .fl-button-wrap .fl-button:hover,
.fl-builder-content a.fl-button:hover {
  background-color: var(--blue);
  color: var(--white);
}

.fl-builder-content .fl-button-wrap .fl-button:focus-visible,
.fl-builder-content a.fl-button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Hover state */
button.standard:hover {
  background-color: var(--blue);
  color: var(--white);
}

/* Focus (accessibility compliant) */
button.standard:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Disabled state (optional but recommended) */
button.standard:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

  
  /* ============================================
     Core Styles FINISH
     ============================================ */


  /* ============================================
     Job Alerts Section
     Based on Figma Design: Planet Pharma
     Node IDs: 2-429, 2-463, 2-464
     ============================================ */
  
  /* Job Alerts Section Container
     Single div containing all three components */
  .job-alerts-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    position: relative;
    box-sizing: border-box;
  }
  
  /* Job Alerts Image */
  .job-alerts-image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  
  .job-alerts-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  /* Job Alerts Heading */
  .job-alerts-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-h4);
    font-weight: 400;
    line-height: var(--line-height-h4);
    color: var(--grey-headings);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0;
  }
  
  .job-alerts-heading p {
    margin: 0;
  }
  
  /* Job Alerts Button/Link */
  .job-alerts-button {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: var(--font-size-button);
    font-weight: 400;
    line-height: var(--line-height-button);
    color: var(--grey-button-text);
    text-align: center;
    transition: opacity 0.2s ease;
  }
  
  .job-alerts-button:hover {
    opacity: 0.8;
  }
  
  .job-alerts-button-text {
    margin: 0;
  }
  
  .job-alerts-button-underline {
    height: 1px;
    width: 100%;
    background-color: var(--grey-button-text);
    margin-top: 2px;
  }
  
  /* Job Alerts Section Responsive Styles */
  @media (max-width: 768px) {
    .job-alerts-section {
      gap: var(--spacing-md);
    }
    
    .job-alerts-heading {
      font-size: 20px;
      line-height: 24px;
    }
  }
  
  
 
  
  .sf_menu_background {
      background-color: #EEEEEE;
  }
  
  .sf_topmenu {
      /* Top menu styles - add properties as needed */
      display: block;
  }
  .sf_header_top_row {
      margin-top: 5px;
  }
  .sf_logo_header {
      /* Logo header styles - add properties as needed */
      display: block;
  }
  
  /* Jobs Filters */
  
  .job_search_left_facet_customs .facetwp-facet-title {
      color: #104B83;
      font-size: 24px;
      line-height: 32px;
      font-weight: 500;
      letter-spacing: 1px;
      font-family: var(--primary-font);
  }
  
  .job_search_left_facet_customs .fs-label-wrap {
      font-family: var(--primary-font);
      border: none;
      border-top: 3px solid #104B83;
      width: 100%;
      border-radius: 0;
      padding: 15.6px 0 15px 0;
      font-size: 18px;
      font-weight: 400;
      line-height: 24px;
      color: #4E504D;
  }
  
  .job_search_left_facet_customs .fs-label {
      padding: 0 !important;
  }
  
  .job_search_left_facet_customs .fs-wrap {
      width: 100%;
  }
  
  .job_search_left_facet_customs .fs-arrow {
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-top: 10px solid #104B83;
  }
  
  .job_search_left_facet_customs .fs-search {
      background: transparent;
      padding: 6px 0 !important;
  }
  
  .job_search_left_facet_customs .fs-wrap .fs-search input {
      font-family: var(--primary-font);
      font-size: 16px;
      line-height: 16px;
      color: #4E504D;
      font-weight: 400;
      border: 1px solid #4E504D;
      border-radius: 2px;
      padding: 6px 10px;
  }
  
  .job_search_left_facet_customs .fs-wrap .fs-search input::placeholder {
      font-family: var(--primary-font);
      font-size: 14px;
      color: #545454;
      font-weight: 400;
  }
  
  .job_search_left_facet_customs .fs-option.selected i {
      background: url(/job-search/wp-content/uploads/2024/05/Checked.svg);
      background-repeat: no-repeat;
      background-size: 14px 14px;
      cursor: pointer;
      background-color: transparent !important;
  }
  
  .job_search_left_facet_customs .fs-option i {
      background-image: url(/job-search/wp-content/uploads/2024/05/Unchecked.svg);
      border: 1px solid transparent !important;
      background-size: contain;
      background-repeat: no-repeat;
      background-color: transparent !important;
      width: 16px !important;
      height: 16px !important;
      margin-left: 0 !important;
  }
  
  .job_search_left_facet_customs .fs-option {
      padding-left: 24px !important;
  }
  
  .job_search_left_facet_customs .fs-option-label {
      font-family: var(--primary-font);
      color: #4E504D;
      font-size: 16px;
      font-weight: 400;
      line-height: 16px;
      
  }
  
  .job_search_left_facet_customs .fs-dropdown {
      border: none;
      padding: 0 !important;
      z-index: 6;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options {
      max-height: 200px;
      overflow: auto;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar {
      width: 10px;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar-track {
      background: transparent;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar-thumb {
      background: #104B83; 
      border-radius: 0;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options::-webkit-scrollbar-thumb:hover {
      background: #555;
  }
  
  .job_search_left_facet_customs .fs-dropdown .fs-options {
      scrollbar-width: thin;
      scrollbar-color: #104B83 transparent;
  }
  
  #pp-accordion-af4kz0hqje59-panel-0 {
      padding-left: 0;
      padding-right: 0;
  }
  
  .job_search_left_facet_custom_accordian .pp-accordion-button {
      position: relative;
  }
  
  .job_search_left_facet_custom_accordian .pp-accordion-button-icon {
      top: 0;
      position: absolute;
      right: 3%;
      line-height: inherit;
  }
  
  .job_search_left_facet_custom_accordian .pp-accordion-button-icon:before {
      line-height: inherit;
  }
  
  .job_search_left_facet_custom_accordian .facetwp-slider-label {
      color: #545454;
      font-size: 14px;
      font-weight: 400;
  }
  
  .job_search_left_facet_custom_accordian .noUi-horizontal {
      height: 6px;
  }
  
  .job_search_left_facet_custom_accordian .noUi-target {
      background: #4E504D;
      border: 1px solid #4E504D;
  }
  
  .job_search_left_facet_custom_accordian .noUi-connect {
      background: #4E504D;
  }
  
  .job_search_left_facet_custom_accordian .noUi-handle {
      border: 1px solid #104B83;
      background: #104B83;
      border-radius: 100%;
      top: -8px !important;
  }
  
  .job_search_left_facet_custom_accordian input.facetwp-slider-reset {
      background-color: #104B83;
      color: #ffffff !important;
      text-decoration: none !important;
      padding: 6px 20px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 400;
      font-family: "futura-pt", open sans;
      text-transform: uppercase;
      transition: all .3s ease;
      margin-top: 10px;
  }
  
  .job_search_left_facet_custom_accordian input.facetwp-slider-reset:hover {
      background-color: #821747;
      transition: all .3s ease;
  }
  
  .job_search_left_clear_filter_facet button.facetwp-reset {
      background-color: transparent;
      border: 1px solid #104B83;
      color: #104B83;
      text-decoration: none !important;
      padding: 10px 40px;
      border-radius: 2px;
      font-size: 16px;
      line-height: 16px;
      font-weight: 500;
      font-family: var(--primary-font);
      text-transform: uppercase;
      transition: all .3s ease;
      letter-spacing: 1px;
  }
  
  .job_search_left_clear_filter_facet button.facetwp-reset:hover {
      background-color: #104B83;
      color: #fff;
      transition: all .3s ease;
  }
  
  .job_search_left_clear_filter_facet .facetwp-facet {
      margin-bottom: 0;
  }
  
  /* Jobs Filters */

/* Lastest Opportunties */

.pp-content-grid-post {
    font-size: 14px;
}
.pp-content-grid-post-image {
    padding: 20px;
    padding-bottom: 0;
}
.pp-content-grid-post-text {
    padding: 20px;
}
.pp-content-grid-post-title {
    font-size: 20px;
	line-height: 26px;
	margin: 0;
	padding: 0;
}
.pp-content-grid-post-meta {
    padding: 0;
}
.pp-content-grid-post-meta a {
    text-decoration: none;
}
.pp-content-grid-post-meta,
.pp-content-grid-post-meta a {
    color: #888;
    font-size: 12px;
}
.pp-content-grid-post-meta a:hover {
    color: #000;
}
.pp-content-grid-separator {
    min-height: 2px;
    width: 60px;
    background: #000;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sf_apply_now_btn {
	border-radius: 8px;
	background: var(--White, #FFF);
	box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.08);
	display: flex;
	padding: 12px 32px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}

/* ============================================
   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;
  }
}

/* ============================================
   Job Listing Card (Compact Variant)
   Based on Figma Design: Planet Pharma
   Node ID: 4-2590
   ============================================ */
.job-listing-card-compact {
  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;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* Job Title Section */
.job-listing-card-compact-title-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: 100%;
}

.job-listing-card-compact-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;
}

.job-listing-card-compact-divider {
  height: 1px;
  width: 100%;
  background-color: var(--grey-headings);
  margin: 0;
}

/* Job Details Section */
.job-listing-card-compact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: 100%;
}

.job-listing-card-compact-detail-row {
  display: flex;
  gap: var(--spacing-xs);
  font-size: var(--font-size-job-info);
  line-height: var(--line-height-job-info);
  color: var(--grey-body-text);
  width: 100%;
}

.job-listing-card-compact-detail-label {
  font-family: var(--font-body);
  font-weight: 700;
}

.job-listing-card-compact-detail-value {
  font-family: var(--font-body);
  font-weight: 400;
}

/* View Details Button */
.job-listing-card-compact-view-details-button {
  border: 1px solid var(--grey-button-text);
  background-color: var(--white);
  padding: 12px var(--spacing-xl);
  border-radius: var(--radius-sm);
  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;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
}

.job-listing-card-compact-view-details-button:hover {
  background-color: #f5f5f5;
}

.job-listing-card-compact-view-details-button:focus {
  outline: 2px solid var(--grey-button-text);
  outline-offset: 2px;
}

/* Responsive Styles for Compact Card */
@media (max-width: 768px) {
  .job-listing-card-compact {
    padding: var(--spacing-md);
  }
  
  .job-listing-card-compact-title {
    font-size: 20px;
    line-height: 28px;
  }
}
/* Lastest Opportunties */

/* Fixed center column with fluid sides */
.fixed-center-row .fl-col-group {
  display: flex;
  justify-content: center;
}

.fixed-center-row .fl-col {
  flex: 1 1 auto;
}

.fixed-center-row .fixed-center-col {
  flex: 0 0 1440px;   /* fixed width */
  max-width: 1440px;
}

@media (max-width: 1440px) {
  .fixed-center-row .fl-col-group {
    flex-direction: column;
  }

  .fixed-center-row .fixed-center-col {
    max-width: 100%;
    flex: 1 1 auto;
  }
}

/* Related jobs styling */
.related_jobs{
	margin-bottom: 5px;
}