.elementor-592 .elementor-element.elementor-element-40e08cf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:5%;--padding-bottom:5%;--padding-left:5%;--padding-right:5%;}/* Start custom CSS for shortcode, class: .elementor-element-2bd2033 *//* =====================================================
   INTELLUS JOB DIRECTORY DESIGN SYSTEM
===================================================== */

/* Wrapper Layout */
.job-wrapper {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 0px 0;
  position: relative;
}

/* =====================================================
   FILTER SIDEBAR
===================================================== */

.job-filters {
  width: 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.job-filters h4 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #111827;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #374151;
}

.filter-group input[type="checkbox"] {
  accent-color: #1A73E8;
  width: 16px;
  height: 16px;
}

#job-reset {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #F3F4F6;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s ease;
}

#job-reset:hover {
  background: #E5E7EB;
}

/* =====================================================
   RESULTS AREA
===================================================== */

#job-results {
  flex: 1;
  min-height: 300px;
}

/* =====================================================
   JOB CARD
===================================================== */

.job-card {
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 22px 24px; /* reduced padding */
  margin-bottom: 18px;
  transition: all .3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  border-color: #1A73E8;
}

/* Top badges */
.job-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.badge {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  background: #F3F4F6;
  color: #374151;
}

.badge.department {
  background: #E8F0FE;
  color: #1A73E8;
}

.badge.location {
  background: #E5F7F3;
  color: #059669;
}

.badge.employment {
  background: #FCE7F3;
  color: #DB2777;
}

/* Title */
.job-title {
  font-weight: 600;
  margin: 6px 0;
}

.job-meta {
  gap: 16px;
  font-size: 13px;
  margin-bottom: 12px;
}

.job-excerpt {
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Apply Button */
.job-apply-btn {
  display: inline-block;
  background: #1A73E8;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease;
}
.job-apply-btn {
  margin-left: auto;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}

.job-apply-btn:hover {
  background: #155ec8;
}

/* =====================================================
   LOAD MORE
===================================================== */

#load-more {
  display: block;
  margin: 30px auto;
  padding: 12px 24px;
  border-radius: 8px;
  background: #1A73E8;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}

#load-more:hover {
  background: #155ec8;
}

/* =====================================================
   MOBILE DRAWER SYSTEM
===================================================== */

.job-mobile-toggle {
  display: none;
  padding: 10px 18px;
  background: #1A73E8;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.job-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.job-overlay.active {
  opacity: 1;
  visibility: visible;
}

.job-close {
  display: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

  .job-wrapper {
    flex-direction: column;
  }

  .job-mobile-toggle {
    display: inline-block;
  }

  .job-filters {
    position: fixed;
    top: 80px;
    left: -100%;
    height: 100vh;
    width: 320px;
    background: #fff;
    z-index: 1001;
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    border-radius: 0;
    padding: 70px 20px 20px;
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  }

  .job-filters.open {
    left: 0;
  }

  .job-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F3F4F6;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

/* Sticky Filters - Desktop */
@media (min-width: 992px) {
  .job-filters {
    position: sticky;
    top: 120px; /* adjust based on your header height */
  }
}

.job-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}/* End custom CSS */