That’s great. Thanks.
In the meantime I added this one to my functions.php (not live site). Is it okay to call from kleo_before_main?:
COPY CODE
add_action('kleo_before_main','distillery_switch_layout',10);
function distillery_switch_layout() {
if (is_search()){
kleo_switch_layout('full');
}
}