/* Bouton */
.hec-flex-button {
  display: inline-flex;
  align-items: center;
  gap: 14px; /* espace texte / icône */
  text-decoration: none;
  background: #951a52;
  color: #fff;
  border-radius: 50px;
  padding: 4px 4px 4px 12px; /* padding plus généreux */
  transition: all 0.3s ease;
  font-weight: 700;
}

/* Texte */
.hec-flex-button-text {
  display: inline-block;
  white-space: nowrap;
}

/* Conteneur de l'icône */
.hec-flex-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 37px; /* Taille du cercle */
  height: 37px;
  flex-shrink: 0;
}

/* Icône */
.hec-flex-button-icon svg {
  width: 55%; /* taille interne */
  height: 55%;
  display: block;
  fill: #951a52;
}

/* Animation flèche au hover */
.hec-flex-button:hover .hec-flex-button-icon svg {
  transform: translateX(3px);
  transition: transform 0.25s ease;
}

.hec-flex-button .hec-flex-button-icon svg {
  transition: transform 0.25s ease;
}