.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.product-card-v2 .product-logo {
    height: 170px;
    min-height: 170px;
    max-height: 170px;
    overflow: hidden;
}

.product-card-v2 .product-logo img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 150px !important;
    object-fit: contain !important;
}

.product-gallery.has-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-gallery figure {
    min-height: 260px;
    margin: 0;
    padding: 1.5rem;
    display: grid;
    place-items: center;
    border: 1px solid #e4e7ec;
    border-radius: 18px;
    background: #fff;
}

.product-gallery img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
}

@media (max-width: 575px) {
    .product-gallery.has-two {
        grid-template-columns: 1fr;
    }
}
