.shops_grid {
    display: grid;
    gap: 30px;
}

.shop_card {
    display: flex;
    flex-direction: column;
    background-color: var(--b-c--VLgrey);
}

.shop_card .shop_info {
    padding: 30px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop_card img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.shop_card .ttl_sub {
    text-transform: uppercase;
}

.shop_card a {
    color: var(--b-c--DLgrey);
    text-decoration: underline;
}

.shop_card a:hover {
    text-decoration: none;
}

@media (min-width: 765px) {
    .shops_grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop_card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}