.banner_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.banner-img__wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}