/* FORCE container centering */
.seplat-gallery-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* responsive grid */
.seplat-grid-gallery {
    width: 100%;
    max-width: 1200px;        /* center box size */
    margin: 0 auto !important; /* force centering */
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-gap: 25px !important;       /* SPACING fix */
    padding: 20px 10px;
    box-sizing: border-box;
}

/* gallery items */
.seplat-grid-gallery .seplat-item {
    display: block;
}

.seplat-grid-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
