/* Start custom CSS for html, class: .elementor-element-9ebd8f5 */.metiers-bulles {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-sizing: border-box;
}

.metiers-bulles h1 {
  font-size: 3.1rem;
  color: #136f41;
  margin-bottom: 0.5rem;
}

.metiers-bulles .intro {
  max-width: 780px;
  margin: 0 auto 1.8rem;
  color: #333;
  font-size: 2rem;
}

/* ✅ Aligne les bulles côte à côte */
.bulle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

/* 🫧 Style des bulles */
.bulle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
  text-align: center;
  overflow: hidden;
}

.bulle:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  background: #f0fdf4;
}

.bulle .icone {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.bulle:hover .icone {
  transform: scale(1.15) rotate(4deg);
}

/* 📝 Liste des métiers */
.metiers-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.metiers-list .metier {
  display: block;
  font-size: 1.1rem !important; /* 💥 forcé */
  color: #136f41 !important;    /* 💥 forcé */
  line-height: 1.3 !important;
  padding: 0 6px;
  text-align: center;
  word-break: break-word;
  font-weight: 600 !important;  /* 💥 un peu plus épais */
}

/* 🪄 Responsive */
@media (min-width: 992px) {
  .bulle { width: 220px; height: 220px; }
  .metiers-list .metier { font-size: 1.2rem !important; }
  .bulle .icone { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .bulle { width: 180px; height: 180px; }
  .metiers-list .metier { font-size: 1rem !important; }
  .bulle .icone { font-size: 2.4rem; }
}

@media (max-width: 520px) {
  .bulle { width: 150px; height: 150px; }
  .metiers-list .metier { font-size: 0.95rem !important; }
  .bulle .icone { font-size: 2.2rem; }
  .bulle-container { gap: 0.9rem; }
}/* End custom CSS */