/* ============================================================
   ОСНОВНЫЕ СТИЛИ КОММЕНТАРИЕВ
============================================================ */

.comment {
    background: #f8f9fa;
    border-radius: 6px;
    transition: background .3s ease;
}

.comment.deleted [itemprop="text"] {
    color: #777;
    font-style: italic;
}

.comment.deleted .cmt-btn {
    display: none;
}

/* Подсветка комментария при переходе */
.highlight {
    background: #fff3cd !important;
    transition: background 1.5s ease;
}

/* ============================================================
   ДЕРЕВО КОММЕНТАРИЕВ
============================================================ */

.children {
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
    transition: max-height .35s ease, opacity .35s ease;
}

.children.collapsed {
    max-height: 0;
    opacity: 0;
}

.toggle-children {
    cursor: pointer;
    margin-right: 6px;
    font-size: 14px;
    user-select: none;
    color: #666;
}

.toggle-children.empty {
    visibility: hidden;
}

/* ============================================================
   КНОПКИ И ИНСТРУМЕНТЫ КОММЕНТАРИЕВ
============================================================ */

.comment-tools {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.cmt-btn {
    cursor: pointer;
    font-size: 18px;
    opacity: .7;
    transition: .15s ease;
    user-select: none;
}

.cmt-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ============================================================
   ОБЛАСТЬ КОММЕНТАРИЕВ
============================================================ */

.comments-section {
    max-height: 400px;
    overflow-y: auto;
}

/* ============================================================
   ЭМОДЗИ-ПАНЕЛИ
============================================================ */

.emoji-panel,
.emoji-panel-reply {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.emoji-btn {
    background: #ffffff;
    border: 1px solid #ddd;
    font-size: 22px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.emoji-btn:hover {
    transform: scale(1.25);
    filter: brightness(1.2);
    background: #f1f1f1;
}

/* ============================================================
   МОДАЛКИ
============================================================ */

#editCommentModal textarea,
#replyCommentModal textarea {
    resize: vertical;
}

/* ============================================================
   ПРОЧЕЕ
============================================================ */

.note-content img {
    max-width: 100%;
    height: auto;
}
.reaction-btn.active {
    opacity: 1;
    transform: scale(1.25);
    font-weight: bold;
}
.article-rating-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

