Hi there.
try this:
1. Select the Container Block and in Advanced > Additional CSS Class(es) add: linked-container
2. Inside the Container select one block eg. Headline and add your link to that.
3. Add this CSS:
.gb-container.linked-container .gb-inside-container {
position: relative;
}
.gb-container.linked-container a:before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
}
This will extend the ‘clickable zone’ of the link to the size of the container it sits within.