.ms-product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.ms-product-gallery__item {
    border-radius: 8px;
    overflow: hidden;
}

.ms-product-gallery__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
