/* Content reactions: like, love, fire */
.ckc-reaction-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	margin-top: 4px;
}

/* Home / mobile feed: meta (venue · age) left, reactions right */
.ckc-home-story-footer,
.ckc-mobile-story-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	margin: 6px 0 0 0;
}

.ckc-home-story-footer .ckc-home-story-meta,
.ckc-mobile-story-footer .ckc-mobile-news-meta {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
}

.ckc-home-story-footer .ckc-reaction-bar,
.ckc-mobile-story-footer .ckc-reaction-bar {
	margin-top: 0;
	flex: 0 0 auto;
}

.ckc-reaction-btn {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: #f3f4f6;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 3px 6px;
	min-height: 22px;
	min-width: 22px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}

.ckc-reaction-btn:hover {
	background: #e5e7eb;
	border-color: #9ca3af;
}

.ckc-reaction-btn:focus {
	outline: 1px solid #3b82f6;
	outline-offset: 1px;
}

.ckc-reaction-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.ckc-reaction-btn--active {
	background: #dbeafe;
	border-color: #3b82f6;
	font-weight: 600;
}

.ckc-reaction-btn--active:hover {
	background: #bfdbfe;
}

.ckc-reaction-emoji {
	font-size: 10px;
	line-height: 1;
}

.ckc-reaction-count {
	font-size: 8px;
	color: #374151;
	font-weight: 500;
}

.ckc-reaction-btn--active .ckc-reaction-count {
	color: #1e40af;
}

.ckc-reaction-bar--readonly {
	gap: 0;
}

.ckc-reaction-summary {
	font-size: 10px;
	color: #65676b;
}

.ckc-reaction-error {
	color: #dc2626;
	font-size: 6px;
	margin-left: 2px;
}

/* Mobile shell: reaction chips ~20% smaller than default */
.ckc-mobile-body .ckc-reaction-bar {
	gap: 3px;
}

.ckc-mobile-body .ckc-reaction-btn {
	border-radius: 6px;
	padding: 2px 5px;
	min-height: 18px;
	min-width: 18px;
}

.ckc-mobile-body .ckc-reaction-emoji {
	font-size: 8px;
}

.ckc-mobile-body .ckc-reaction-count {
	font-size: 6px;
}

.ckc-mobile-body .ckc-reaction-summary {
	font-size: 8px;
}

.ckc-mobile-body .ckc-reaction-error {
	font-size: 5px;
}

/* Mobile feed: no focus ring (tap leaves :focus; shell button styles excluded in mobile/style.css) */
.ckc-mobile-body .ckc-reaction-btn:focus,
.ckc-mobile-body .ckc-reaction-btn:focus-visible {
	outline: none;
}
