.ce-gallery .ce-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ce-gallery .ce-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;

    width: 146%;
    margin-left: -23%;
}

.ce-gallery .ce-column {
    width: auto;
    padding: 0;
    margin: 0;
}

.ce-gallery .ce-column img {
    width:100%;
    aspect-ratio: 4 / 3;
    object-fit:cover;
    display:block;
}

@media (max-width: 900px) {
    .ce-gallery .ce-row {
        grid-template-columns: repeat(2,1fr);
        width:100%;
        margin-left:0;
    }
}

@media (max-width: 600px) {
    .ce-gallery .ce-row {
        grid-template-columns: 1fr;
    }
}