#ContentComments {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-meta {
    font-size: 0.9em;
    color: #555;
    display: flex;
    gap: 8px;
    align-items: center;
}

.comment-author {
    font-weight: bold;
}

.comment-role {
    background: #e0d7ff;
    color: #8000ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
}

.comment-date {
    color: #999;
    font-size: 0.85em;
}

.comment-text {
    margin-top: 6px;
    font-size: 1em;
    color: #222;
}

.comment-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
    cursor: pointer;
}

.comment-actions span:hover {
    color: #000;
}