
.jobSection-item:hover .jobSection-item-botom a.link svg{ 
  transform: translateY(-50%) scaleX(-1);
}
.jobSection-item{
  position:relative;
}
.job-fake-link a,
.job-fake-link {
  opacity:0;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  z-index:3;
}
/* Individual Filter Group Styles */
.jobSection-filter-group {
  position: relative; /* Needed for absolute positioning of dropdowns */
  margin-bottom: 0px; /* Space between different filter dropdowns */
  background-color: transparent; /* Matches your image background */
  border-bottom: 1px solid #1A18181A; /* Subtle bottom border */
  padding-bottom: 0px; /* Space above the border */
}

/* Style for the 'Department' text and arrow */
.jobSection-filter-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0; /* Vertical padding, no horizontal */
  font-size: 16px;
  cursor: pointer; /* Indicates it's clickable */
  user-select: none; /* Prevents text selection on double click */
  
  color: #1A1818;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 21.6px */
}
.jobSection-noitems {
  text-align:center;
}
.jobSection-filters > div{
  width:calc(50% - 10px);
}
.jobSection-filters {
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  max-width:520px;
  margin:0px auto 60px;
}
@media (max-width:991px){
  .jobSection-filters {
    margin-bottom:40px;
  }
}
/* Dropdown arrow styling */
.jobSection-filter-label .dropdown-arrow {
/*   width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #888; /* Downward pointing arrow */ */
  transition: transform 0.2s ease-in-out;
}

/* Rotate arrow when dropdown is open (you'd add a class to .jobSection-filter-group when open) */
/* .jobSection-filter-group.open .dropdown-arrow {
  transform: rotate(180deg);
} */

/* Wrapper for the actual options (initially hidden) */
.jobSection-filter-options-wrapper {
  display: none; /* Hidden by default */
  /* You would use JavaScript to toggle this display: block; or display: flex; */
  position: absolute; /* Position relative to .jobSection-filter-group */
  top: 100%; /* Below the label */
  left: 0;
  right: 0;
  background-color: #fff; /* White background for options */
  border: 1px solid #fefefe;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 10; /* Ensure it appears above other content */
  padding: 0px 0;
}

/* Style for individual filter options within the dropdown */
.jobSection-filter-option {
  padding: 8px 15px;
  font-family: sans-serif;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.jobSection-filter-group svg {
  transform:rotate(0deg);
  transition:0.3s ease all;
}
.jobSection-filter-group.open svg {
  transform:rotate(180deg);
}
.jobSection-filter-option:hover {
  background-color: #fafafa; /* Light highlight on hover */
}

.jobSection-filter-option.selected {
  font-weight: bold;
}
.jobSection-items {
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}
.jobSection-items{
  border-top: 1px solid rgba(26, 24, 24, 0.10);
}
  
.jobSection-item {
  gap:30px;
  row-gap:8px;
  padding:32px 0px;
  border-bottom: 1px solid rgba(26, 24, 24, 0.10);
  display:flex;
  justify-content:space-between;
}
.jobSection-item-department {
  color: rgba(26, 24, 24, 0.80);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 11px */
  text-transform: uppercase;
  margin-bottom:8px;
}
.jobSection-item-location {
  color: rgba(26, 24, 24, 0.80);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 21.6px */
}
.jobSection-item-botom {
  max-width:361px;
  width:100%;
  display:flex;
  gap:24px;
  justify-content:space-between;
  align-items:center;
}
@media (max-width:767px){
  .jobSection-item-location {
    font-size:14px;
  }
  .jobSection-item-title > h5 {
    font-size:22px;
  }
  .jobSection-items{
    border-top: none;
  }
  .jobSection-item > div > *,
  .jobSection-item > div,
  .jobSection-item {
    width:100%;
    flex-wrap:wrap;
  }
}