Equal Summary Item height in Squarespace

To make Summary item height equal, like this.

#1. First, find Summary Block ID

#2. Next, use code like this to Custom CSS.

#block-yui_3_17_2_1_1760925899666_14891 {
    @media screen and (min-width:768px) {
.summary-item-list {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin: 0 !important; 
}
.summary-item {
    flex: 1;
    background-color: #ececec;
    padding: 10px;
    padding-bottom: 30px !important;
    margin: 0 !important;
}}}