/* SmartPub Public Styling */
.smartpub-ad-container {
    margin: 20px 0;
    text-align: center;
    position: relative;
    max-width: 100%;
}

.smartpub-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.smartpub-ad-link:hover .smartpub-img {
    transform: scale(1.02);
}

/* Responsive Images */
.smartpub-desktop-only {
    display: block;
}
.smartpub-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .smartpub-desktop-only {
        display: none;
    }
    .smartpub-mobile-only {
        display: block;
    }
}

.smartpub-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.smartpub-header-main {
    display: flex;
    align-items: center;
}

.smartpub-header-bar {
    width: 4px;
    height: 24px;
    display: inline-block;
    margin-right: 12px;
    border-radius: 2px;
}

.smartpub-header-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.smartpub-more-btn {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
