/**handles:bluebeechild-custom-post-template**/
/* Post Template Masonry Layout Styles */
.wp-block-post-template{
    &.is-style-masonry-layout {
        .wp-block-post{
            grid-column-end: span 1 !important; /* Reset rule from parent theme */
        }

        @media screen and (min-width: 768px) {
            .wp-block-post:nth-child(6n + 1),
            .wp-block-post:nth-child(6n + 6){
                grid-column-end: span 2 !important;
            }
        }
    }
}