.mnr-reactions-wrap {
	margin-top: 24px;
	margin-bottom: 10px;
	padding-top: 16px;
	border-top: 1px solid #e5e5e5;
}

.mnr-reactions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: flex-end;
}

.mnr-reaction-item {
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 48px;
	transition: transform 0.15s ease;
}

.mnr-reaction-item:hover {
	transform: translateY(-2px);
}

.mnr-reaction-item.is-selected .mnr-emoji {
	box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.18);
	transform: scale(1.06);
}

.mnr-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 26px;
	padding: 0 8px;
	border-radius: 6px;
	background: #f1f1f1;
	color: #333;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
}

.mnr-emoji {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 32px;
	line-height: 1;
	border-radius: 50%;
	transition: all 0.15s ease;
}

.mnr-reactions.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

@media (max-width: 768px) {
	.mnr-reactions {
		gap: 10px;
	}

	.mnr-reaction-item {
		min-width: 42px;
	}

	.mnr-count {
		min-width: 30px;
		height: 24px;
		font-size: 14px;
	}

	.mnr-emoji {
		width: 40px;
		height: 40px;
		font-size: 28px;
	}
}
