<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*.desktopMobileAd iframe img {*/
/*    max-width: 100% !important;*/
/*}*/

@media screen and (min-width: 800px) and (max-width: 1036px) {
    .wrapper-grid {
        display: grid;
        grid-gap: 4px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        place-items: start;
    }
    .box {
        position: relative;
        width: 100%;
        overflow: hidden;
        min-width: 200px;
    }
    .full-wide {
        grid-column: span 4;
    }
    .triple-wide {
        grid-column: span 3;
    }

    .ad.box:not(.full-wide) {
        aspect-ratio: 9 / 16;
    }

    .double-wide {
        grid-column: span 2;
    }
}

@media screen and (min-width: 1037px) and (max-width: 1289px) {
    .wrapper-grid {
        display: grid;
        grid-gap: 4px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        place-items: start;
    }
    .box {
        position: relative;
        width: 100%;
        overflow: hidden;
        min-width: 250px;
    }
    .full-wide {
        grid-column: span 4;
    }
    .ad.box:not(.full-wide) {
        aspect-ratio: 9 / 16;
    }
}</pre></body></html>