.featured-job-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: flex-start;
}

.featured-job-cards-card {
  width: 24%;
  border-radius: 10px;
  position: relative;
}

.featured-job-cards-card-front {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 285px;
  padding: 25px;
  border-radius: 10px;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #D6DDEB;
}


{# <--- Card Front ---> #}

.featured-job-cards-card-front-type{
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

.featured-job-cards-card-front-type span{
  text-align: end;
  color: #7843FF;
  border: 1px solid #7843FF;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 5px;
  height: fit-content;
}

.featured-job-cards-card-front-type{
  color: #7843FF;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 100%;
}

.featured-job-cards-card-front-job-name{
  color: #1B005F;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  padding-bottom: 5px;
}

.featured-job-cards-card-front-meta{
  color: #515B6F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  padding-bottom: 20px;
}

.featured-job-cards-card-front-description{
  color: #7C8493;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  padding-bottom: 20px;
}

.featured-job-cards-card-front-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.featured-job-cards-card-front-apply-button a{
  color: #1B005F;
  text-decoration: none;
  background-color: rgba(120, 67, 255, 0.21);
  padding: 10px 15px;
  border-radius: 50px;
}

{# <--- Card Front End ---> #}

{# <--- Card Back ---> #}

.featured-job-cards-card-back {
  display: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 285px;
  padding: 25px;
  border-radius: 10px;
  justify-content: space-between;
  background-color: #6832F1;
  border: 1px solid #1B005F;
  position: absolute;
  left: 0;
  top: 0;
}

.featured-job-cards-card-back-type{
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

.featured-job-cards-card-back-type span {
  color: #fff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  padding: 5px 10px;
  height: fit-content;111
}

.featured-job-cards-card-back-job-name{
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  padding-bottom: 5px;
}
.featured-job-cards-card-back-description{
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  padding-bottom: 20px;
}

.featured-job-cards-card-back-apply-button a{
  color: #1B005F;
  text-decoration: none;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
}
.featured-job-cards-card-back-apply-button a:hover{
  color: #1B005F;
}

.featured-job-cards-see-more-espace {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.featured-job-cards-see-more {
  background-color: #7843FF;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.featured-job-cards-see-more:hover{
  background-color: #1B005F;
  text-decoration: none;
  color: #fff;
}
.featured-job-cards-card-back-icon path{
  fill: #fff !important;
}
.featured-job-cards-card-front-icon img, .featured-job-cards-card-back-icon img{
  width: 50px;
  height: 50px;
}

{# <--- End Card Back ---> #}

@media (max-width:920px){
  .featured-job-cards-container{
    flex-direction: column;
  }
  .featured-job-cards-card{
    width: 100%;
  }
}