/**
 * Summit legacy visual language applied to every honeycomb instance (grid cells + popup).
 * Matches theme shortcode: Satoshi, landscape hex clip, Summit red accents.
 * Does not override .summit-honeycomb-block / .hex (summit_speakers) nor .ig-hex (interlocking).
 */

.honeycomb-root--summit-skin {
	font-family: 'Satoshi-Variable', 'Satoshi', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--hc-accent: #e20033;
	--hc-hex-size: clamp(96px, 12vw, 132px);
}

.honeycomb-root--summit-skin .honeycomb-empty-msg {
	font-family: inherit;
}

/* Default / grid templates: landscape hex parity with summit-honeycomb.css .hex */
.honeycomb-root--summit-skin .honeycomb-cell__inner {
	width: var(--hc-hex-size);
}

.honeycomb-root--summit-skin .honeycomb-cell__hex {
	width: var(--hc-hex-size);
	height: auto;
	aspect-ratio: 1.15;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: linear-gradient(155deg, #1f2937, #111827);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.honeycomb-root--summit-skin .honeycomb-cell:focus-visible {
	outline-color: var(--hc-accent);
}

.honeycomb-root--summit-skin .honeycomb-cell:hover {
	filter: brightness(1.06);
}

.honeycomb-root--summit-skin .honeycomb-cell__label {
	color: #f8fafc;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.25;
}

.honeycomb-root--summit-skin .honeycomb-cell__placeholder {
	color: rgba(248, 250, 252, 0.55);
}

.honeycomb-root--summit-skin .honeycomb-cell--featured .honeycomb-cell__hex {
	width: calc(var(--hc-hex-size) * 1.32);
	aspect-ratio: 1.15;
}

.honeycomb-root--summit-skin .honeycomb-cell--featured .honeycomb-cell__label {
	font-weight: 700;
	font-size: 0.92rem;
}

/* Popup: Summit accent */
.honeycomb-root--summit-skin .honeycomb-popup__link-wrap a {
	color: var(--hc-accent);
}

.honeycomb-template-compact_hierarchy.honeycomb-root--summit-skin {
	--hc-hex-size: 84px;
}

@media (max-width: 600px) {
	.honeycomb-root--summit-skin {
		--hc-hex-size: clamp(88px, 24vw, 110px);
	}

	.honeycomb-template-compact_hierarchy.honeycomb-root--summit-skin {
		--hc-hex-size: 76px;
	}
}
