/* ============================================
   ЕДИНЫЙ КОМПОНЕНТ: КНОПКИ ДЕЙСТВИЙ КОММЕНТАРИЕВ
   Используется: topic.php, news-item.php, guide.php, team.php, trade-item.php
   ============================================ */

/* ---------- КОНТЕЙНЕР КНОПОК ---------- */
.comment__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 15px;
  border-top: 1px solid var(--color-border-light);
}

/* ---------- БАЗОВАЯ КНОПКА ---------- */
.comment__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.comment__action:hover {
  background: rgba(102, 126, 234, 0.1);
  color: var(--color-primary-start);
}

/* ---------- ИКОНКА ---------- */
.comment__action-icon {
  font-size: 0.9rem;
}

/* ---------- ТЕКСТ ---------- */
.comment__action-text {
  font-size: 0.8rem;
}

/* ---------- ЛАЙК ---------- */
.comment__action--like.active,
.comment__action--like:hover {
  color: #ff4757;
}

.comment__action--like.active i {
  font-weight: 900;
}

/* ---------- УДАЛЕНИЕ ---------- */
.comment__action--delete:hover {
  color: #ff4757;
}

/* ---------- ЖАЛОБА ---------- */
.comment__action--report {
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.comment__action--report:hover {
  background: rgba(255, 71, 87, 0.15);
  border-color: #ff4757;
}

.comment__action--report.reported {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- АДАПТАЦИЯ ---------- */
@media (max-width: 576px) {
  .comment__action-text {
    display: none;
  }

  .comment__action--like .comment__action-text {
    display: block;
  }

  .comment__action {
    gap: 4px;
  }

  .comment__actions {
    gap: 5px;
  }
}