/* Styly pro Nejčtenější články */
.nejctenejsi-container {
    margin-bottom: 20px;
}

.nejctenejsi-title {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    border-bottom: 2px solid #2271b1;
    padding-bottom: 5px;
}

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

.nejctenejsi-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.nejctenejsi-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nejctenejsi-thumbnail {
    flex-shrink: 0;
}

.nejctenejsi-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.nejctenejsi-image:hover {
    transform: scale(1.05);
}

.nejctenejsi-content {
    flex-grow: 1;
    min-width: 0;
}

.nejctenejsi-post-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.3;
}

.nejctenejsi-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nejctenejsi-post-title a:hover {
    color: #2271b1;
}

.nejctenejsi-meta {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.nejctenejsi-category,
.nejctenejsi-author {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nejctenejsi-category:hover,
.nejctenejsi-author:hover {
    color: #2271b1;
}

.nejctenejsi-separator {
    margin: 0 5px;
    opacity: 0.5;
}

.nejctenejsi-date,
.nejctenejsi-views {
    color: #888;
}

.nejctenejsi-excerpt {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.nejctenejsi-no-posts {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    color: #666;
}

.nejctenejsi-no-posts p {
    margin: 0;
}

/* Responzivní design */
@media (max-width: 480px) {
    .nejctenejsi-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nejctenejsi-thumbnail {
        margin-bottom: 10px;
    }
    
    .nejctenejsi-meta {
        text-align: center;
    }
}
