/* Post Views & Meta Styles */

.mn-post-views {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #7f8c8d;
    font-weight: 500;
}

.mn-post-views .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.entry-meta .mn-post-views {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #ddd;
}

/* Popular Posts Widget */
.mn-popular-posts-widget {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.mn-popular-posts-widget h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: #2c3e50;
}

.mn-popular-post-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.mn-popular-post-item:last-child {
    border-bottom: none;
}

.mn-popular-post-thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.mn-popular-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mn-popular-post-info {
    flex: 1;
}

.mn-popular-post-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mn-popular-post-title a {
    color: #2c3e50;
    text-decoration: none;
}

.mn-popular-post-title a:hover {
    color: #3498db;
}

.mn-popular-post-meta {
    font-size: 0.8rem;
    color: #7f8c8d;
}