/* Ad container with max dimensions 336x300 */
    .advertisement {
        max-width: 336px;
        max-height: 600px;
        margin: 0 auto;
        overflow: hidden;
    }
    
    /* Make ad fully responsive within constraints */
    .advertisement ins.adsbygoogle {
        width: 100%;
        height: auto;
        min-height: 300px;
        display: block;
    }
    
    /* Optional: Center the ad */
    .ad-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
			background: white;
    }