How to change line spacing for a Text box

the line spacing on the right side , below Leselounge, is to high. wanted to change it! any ideas?

Hello @Caldelu !
Hope you are doing well.

Please add the below CSS in your base.css theme file at the bottom to reduce the line spacing:

@media screen and (min-width: 750px){
.footer-block__details-content {
    line-height: 1 !important;
}
}

Hope this will help you out.