
.job-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-evenly;
}
.job-card {
  background: #f5f5f5;
  padding: 20px;
  border-left: 5px solid color(1);
  width: calc(50% - 40px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.job-card h3 {
  color: color(1);
}
.job-card .btn {
  font-family: Montserrat Alternates;
  background-color: #204788;
  border-radius: 20px;
  padding-left: 50px;
  padding-right: 50px;
  font-weight: 500;
  font-size: 22px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  color:white !important;
}
.job-card .btn:hover {
 transform: scale(0.9);
}
.job-popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.job-popup-content {
  background: #fff;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  position: relative;
  border-radius: 8px;
  max-height: 80vh; /* Limite la hauteur de la popup */
  overflow-y: auto;  /* Active le scroll si le contenu dépasse */
}
.close-popup {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}
@media(max-width:1300px){
  .job-card {
    width: 100%;
}
}