/**
 * Top Farmer News Widgets - Frontend Styles
 */

/* Recent News Widget */
.topfarmer-recent-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topfarmer-recent-news-item {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.topfarmer-recent-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.topfarmer-recent-news-item.has-thumbnail {
    display: flex;
    align-items: flex-start;
}

.topfarmer-recent-news-thumbnail {
    margin-right: 15px;
    flex: 0 0 80px;
}

.topfarmer-recent-news-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.topfarmer-recent-news-content {
    flex: 1;
}

.topfarmer-recent-news-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3em;
    line-height: 1.4;
}

.topfarmer-recent-news-date {
    font-size: 0.85em;
    color: #777;
    font-style: italic;
}

/* Categories Widget */
.topfarmer-news-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topfarmer-news-categories li {
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #f0f0f0;
}

.topfarmer-news-categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.topfarmer-news-categories .children {
    margin-top: 0.5em;
    margin-left: 1em;
    padding-left: 1em;
    border-left: 1px solid #eee;
}

/* Tag Cloud Widget */
.topfarmer-news-tag-cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.topfarmer-news-tag-cloud .tag-cloud-link {
    display: inline-block;
    padding: 0.3em 0.8em;
    margin: 0 0.3em 0.3em 0;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 0.9em !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.topfarmer-news-tag-cloud .tag-cloud-link:hover {
    background: #e0e0e0;
    color: #000;
}

/* Dropdown Styles */
.topfarmer-news-widgets-dropdown {
    width: 100%;
    max-width: 100%;
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .topfarmer-recent-news-thumbnail {
        flex: 0 0 60px;
    }
    
    .topfarmer-news-tag-cloud .tagcloud {
        justify-content: center;
    }
}
