/* ===== MOST VIEWED POSTS WIDGET ===== */

.blocksy-most-viewed-posts {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blocksy-most-viewed-title {
    font-size: 18px;
    font-weight: 600;
    color: #fbb042;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.blocksy-most-viewed-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blocksy-most-viewed-item {
    margin: 0 0 15px 0;
    padding: 0;
}

.blocksy-most-viewed-item:last-child {
    margin-bottom: 0;
}

.blocksy-most-viewed-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    padding: 8px;
    border-radius: 4px;
}

.blocksy-most-viewed-link:hover {
    color: #fbb042;
    background-color: #f9f9f9;
}

.blocksy-most-viewed-number {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.blocksy-most-viewed-number.first {
    background-color: #fbb042;
    color: #fff;
}

.blocksy-most-viewed-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .blocksy-most-viewed-posts {
        padding: 15px;
    }
    
    .blocksy-most-viewed-title {
        font-size: 16px;
    }
    
    .blocksy-most-viewed-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .blocksy-most-viewed-text {
        font-size: 13px;
    }
}

