/* Applique la transition à tous les boutons */
button,
.button,
.wp-block-button a {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

/* Animation "grow" au survol */
button:hover,
.button:hover,
.wp-block-button a:hover,
.AnimateOnHover:hover {
	transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optionnel : petit effet d’ombre */
}