/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
*/

.v0-brands-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2em;
}
.v0-brand-item {
    width: auto;
}
.v0-brand-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.v0-grid-image {
    display: block;
    width: 250px !important;
    height: 250px !important;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 767px) {
    .v0-brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .v0-grid-image {
        width: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 420px) {
    .v0-grid-image {
        width: 160px !important;
        height: 160px !important;
    }
}