.editor-styles-wrapper .pressburst-grid-row,
.block-editor-block-list__layout .pressburst-grid-row,
.edit-post-visual-editor .pressburst-grid-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 20px !important;
}

.editor-styles-wrapper .pressburst-gallery,
.block-editor-block-list__layout .pressburst-gallery,
.edit-post-visual-editor .pressburst-gallery {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.editor-styles-wrapper .pressburst-gallery a,
.block-editor-block-list__layout .pressburst-gallery a,
.edit-post-visual-editor .pressburst-gallery a {
    width: 150px !important;
    height: 150px !important;
    display: inline-block !important;
    overflow: hidden !important;
}

.editor-styles-wrapper .pressburst-gallery img,
.block-editor-block-list__layout .pressburst-gallery img,
.edit-post-visual-editor .pressburst-gallery img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.editor-styles-wrapper .pressburst-grid-row > a {
	flex: 0 0 25% !important;
}

.editor-styles-wrapper .pressburst-grid-row > a img {
	width: 100% !important;
	height: auto !important;
	display: block !important;
	transition: .25s ease-in-out !important;
}

.editor-styles-wrapper .pressburst-grid-row > a:hover > img {
	opacity: .75 !important;
}

@media only screen and (max-width: 62em) {

	.editor-styles-wrapper .pressburst-grid-row {
		grid-template-columns: repeat(3, 1fr) !important;
	}

}

@media only screen and (max-width: 48em) {

	.editor-styles-wrapper .pressburst-grid-row {
		grid-template-columns: repeat(2, 1fr) !important;
	}

}