/**
 * WPCM Post Views — Frontend Styles
 *
 * @package WPCM_Post_Views
 */

/* =========================================================================
   Exibição inline no conteúdo
   ========================================================================= */

.wpcm-post-views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 16px 0;
    padding: 6px 14px;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
    background: #f5f5f5;
    border-radius: 4px;
}

.wpcm-post-views::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zm0 12.5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    flex-shrink: 0;
}

/* =========================================================================
   Shortcode
   ========================================================================= */

.wpcm-views-shortcode {
    font-weight: 600;
}

/* =========================================================================
   Widget
   ========================================================================= */

.wpcm-popular-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wpcm-popular-posts-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.wpcm-popular-posts-list li:last-child {
    border-bottom: none;
}

.wpcm-popular-posts-list .wpcm-widget-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
}

.wpcm-popular-posts-list .wpcm-widget-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wpcm-popular-posts-list .wpcm-widget-title {
    flex: 1;
    font-size: 14px;
    line-height: 1.3;
    color: inherit;
    text-decoration: none;
}

.wpcm-popular-posts-list .wpcm-widget-title:hover {
    text-decoration: underline;
}

.wpcm-popular-posts-list .wpcm-widget-views {
    width: 100%;
    font-size: 11px;
    color: #888;
}

.wpcm-no-posts {
    font-size: 13px;
    color: #888;
    font-style: italic;
}
