.what-we-do-image {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.what-we-do-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Four household task images */
#dishwasher picture,
#beer picture,
#clothes picture,
#helping picture {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

#dishwasher img,
#beer img,
#clothes img,
#helping img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Reduce excessive spacing between the two image rows */
#dishwasher,
#beer,
#clothes,
#helping {
    margin-bottom: 24px;
}


/* On phones, preserve more of the original image */
@media (max-width: 767px) {
    #dishwasher picture,
    #beer picture,
    #clothes picture,
    #helping picture {
        aspect-ratio: 16 / 10;
    }

    .what-we-do-image {
        max-width: 380px;
    }
}
