/* ads-manager.css - HartiLidar Ad Styling */

.ads-wrapper {
    position: relative;
    margin: 2rem auto;
    width: 100%;
    max-width: 1200px;
    clear: both;
    overflow: hidden;
    text-align: center;
}

.ads-wrapper--in-content {
    margin: 3rem 0;
    max-width: 800px;
    /* Aligns with reading width */
}

.ads-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 600;
}

.ads-placeholder {
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Glassmorphism variant for premium pages */
.ads-wrapper--glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ads-wrapper {
        margin: 1.5rem 0;
    }
}