/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 09 2025 | 17:26:37 */
/* ====== CONTENEUR DES OFFRES ====== */
.jobs-listing, 
.job-list-wrapper, 
#main-content, 
.wljp-jobs-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr); /* 2 cartes par ligne */
  gap: 25px; /* espacement entre les cartes */
  justify-content: center;
  margin-top: 30px;
  width: 100% !important;
  max-width: none !important; /* supprime toute limite */
  padding: 0 20px; /* marges internes */
  box-sizing: border-box;
}

/* ====== STYLE DES CARTES ====== */
.job.type-job {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  padding: 22px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job.type-job:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ====== TITRE ====== */
.job.type-job h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.job.type-job h2 a {
  color: #0b2545;
  text-decoration: none;
}

.job.type-job h2 a:hover {
  color: #215387;
}

/* ====== META DATA ====== */
.wljp-job-meta-data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #555;
  font-size: 0.9rem;
}

.wljp-job-meta-data i {
  color: #215387;
}

.wljp-job-meta-data a {
  color: #215387;
  font-weight: 500;
}

.wljp-job-meta-data a:hover {
  text-decoration: underline;
}

/* ====== DATE ====== */
.wljp-job-skills-posted-date {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ====== DESCRIPTION ====== */
.job.type-job p {
  margin-top: 10px;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
}

/* ====== BOUTON POSTULER ====== */
.job.type-job .apply-btn {
  display: inline-block;
  background-color: #215387;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.job.type-job .apply-btn:hover {
  background-color: #183c6c;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .jobs-listing, 
  .job-list-wrapper, 
  #main-content, 
  .wljp-jobs-list {
    grid-template-columns: 1fr; /* 1 carte par ligne */
  }
}
