Hum I found a dirty solution, problems comes from this css:
.entry-content p {
margin-bottom: 1.6em;
}
So I added this:
.disable-margin-bot {
margin-bottom: 0 !important;
}
and applied the disable-margin-bot class to the text elements.
Definitely not a clean solution, if someone has a better idea I’d love it!