/* Supervised Articles Styles */
.supervised-articles {
    margin: 30px 0;
}

.supervised-articles-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.supervised-articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.supervised-article-item {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.supervised-article-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    overflow: hidden;
}

.article-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.supervised-article-item:hover .article-thumb-img {
    transform: scale(1.05);
}

.no-thumbnail {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.article-content {
    flex: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-content h4 {
    margin-top: 20px;
}

.article-title a {
    color: #333;
    text-decoration: none;
}

.article-title a:hover {
    color: #007cba;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.article-date {
    color: #666;
}

.article-categories {
    display: flex;
    gap: 6px;
}

.article-category {
    background: #007cba;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-top: auto;
}

.status-badge {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
}

.status-draft {
    background: #ffc107;
    color: #856404;
}

.status-private {
    background: #6c757d;
    color: white;
}

@media (max-width: 768px) {
    .supervised-article-item {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .article-content {
        padding: 0 16px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}