/**
 * Estilos para o widget e shortcode de posts mais vistos
 *
 * @package LineHostCloud
 * @since 2.0.7
 */

/* Estilos para o shortcode de posts mais vistos */
.lhc-most-viewed-posts {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lhc-most-viewed-title {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: 1px solid #e1e1e1;
    color: #333;
}

.widget_lhc_most_viewed_widget h1,
.widget_lhc_most_viewed_widget h2,
.widget_lhc_most_viewed_widget h3 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: 1px solid #e1e1e1;
    color: #333;
}


.lhc-most-viewed-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lhc-most-viewed-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.lhc-most-viewed-item:last-child {
    border-bottom: none;
}

.lhc-most-viewed-thumbnail {
    flex: 0 0 70px;
    margin-right: 15px;
}

.lhc-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.lhc-most-viewed-content {
    flex: 1;
}

.lhc-most-viewed-link {
    color: #292969;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.2s;
}

.lhc-most-viewed-link:hover {
    color: #00a0d2;
}

.lhc-most-viewed-count {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.85em;
    color: #777;
}

.lhc-most-viewed-empty,
.lhc-most-viewed-error {
    padding: 10px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Estilos responsivos */
@media (max-width: 480px) {

    .lhc-most-viewed-thumbnail {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        max-width: 120px;
    }
}

/* Estilos específicos para o widget */
.widget_lhc_most_viewed_widget .lhc-most-viewed-posts {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.widget_lhc_most_viewed_widget .lhc-most-viewed-item {
    padding: 8px 0;
}

.widget_lhc_most_viewed_widget .lhc-most-viewed-thumbnail {
    flex: 0 0 96px;
    margin-right: 10px;
}

.widget_lhc_most_viewed_widget .lhc-most-viewed-link {
    font-size: 0.95em;
}

.widget_lhc_most_viewed_widget .lhc-most-viewed-count {
    font-size: 0.8em;
    display: block;
    margin-left: 0;
    margin-top: 3px;
}