/* Squash.Pics Auto-Resize CSS for ideal image display */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Ensure images in WordPress content scale properly */
.entry-content img,
.wp-block-image img,
.widget_media_image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive images for smaller screens */
@media only screen and (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
}