section.img-snippet {
    --maxHeight: unset;
}

section.img-snippet .img {
    position: relative;
    display: block;
}

section.img-snippet .img img {
    max-height: var(--maxHeight);
}

section.img-snippet.withBack .img:after {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.05);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
section.img-snippet.withBack .img {
    border-radius: var(--box-radius);
    overflow: hidden;
}
