Hi !! This one works for me (with contextual typography plugin) :
.img-grid .el-embed-image p{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
grid-template-rows: masonry;
align-items: stretch;
column-gap: 1rem;
justify-content: stretch;
align-content: stretch;
justify-items: stretch;
margin-bottom: -0.8rem;
}
.img-grid .el-embed-image p br{
display: none;
}
.img-grid img {
object-fit: cover;
height: 200px; /* The height you want */
width: 100%;
}