:root {
  --h-design-section-max-width: 1360px;
  --h-equipe-title-color: #000000; /* Ajout d'une valeur par défaut */
}

.home_design {
  display: flex;
  width: 100%;
  justify-content: center;
  background: #FFFFFF;
}

.home_design_sz {
  display: flex;
  width: calc(100% - 20px);
  max-width: var(--h-design-section-max-width);
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* Remplace certaines marges */
}

.home_design_title {
  color: var(--h-equipe-title-color);
  font-family: 'Industry_Black', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  position: relative;
  padding-top: 20px;
  text-align: center;
  margin: 0; /* Reset marge par défaut */
}

.home_design_title::before {
  background-color: #A1C854;
  border-radius: 2px;
  content: '';
  height: 4px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 50px;
}

.home_design_texte {
  color: #4A5568;
  font-family: 'Noto_Regular', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 1100px;
  margin: 0; /* Reset marge par défaut */
  padding: 0 20px; /* Padding latéral pour mobile */
}

.home_design_liste {
  display: flex;
  width: 100%;
  max-width: 1280px;
  justify-content: center;
  gap: 30px; /* Espacement moderne */
  flex-wrap: wrap; /* Responsive naturel */
  margin-top: 0; /* Remplacé par gap */
}

.home_design_liste_i {
  width: min(200px, 90vw); /* Adaptation mobile */
  height: 223px;
  background: #FCE6C4 0% 0% no-repeat padding-box;
  border-radius: 0px 100px 100px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Meilleur centrage vertical */
}

.home_design_liste_i_img_c {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.home_design_liste_i_img_c img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain; /* Évite la déformation */
}

.home_design_liste_i_txt_c {
  color: #004D33;
  font-family: 'Noto_Bold', sans-serif;
  font-size: 16px;
  font-weight: 700; /* Correction cohérence bold */
  line-height: 1.125;
  text-align: center;
  margin-top: 20px;
  padding: 0 10px;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
  .home_design_sz {
    padding: 80px 0;
  }

  .home_design_liste {
    gap: 20px;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .home_design_sz {
    padding: 60px 0;
    gap: 30px;
  }

  .home_design_title {
    font-size: 32px;
    padding-top: 15px;
  }

  .home_design_title::before {
    width: 40px;
    height: 3px;
  }

  .home_design_texte {
    font-size: 18px;
    padding: 0 15px;
  }

  .home_design_liste_i {
    height: 200px;
    border-radius: 0 80px 80px 80px;
  }

  .home_design_liste_i_img_c img {
    height: 45px;
  }
}

/* Petit Mobile */
@media (max-width: 480px) {
  .home_design_sz {
    padding: 40px 0;
    gap: 25px;
  }

  .home_design_title {
    font-size: 28px;
  }

  .home_design_texte {
    font-size: 18px;
  }

  .home_design_liste {
    flex-direction: column;
    align-items: center;
  }

  .home_design_liste_i {
    width: 85%;
    height: 180px;
  }
}
