/**
 * Popular RSS Shortcode - Egyszerű lista stílusok
 */

.popular-rss-widget {
    font-family: "Inter", Sans-serif;
}

.popular-rss-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #00000091;
    padding-bottom: 8px;
}

.popular-rss-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-rss-item {
    background: #fff;
    border-radius: 6px;
    padding: 12px 15px;
    transition: box-shadow 0.2s ease;
}

.popular-rss-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popular-rss-source {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.popular-rss-link {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.popular-rss-link a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-rss-link a:hover {
    color: #007cba;
    text-decoration: underline;
}

.popular-rss-empty {
    text-align: center;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .popular-rss-widget {
        padding: 15px;
        margin: 15px 0;
    }
    
    .popular-rss-title {
        font-size: 16px;
    }
    
    .popular-rss-link {
        font-size: 13px;
    }
    
    .popular-rss-item {
        padding: 10px 12px;
    }
}

/* Sidebar widget stílus (ha sidebar-ban használják) */
.widget .popular-rss-widget {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.widget .popular-rss-title {
    border-bottom: 2px solid #007cba;
    margin-bottom: 12px;
}