/**
 * Styles pour le template Recrutement
 */

:root {
  --ada-navy: #003366;
  --ada-blue: #3B46FF;
  --ada-green: #27ae60;
  --bg-page: #fcfcfd;
  --border-luxe: rgba(0, 0, 0, 0.05);
}


/* En-tête avec dots décoratifs */


/* Carte principale "dossier" */
.folder-card {
  background: white;
  border-radius: 40px;
  border: 1px solid var(--border-luxe);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* Sidebar */
.folder-sidebar {
  background: #f8fafc;
  padding: 40px;
  border-right: 1px solid #edf2f7;
  width: 300px;
  flex-shrink: 0;
}

.meta-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Contenu principal */
.folder-main {
  flex: 1;
  padding: 40px;
  min-width: 350px;
}

.recrutement-title {
  color: var(--ada-navy);
  font-size: 1.75rem;
  line-height: 1.4;
}

.recrutement-description {
  text-align: justify;
  line-height: 1.8;
  color: #64748b;
}

/* Pills de documents */
.doc-pill {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.doc-pill:hover {
  border-color: var(--ada-blue);
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(59, 70, 255, 0.05);
}

.doc-pill.doc-locked {
  cursor: not-allowed;
  opacity: 0.6;
}

.doc-pill.doc-locked:hover {
  transform: none;
  border-color: #e2e8f0;
  box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
  .folder-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #edf2f7;
  }
  
  .folder-main {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .folder-card {
    border-radius: 20px;
  }
  
  .folder-sidebar,
  .folder-main {
    padding: 25px;
  }
  
  .text-faithful {
    font-size: 1.75rem;
  }
  
  .recrutement-title {
    font-size: 1.5rem;
  }
}