/* Newsam — Reactions */

.nr-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 20px 24px;
	margin: 24px 0;
	gap: 16px;
}

/* Label */
.nr-label {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: 600;
	color: #4a4f6a;
	line-height: 1.3;
	flex-shrink: 0;
}

/* Emoji row */
.nr-emojis {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* Individual button */
.nr-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
	padding: 0;
	transition: transform .15s ease;
	color: inherit !important;
}

.nr-btn:hover,
.nr-btn:focus,
.nr-btn:active {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: inherit !important;
	transform: scale( 1.12 );
	outline: none;
}

/* Circle background */
.nr-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #f0f0f5;
	transition: background .2s ease, transform .15s ease;
}

.nr-emoji {
	font-size: 26px;
	line-height: 1;
}

/* Count */
.nr-count {
	font-size: 12px;
	font-weight: 600;
	color: #888;
	min-width: 16px;
	text-align: center;
}

/* Active / selected state */
.nr-btn.nr-active .nr-circle {
	background: #e8eaf6;
	transform: scale( 1.1 );
}

.nr-btn.nr-active .nr-count {
	color: #3949ab;
}

/* Loading state */
.nr-loading .nr-btn {
	pointer-events: none;
	opacity: 0.7;
}

/* Mobile */
@media ( max-width: 560px ) {
	.nr-wrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.nr-emojis {
		gap: 8px;
	}

	.nr-circle {
		width: 44px;
		height: 44px;
	}

	.nr-emoji {
		font-size: 22px;
	}
}
