/* Add custom CSS styles below */ 
.grid-banners a:nth-child(3) {
    grid-area: inherit !important;
}

.grid-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    grid-template-areas:
        "item1 item2"
        "item4 item5";
}