/* Image visibility follows viewport width in CSS pixels. */
@media screen and (width < 768px) {
    img.show-desktop { display: none !important; }
}
@media screen and (width >= 768px) {
    img.show-mobile { display: none !important; }
}
