/**
 * Frontend Advertisement Styles
 */

/* Ad Unit Container */
.theme-ad-unit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.theme-ad-unit+.theme-ad-unit {
    margin-top: 10px;
}

/* Image Ads */
.theme-ad-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.theme-ad-unit a {
    display: block;
    text-decoration: none;
}

.theme-ad-unit a:hover .theme-ad-image {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-ad-unit {
        padding: 5px 0;
    }

    .theme-ad-image {
        max-width: 100%;
    }
}

/* Google Ads and Custom Code adjustments */
.theme-ad-unit ins,
.theme-ad-unit iframe {
    display: block !important;
    margin: 0 auto;
}