.job-slider {
  width: 100%;
  background-color: #E7ECEE;
}

.metiers-component {
  padding: 90px 20px;
  border-radius: 10px;
  text-align: center;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.metiers-component h2 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.metiers-component p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.metiers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.metier-item {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;         
  overflow: hidden;
}
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  display: inline-block;
}

.metier-item {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;         
  overflow: hidden;            
  text-overflow: ellipsis;     
  max-width: 300px;            
  display: inline-block;       
}

.metier-item:hover {
  background-color: #f2f2f2;
}

.metier-link {
  text-decoration: none;
}

/* === SLIDER (fixe, sans animation) === */
.slider-container-c {
  width: 100%;
  overflow: visible;
}

.slider-track {
  display: block; /* Pas de flex, pas de mouvement */
  width: 100%;
  transition: none;
  transform: none !important;
}

.slide {
  width: 100%;
  display: block;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #333;
}
