.hnc-matchup {
	margin: 1.5rem 0;
}

.hnc-title {
	margin-bottom: 1.2rem;
	text-align: center;
}

.hnc-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem;
}

.hnc-card {
	border: 1px solid var(--global-border-color, #d9d9d9);
	border-radius: var(--global-border-radius, 12px);
	background: #fff;
	text-align: left;
	box-shadow: 0 14px 30px rgba(18, 43, 70, 0.06);
	overflow: hidden;
}

.hnc-image-wrap {
	position: relative;
}

.hnc-image {
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.hnc-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 320px;
	padding: 1rem;
	text-align: center;
	background: linear-gradient(145deg, #2f1414 0%, #5a1d1d 46%, #7b2525 100%);
	color: #fff;
}

.hnc-image-placeholder-text {
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.9;
}

.hnc-card-badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-theme-primary, #e32232);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hnc-card-body {
	padding: 1.05rem 1rem 1rem;
}

.hnc-card-head {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	align-items: flex-start;
}

.hnc-card-kicker {
	margin: 0 0 0.3rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-theme-primary, #e32232);
}

.hnc-name {
	margin: 0;
	font-size: 1.3rem;
}

.hnc-card-tagline {
	margin: 0.4rem 0 0;
	color: #7a6860;
	font-size: 0.95rem;
	line-height: 1.5;
}

.hnc-vote-pill {
	min-width: 86px;
	padding: 0.7rem 0.8rem;
	border-radius: 14px;
	background: linear-gradient(180deg, #fff4f3 0%, #fff 100%);
	border: 1px solid rgba(227, 34, 50, 0.12);
	text-align: center;
}

.hnc-vote-pill-value {
	display: block;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1;
	color: #b91c1c;
}

.hnc-vote-pill-label {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #7a6860;
}

.hnc-member-link-row,
.hnc-card-copy {
	margin: 0.8rem 0 0;
	color: var(--global-font-color, #555);
	line-height: 1.6;
}

.hnc-card-detail-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 0.85rem;
}

.hnc-card-detail-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.72rem;
	border-radius: 999px;
	background: #fff7f3;
	border: 1px solid rgba(227, 34, 50, 0.12);
	font-size: 0.82rem;
	font-weight: 600;
	color: #8a4a41;
}

.hnc-member-link-row {
	font-size: 0.92rem;
}

.hnc-member-link-row a {
	font-weight: 600;
}

.hnc-card-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	margin-top: 1rem;
}

.hnc-hot-button {
	background: #e32232;
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.65rem 1.1rem;
	cursor: pointer;
	font-weight: 600;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(227, 34, 50, 0.2);
}

.hnc-hot-button:hover,
.hnc-hot-button:focus {
	background: #c51f1f;
}

.hnc-view-link {
	font-weight: 600;
	text-decoration: none;
}

.hnc-hot-button.is-disabled,
.hnc-hot-button:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.hnc-vote-count {
	margin-top: 0.85rem;
	font-weight: 500;
}

.hnc-feedback {
	margin-top: 0.5rem;
	min-height: 1.25rem;
	font-size: 0.9rem;
	color: #147a2e;
}

.hnc-feedback.hnc-feedback-error {
	color: #b42318;
}

@media (max-width: 768px) {
	.hnc-grid {
		grid-template-columns: 1fr;
	}

	.hnc-image {
		height: 280px;
	}

	.hnc-image-placeholder {
		height: 280px;
	}

	.hnc-card-head,
	.hnc-card-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hnc-vote-pill {
		width: 100%;
	}
}

.hnc-bp-panel {
	--hnc-surface: linear-gradient(180deg, var(--color-theme-white-box, #fffaf5) 0%, #fff 100%);
	--hnc-accent: var(--color-theme-primary, #e32232);
	--hnc-accent-dark: #b91c1c;
	--hnc-border: var(--global-border-color, #eadfd5);
	--hnc-muted: var(--global-font-color, #6b625d);
	--hnc-heading: var(--color-h2, #241714);
	margin: 1.5rem 0;
	color: var(--hnc-heading);
}

.hnc-bp-hero {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	border: 1px solid var(--hnc-border);
	border-radius: var(--global-border-radius, 20px);
	background: radial-gradient(circle at top left, #fff1e6 0, #fffaf5 38%, #fff 100%);
	box-shadow: 0 18px 40px rgba(36, 23, 20, 0.08);
	margin-bottom: 1.25rem;
}

.hnc-bp-eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hnc-accent-dark);
}

.hnc-bp-title {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 1.05;
}

.hnc-bp-intro {
	max-width: 52rem;
	margin: 0.75rem 0 0;
	color: var(--hnc-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.hnc-bp-status-pill {
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	white-space: nowrap;
	background: #f4ede8;
	color: #4f382f;
	border: 1px solid rgba(79, 56, 47, 0.12);
}

.hnc-bp-status-publish {
	background: #ecfdf3;
	color: #027a48;
	border-color: rgba(2, 122, 72, 0.18);
}

.hnc-bp-status-pending,
.hnc-bp-status-draft {
	background: #fff4e5;
	color: #b54708;
	border-color: rgba(181, 71, 8, 0.18);
}

.hnc-bp-layout {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 1.25rem;
	align-items: start;
}

.hnc-bp-layout > * {
	min-width: 0;
}

.hnc-bp-summary-card,
.hnc-bp-rating-card,
.hnc-bp-form-card,
.hnc-bp-help-card,
.hnc-bp-empty-state {
	padding: 1.25rem;
	border-radius: var(--global-border-radius, 18px);
	background: var(--hnc-surface);
	border: 1px solid var(--hnc-border);
	box-shadow: 0 14px 34px rgba(36, 23, 20, 0.05);
}

.hnc-bp-status-message {
	margin: 0 0 1rem;
	padding: 0.95rem 1.1rem;
	border: 1px solid var(--hnc-border);
	border-radius: var(--global-border-radius, 14px);
	background: #fffaf2;
}

.hnc-bp-status-message p {
	margin: 0;
	color: var(--hnc-muted);
	line-height: 1.6;
}

.hnc-bp-status-message-publish {
	background: #effcf4;
	border-color: rgba(2, 122, 72, 0.18);
}

.hnc-bp-status-message-pending,
.hnc-bp-status-message-draft {
	background: #fff7ed;
	border-color: rgba(181, 71, 8, 0.18);
}

.hnc-bp-summary-card,
.hnc-bp-form-card {
	margin-bottom: 1.1rem;
}

.hnc-bp-summary-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

.hnc-bp-summary-card > * {
	min-width: 0;
}

.hnc-bp-thumb-wrap {
	position: relative;
	overflow: hidden;
	border-radius: var(--global-border-radius, 16px);
	background: #f6ebe4;
	align-self: start;
}

.hnc-bp-thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: linear-gradient(180deg, #fff3ed 0%, #fffaf7 100%);
	border: 1px dashed rgba(185, 28, 28, 0.18);
}

.hnc-bp-placeholder-inner {
	text-align: center;
	max-width: 17rem;
	color: var(--hnc-muted);
	line-height: 1.6;
}

.hnc-bp-placeholder-kicker {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--hnc-accent-dark);
}

.hnc-bp-thumb-image {
	display: block;
	width: 100%;
	height: auto;
}

.hnc-bp-copy {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hnc-bp-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--hnc-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hnc-bp-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.hnc-bp-stat {
	padding: 0.95rem;
	border-radius: var(--global-border-radius, 14px);
	background: #fff;
	border: 1px solid rgba(226, 34, 50, 0.09);
}

.hnc-bp-stat-value {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1;
	color: var(--hnc-accent-dark);
}

.hnc-bp-stat-label {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.85rem;
	color: var(--hnc-muted);
}

.hnc-bp-bio,
.hnc-bp-rating-card p,
.hnc-bp-help-card p,
.hnc-bp-help-list,
.hnc-bp-empty-copy,
.hnc-bp-empty-state p {
	color: var(--hnc-muted);
	line-height: 1.65;
}

.hnc-bp-link-row {
	margin: 0;
	font-weight: 600;
}

.hnc-bp-tagline {
	margin: -0.35rem 0 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--hnc-muted);
}

.hnc-bp-detail-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.hnc-bp-detail-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.48rem 0.82rem;
	border-radius: 999px;
	background: #fff7f1;
	border: 1px solid rgba(226, 34, 50, 0.1);
	font-size: 0.85rem;
	font-weight: 600;
	color: #8a4a41;
}

.hnc-bp-current-image {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0.8rem;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: var(--global-border-radius, 14px);
	background: #fff;
}

.hnc-bp-current-image-thumb img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--global-border-radius, 12px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hnc-bp-current-image-copy strong {
	display: block;
	margin-bottom: 0.2rem;
}

.hnc-bp-current-image-copy p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--hnc-muted);
	line-height: 1.55;
}

.hnc-bp-form label {
	display: inline-block;
	margin-bottom: 0.4rem;
	font-weight: 700;
}

.hnc-bp-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.hnc-bp-form input[type="text"],
.hnc-bp-form textarea,
.hnc-bp-form input[type="file"] {
	width: 100%;
	padding: 0.85rem 0.95rem;
	border-radius: 14px;
	border: 1px solid #d9c6ba;
	background: #fff;
	box-sizing: border-box;
}

.hnc-bp-form input[type="file"] {
	padding: 0.65rem 0.75rem;
	background: #fff8f3;
}

.hnc-bp-field-help {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--hnc-muted);
}

.hnc-bp-form input[type="text"]:focus,
.hnc-bp-form textarea:focus,
.hnc-bp-form input[type="file"]:focus {
	outline: 2px solid rgba(227, 34, 50, 0.14);
	border-color: rgba(227, 34, 50, 0.45);
}

.hnc-bp-submit.button.button-primary {
	width: 100%;
	min-height: 46px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--hnc-accent) 0%, #ff6b57 100%);
	box-shadow: 0 14px 28px rgba(227, 34, 50, 0.24);
	font-weight: 700;
	text-transform: none;
}

.hnc-bp-help-card h4,
.hnc-bp-rating-card h3,
.hnc-bp-form-card h3,
.hnc-bp-empty-state h3 {
	margin-top: 0;
	margin-bottom: 0.65rem;
}

.hnc-bp-help-list {
	margin: 0;
	padding-left: 1.15rem;
}

.hnc-bp-help-list li + li {
	margin-top: 0.45rem;
}

.hnc-bp-owner-empty-state {
	margin-bottom: 1.1rem;
	background: linear-gradient(180deg, #fff6ef 0%, #fff 100%);
}

.hnc-bp-rating-card .hon-voting-component {
	margin-top: 0.85rem;
}

@media (max-width: 960px) {
	.hnc-bp-layout,
	.hnc-bp-summary-card {
		grid-template-columns: 1fr;
	}

	.hnc-bp-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	.hnc-bp-hero {
		flex-direction: column;
	}

	.hnc-bp-status-pill {
		white-space: normal;
	}

	.hnc-bp-stats {
		grid-template-columns: 1fr;
	}

	.hnc-bp-current-image {
		grid-template-columns: 1fr;
	}

	.hnc-bp-field-grid {
		grid-template-columns: 1fr;
	}

	.hnc-bp-current-image-thumb img {
		width: 100%;
		height: auto;
		max-width: 140px;
	}
}
/* ============================================================
   Widget: Leaderboard
   ============================================================ */
.hnc-widget-leaderboard-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hnc-widget-leaderboard-item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--global-border-color, #eee);
}

.hnc-widget-leaderboard-item:last-child {
	border-bottom: 0;
}

.hnc-widget-rank {
	min-width: 1.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--color-theme-primary, #e32232);
	text-align: center;
}

.hnc-widget-leaderboard-thumb {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.hnc-widget-leaderboard-name {
	flex: 1;
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	color: inherit;
}

.hnc-widget-leaderboard-name:hover {
	color: var(--color-theme-primary, #e32232);
}

.hnc-widget-leaderboard-votes {
	font-size: 0.78rem;
	font-weight: 600;
	color: #7a6860;
	white-space: nowrap;
}

/* ============================================================
   Widget: Matchup
   ============================================================ */
.hnc-widget-matchup-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.hnc-card--widget {
	font-size: 0.9rem;
}

.hnc-image--widget {
	height: 160px;
}

.hnc-name--widget {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
}

.hnc-hot-button--sm {
	padding: 0.45rem 0.85rem;
	font-size: 0.85rem;
}

/* ============================================================
   Widget: My Stats
   ============================================================ */
.hnc-widget-my-stats {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.hnc-widget-my-stats-thumb {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 0.35rem;
}

.hnc-widget-my-stats-name {
	margin: 0;
	font-weight: 700;
	font-size: 1rem;
}

.hnc-widget-my-stats-votes {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--color-theme-primary, #e32232);
}

.hnc-widget-my-stats-rank {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #7a6860;
}

.hnc-widget-my-stats-pending {
	margin: 0;
	font-size: 0.82rem;
	color: #b54708;
	font-weight: 600;
}

/* ============================================================
   Submit form (shortcode)
   ============================================================ */
.hnc-submit-form-wrap {
	margin: 1.5rem 0;
}

.hnc-submit-title {
	margin-bottom: 1rem;
}

.hnc-submit-intro {
	margin: 0 0 1rem;
	color: var(--global-font-color, #555);
	line-height: 1.6;
}

.hnc-submit-form p {
	margin-bottom: 0.85rem;
}

.hnc-submit-form label {
	display: block;
	margin-bottom: 0.3rem;
	font-weight: 600;
	font-size: 0.9rem;
}

.hnc-submit-help,
.hnc-submit-note {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.85rem;
	line-height: 1.5;
	color: #7a6860;
}

.hnc-submit-form input[type="text"],
.hnc-submit-form textarea {
	width: 100%;
	padding: 0.55rem 0.75rem;
	border: 1px solid var(--global-border-color, #d9d9d9);
	border-radius: var(--global-border-radius, 8px);
	font-size: 0.95rem;
	box-sizing: border-box;
}

.hnc-submit-form input[type="file"] {
	width: 100%;
	padding: 0.45rem 0.55rem;
	border: 1px solid var(--global-border-color, #d9d9d9);
	border-radius: var(--global-border-radius, 8px);
	font-size: 0.9rem;
	box-sizing: border-box;
	background: #fff;
}

.hnc-submit-button {
	background: var(--color-theme-primary, #e32232);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 0.65rem 1.4rem;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.95rem;
}

.hnc-submit-button:hover,
.hnc-submit-button:focus {
	background: #c51f1f;
}

.hnc-submit-button:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.hnc-submit-feedback {
	min-height: 1.25rem;
	font-size: 0.9rem;
	color: #147a2e;
}

.hnc-submit-feedback.hnc-feedback-error {
	color: #b42318;
}

.hnc-notice {
	padding: 0.75rem 1rem;
	border-radius: 8px;
	background: #fff7ed;
	color: #7a4700;
	font-size: 0.92rem;
}