.programsGrid {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    gap: 2.32em;
    width: 100%;
    justify-content: center;
    flex-direction: column;
	position: relative;
	margin-top: 5em;
}

.programsGrid svg {
    position: absolute;
    top: -2.5em;
    left: 19.5em;
}

.eachProgram > .overImage {
    position: relative;
    padding-bottom: 88.2%;
    overflow: hidden;
}
.eachProgram > .overImage img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s all ease-in-out;
}

.eachProgram > .overImage:hover img {
    transform: scale(1.2);
}

.eachProgram  .block-editor-block-list__block.overImage figure .components-resizable-box__container {
    position: relative;
    overflow: hidden;
    width: 100% !important;
    min-height: 17em !important;
}

.eachProgram .block-editor-block-list__block.overImage .wp-block-group__inner-container figure img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s all ease-in-out;
}

.eachProgram  .block-editor-block-list__block.overImage figure {
    display: block;
    width: 100%;
}

.eachProgram  .block-editor-block-list__block.overImage figure .components-resizable-box__container:hover img {
    transform: scale(1.2);
}

@media only screen and (min-width: 960px) {
    .programsGrid {
      flex-direction: row;
    }
  
    /* .eachProgram {
      width: 33.33333333333333%;
    } */
}
  