﻿/**
 * AdSense Compliant Layout & Safety Guard
 * 1. Policy Compliant: Standard, transparent rendering (no hidden/opacity tricks).
 * 2. Zero-CLS Protection: Pre-allocated bounding box prevents layout shifts.
 * 3. Safe Margins: Ample breathing room to prevent accidental clicks.
 * 4. Clear Attribution: High-contrast "إعلان" label clearly distinguishes ad from content.
 * 5. Full AdChoices Visibility: Overflow visible prevents clipping Google badge & controls.
 */

.ads-safe-zone {
    display: block;
    box-sizing: border-box !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 32px auto;
    padding: 16px 12px 14px;
    text-align: center;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    min-height: 120px;
    overflow: visible;
    clear: both;
}

/* Active State: Fully rendered */
.ads-safe-zone.is-active {
    display: block;
}

/* Unfilled State: If AdSense returns no inventory, cleanly remove container */
.ads-safe-zone.is-unfilled,
.ads-safe-zone:has(ins[data-ad-status="unfilled"]) {
    display: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.ads-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Tajawal', sans-serif, system-ui;
    line-height: 1;
    user-select: none;
}

.adsbygoogle {
    display: block;
    margin: 0 auto;
    background: transparent;
    overflow: visible !important;
    box-sizing: border-box !important;
    max-width: 100%;
}

@media (max-width: 768px) {
    .ads-safe-zone {
        margin: 24px auto;
        padding: 12px 8px 10px;
        min-height: 90px;
        border-radius: 8px;
    }
    
    .ads-title {
        font-size: 10px;
        margin-bottom: 6px;
    }
}