/* Стили для блока AI-комментариев */
.aipc-comments-section {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.aipc-comments-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    border-bottom: 2px solid #eeeeee;
    padding-bottom: 10px;
    color: #333;
}

.aipc-comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aipc-comment {
    display: flex;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.aipc-comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.aipc-avatar {
    margin-right: 15px;
    flex-shrink: 0;
}

.aipc-avatar img {
    border-radius: 50%;
}

.aipc-comment-body {
    flex-grow: 1;
}

.aipc-author-name {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #111;
    font-size: 16px;
}

.aipc-comment-text {
    margin: 0;
    line-height: 1.6;
    color: #444;
}