/* Replaces former SLIR resize URLs with CSS object-fit */
.img-h180 {
    display: block;
    height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.img-150 {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.img-150-cover {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.img-100 {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.img-w350 {
    display: block;
    width: 350px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.img-testimonial-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
