#career-banner {
  height: 100vh;
  background: url('../img/career/Career-Hero.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  border-bottom: 4px solid var(--primary);
}

#openroles{
  background-color: #F8F8FA;
}
#openroles .search-tab{
  background-color: #fff;
  border-radius: 24px;
  padding: 2rem 1rem;
}
input, select{
  border: 1px solid #C2C2C3;
  border-radius: 8px;
  width: 23vw;
  padding: 10px 20px;
  margin: 0;
  background: var(--white);
}

.job-card{
  background-color: var(--white);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
}
.job-card h2{
  font-size: 1rem;
}
.job-card .job-tags span{
  background-color: #F5F5F5;
  padding: 5px 10px;
  font-size: 12px;
  opacity: 70%;
  border-radius: 22px;
}
.job-card p{
  font-size: 1rem;
  opacity: 70%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bxs-briefcase{
  background: #F5F5F5;
  padding: 0.5rem;
  border-radius: 50%;
}
/* Load More button spacing */
#loadMoreJobs {
  margin-top: 1rem;
}

/* Fade-in animation for job cards when they appear */
/* .job-card.fade-in {
  animation: fadeInUp 0.3s ease forwards;
} */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:680px){
  input, select{
  width: 20rem;
  }
}