/**
 * Host Ratings — Frontend section styles (structural only)
 * Visual polish handled in a separate design pass.
 *
 * @package jk-fap-core
 */

.jk-host-ratings {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-color, #e0e0e0);
}

.jk-host-ratings__heading {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
	font-weight: 700;
}

.jk-host-ratings__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.jk-host-ratings__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	min-width: 80px;
}

.jk-host-ratings__name {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary, #666);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.jk-host-ratings__score {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	color: var(--brand-1, #e74c3c);
}

.jk-host-ratings__denom {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-secondary, #999);
}

/* ──────────────────────────────────────────────
   DARK MODE
────────────────────────────────────────────── */

html.dark-mode .jk-host-ratings {
	border-top-color: var(--border-color-dark, #333);
}

html.dark-mode .jk-host-ratings__name {
	color: var(--text-secondary-dark, #aaa);
}

html.dark-mode .jk-host-ratings__denom {
	color: var(--text-secondary-dark, #aaa);
}
