<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Aspect Ratio CSS Snippet for iFrames
*/

[style*="--aspect-ratio"] &gt; :first-child {
        width: 100%;
    }
    [style*="--aspect-ratio"] &gt; img {  
        height: auto;
    } 
    @supports (--custom:property) {
        [style*="--aspect-ratio"] {
            position: relative;
        }
        [style*="--aspect-ratio"]::before {
            content: "";
            display: block;
            padding-bottom: calc(100% / (var(--aspect-ratio)));
        }  
        [style*="--aspect-ratio"] &gt; :first-child {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
        }  
    }    </pre></body></html>