/**
 * Frontend CSS for SME Ads
 */

/* Advertisement container - Full width, breaks out of parent */
.sme-advertisement {
    width: 100%;
    position: relative;
    text-align: center;
    clear: both;
    overflow: hidden;
    display: block;
    grid-column: 1 / -1;
}

/* Advertisement link */
.sme-ad-link {
    display: inline-block;
    text-decoration: none;
    border: none;
    line-height: 0;
}

.sme-ad-link:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* Advertisement image */
.sme-ad-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .sme-advertisement {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

