/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 02 2026 | 17:30:53 */
/* Force browsers to reserve space using HTML width/height */
img[width][height] {
    max-width: 100% !important;
    height: auto !important;
    /* This creates the 'skeleton' before the image loads */
    aspect-ratio: attr(width) / attr(height) !important;
}

/* Fallback for older browsers */
@supports not (aspect-ratio: attr(width)) {
    img[width][height] {
        aspect-ratio: auto;
    }
}