.wp-block-post-template{
    &.is-style-directory-layout {
        grid-auto-flow: dense;
        place-items: stretch;

        .wp-block-post{
            height: 100%;

            &.listing-type-free{
                grid-column-end: span 1;
                grid-row-end: span 1;

                > .wp-block-group{
                    background-color: var(--wp--preset--color--white) !important;
                }
            }

            &.listing-type-simple {
                grid-column-end: span 1;
                grid-row-end: span 1;

                > .wp-block-group{
                    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
                }
            }

            &.listing-type-simple-video{
                grid-column-end: span 2;
                grid-row-end: span 1;

                @media (max-width: 600px) {
                    grid-column-end: span 1;
                }

                > .wp-block-group{
                    box-shadow: rgba(238, 48, 43, 0.4) 0px 2px 8px 0px;
                }
            }

            > .wp-block-group{
                height: 100%;
            }
        }


    }
}