/**
 * Plugin Rubrash - Widget Styles
 * Styles for newsletter, ad banners, and promotional widgets
 */

/* Newsletter Widget */
.rubrash-newsletter-widget {
    border: 1px solid #e9ecef;
    padding: 16px;
    background: #C1443E;
    border-radius: 4px;
}

.rubrash-newsletter-title {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    text-align: left;
}

.rubrash-newsletter-text {
    text-align: left;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.rubrash-newsletter-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 12px 8px;
    margin-top: 16px;
    color: #C1443E;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rubrash-newsletter-link:hover {
    background-color: #f0f0f0;
    text-decoration: none;
    transform: translateY(-2px);
}

.rubrash-newsletter-link i {
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .rubrash-newsletter-widget {
        padding: 12px;
    }

    .rubrash-newsletter-text {
        font-size: 0.95rem;
    }

    .rubrash-newsletter-link {
        padding: 10px 6px;
        font-size: 0.95rem;
        margin-top: 12px;
    }
}
