/* 썸네일 리스트 위젯 스타일 */
.na-thumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumb-list-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.thumb-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.thumb-list-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.thumb-list-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 20px;
}

.thumb-list-info {
    flex: 1;
    min-width: 0;
}

.thumb-list-title {
    margin-bottom: 8px;
}

.thumb-subject {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.thumb-subject:hover {
    color: #007bff;
    text-decoration: none;
}

.thumb-list-comment {
    display: inline-block;
    margin-left: 8px;
}

.thumb-list-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #6c757d;
}

.thumb-list-date {
    color: #6c757d;
}

.thumb-list-board {
    color: #8B4513;
    font-weight: 500;
}

/* 댓글 수 스타일 */
.count-plus {
    background: #ff6b6b;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

/* 아이콘 스타일 */
.na-icon {
    margin-right: 4px;
}

.na-icon.na-new {
    color: #28a745;
}

.na-icon.na-secret {
    color: #dc3545;
}

.rank-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    font-weight: bold;
    margin-right: 4px;
}

.bg-red { background: #dc3545; }
.bg-green { background: #28a745; }
.bg-blue { background: #007bff; }
.bg-orange { background: #fd7e14; }
.bg-purple { background: #6f42c1; }

/* 반응형 */
@media (max-width: 768px) {
    .thumb-list-thumb {
        width: 60px;
        height: 45px;
    }
    
    .thumb-list-content {
        gap: 10px;
    }
    
    .thumb-list-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}






