Hello @aspide,
If you want to disable the event section and only want the news section to appear you can use the CSS .
For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.
.home-section-news-and-events .news-post:nth-child(2n+1) {
clear: none;
}
.home-section-news-and-events .news-post {
width: 33%;
}
.home-section-news-and-events .recent-news {
width: 100%;
}
.home-section-news-and-events .recent-events {
display: none;
}
Hope this helps.
Best regards!!