.hermon-homepage,
.hermon-single {
	--hermon-color-ink: #0d1524;
	--hermon-color-ink-soft: #263247;
	--hermon-color-muted: #657084;
	--hermon-color-subtle: #8791a2;
	--hermon-color-bg: #f5f7fb;
	--hermon-color-bg-alt: #eef5f5;
	--hermon-color-surface: #ffffff;
	--hermon-color-surface-soft: #f9fbfd;
	--hermon-color-line: #dce3ec;
	--hermon-color-line-strong: #c7d1de;
	--hermon-color-accent: #0e7c86;
	--hermon-color-accent-dark: #075a63;
	--hermon-color-accent-soft: #dff3f4;
	--hermon-color-warm: #f1b84b;
	--hermon-color-warm-soft: #fff1d2;
	--hermon-color-focus: #124f57;
	--hermon-space-1: 0.25rem;
	--hermon-space-2: 0.5rem;
	--hermon-space-3: 0.75rem;
	--hermon-space-4: 1rem;
	--hermon-space-5: 1.25rem;
	--hermon-space-6: 1.5rem;
	--hermon-space-8: 2rem;
	--hermon-space-10: 2.5rem;
	--hermon-space-12: 3rem;
	--hermon-space-16: 4rem;
	--hermon-space-20: 5rem;
	--hermon-space-24: 6rem;
	--hermon-container: 1320px;
	--hermon-content: 820px;
	--hermon-radius-sm: 6px;
	--hermon-radius: 8px;
	--hermon-radius-lg: 14px;
	--hermon-radius-pill: 999px;
	--hermon-shadow-sm: 0 8px 22px rgba(13, 21, 36, 0.06);
	--hermon-shadow-md: 0 18px 44px rgba(13, 21, 36, 0.09);
	--hermon-shadow-lg: 0 28px 70px rgba(13, 21, 36, 0.14);
	--hermon-font-sans: "Assistant", "Heebo", "Rubik", "Noto Sans Hebrew", Arial, sans-serif;
	--hermon-leading-tight: 1.04;
	--hermon-leading-title: 1.12;
	--hermon-leading-body: 1.72;
	--hermon-transition: 180ms ease;

	background: var(--hermon-color-bg);
	color: var(--hermon-color-ink);
	direction: inherit;
	font-family: var(--hermon-font-sans);
	display: block;
	inline-size: 100%;
	max-inline-size: none;
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

.hermon-homepage *,
.hermon-homepage *::before,
.hermon-homepage *::after,
.hermon-single *,
.hermon-single *::before,
.hermon-single *::after {
	box-sizing: border-box;
}

.hermon-homepage a,
.hermon-single a {
	color: inherit;
}

.hermon-homepage p,
.hermon-homepage h1,
.hermon-homepage h2,
.hermon-homepage h3,
.hermon-homepage h4,
.hermon-single p,
.hermon-single h1,
.hermon-single h2,
.hermon-single h3,
.hermon-single h4 {
	font-family: inherit;
}

.hermon-homepage img,
.hermon-single img {
	max-width: 100%;
	height: auto;
}

.hermon-homepage :focus-visible,
.hermon-single :focus-visible {
	outline: 3px solid rgba(14, 124, 134, 0.34);
	outline-offset: 3px;
}

.hermon-homepage__inner,
.hermon-single__inner {
	width: min(var(--hermon-container), calc(100% - 48px));
	margin-right: auto;
	margin-left: auto;
}

.hermon-lab-nav {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--hermon-color-line);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
}

.hermon-lab-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	gap: var(--hermon-space-6);
}

.hermon-lab-nav__brand,
.hermon-lab-nav__link,
.hermon-lab-nav__topic-link,
.hermon-lab-nav__toggle {
	color: var(--hermon-color-ink) !important;
	font-family: inherit;
	text-decoration: none !important;
}

.hermon-lab-nav__brand {
	font-size: 1rem;
	font-weight: 850;
	letter-spacing: 0;
}

.hermon-lab-nav__toggle {
	display: none;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 800;
	list-style: none;
}

.hermon-lab-nav__toggle::-webkit-details-marker {
	display: none;
}

.hermon-lab-nav__links {
	display: flex;
	align-items: center;
	gap: var(--hermon-space-2);
}

.hermon-lab-nav__link {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 var(--hermon-space-4);
	border-radius: var(--hermon-radius-pill);
	color: var(--hermon-color-ink-soft) !important;
	font-size: 0.92rem;
	font-weight: 760;
	line-height: 1;
	transition: background var(--hermon-transition), color var(--hermon-transition);
}

.hermon-lab-nav__link:hover,
.hermon-lab-nav__link:focus {
	background: var(--hermon-color-accent-soft);
	color: var(--hermon-color-accent-dark) !important;
}

.hermon-lab-nav__dropdown {
	position: relative;
}

.hermon-lab-nav__dropdown-trigger::after {
	margin-inline-start: var(--hermon-space-2);
	content: "▾";
	font-size: 0.74rem;
}

.hermon-lab-nav__dropdown-panel {
	position: absolute;
	top: calc(100% + 8px);
	inset-inline-end: 0;
	z-index: 30;
	display: grid;
	min-width: 250px;
	padding: var(--hermon-space-3);
	border: 1px solid var(--hermon-color-line);
	border-radius: var(--hermon-radius-lg);
	background: var(--hermon-color-surface);
	box-shadow: var(--hermon-shadow-md);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity var(--hermon-transition), transform var(--hermon-transition);
}

.hermon-lab-nav__dropdown-trigger::after {
	content: "v";
}

.hermon-lab-nav__dropdown:hover .hermon-lab-nav__dropdown-panel,
.hermon-lab-nav__dropdown:focus-within .hermon-lab-nav__dropdown-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.hermon-lab-nav__topic-link {
	display: block;
	padding: var(--hermon-space-3) var(--hermon-space-4);
	border-radius: var(--hermon-radius);
	color: var(--hermon-color-ink-soft) !important;
	font-size: 0.92rem;
	font-weight: 720;
	line-height: 1.25;
	transition: background var(--hermon-transition), color var(--hermon-transition);
}

.hermon-lab-nav__topic-link:hover,
.hermon-lab-nav__topic-link:focus {
	background: var(--hermon-color-bg-alt);
	color: var(--hermon-color-accent-dark) !important;
}

@media (max-width: 760px) {
	.hermon-homepage__inner,
	.hermon-single__inner {
		width: min(100% - 28px, var(--hermon-container));
	}

	.hermon-lab-nav__inner {
		align-items: stretch;
		flex-direction: column;
		justify-content: center;
		min-height: auto;
		padding-block: var(--hermon-space-4);
	}

	.hermon-lab-nav__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 42px;
		padding: 0 var(--hermon-space-4);
		border: 1px solid var(--hermon-color-line);
		border-radius: var(--hermon-radius);
		background: var(--hermon-color-surface);
	}

	.hermon-lab-nav__links {
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: var(--hermon-space-2);
		padding-top: var(--hermon-space-3);
	}

	.hermon-lab-nav__link {
		justify-content: space-between;
		width: 100%;
		border-radius: var(--hermon-radius);
		background: var(--hermon-color-surface);
	}

	.hermon-lab-nav__dropdown-panel {
		position: static;
		min-width: 0;
		margin-top: var(--hermon-space-2);
		box-shadow: var(--hermon-shadow-sm);
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hermon-homepage *,
	.hermon-homepage *::before,
	.hermon-homepage *::after,
	.hermon-single *,
	.hermon-single *::before,
	.hermon-single *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

body.hermon-lab-surface > header,
body.hermon-lab-surface > footer:not([class*="hermon-"]),
body.hermon-lab-surface header:not([class*="hermon-"]),
body.hermon-lab-surface footer:not([class*="hermon-"]),
body.hermon-lab-surface #masthead,
body.hermon-lab-surface #colophon,
body.hermon-lab-surface #site-header,
body.hermon-lab-surface #site-footer,
body.hermon-lab-surface .site-header,
body.hermon-lab-surface .site-footer,
body.hermon-lab-surface .site-branding,
body.hermon-lab-surface .site-title,
body.hermon-lab-surface .site-description,
body.hermon-lab-surface .site-info,
body.hermon-lab-surface .powered-by,
body.hermon-lab-surface .site-logo,
body.hermon-lab-surface .custom-logo-link,
body.hermon-lab-surface .header-inner,
body.hermon-lab-surface .primary-menu-wrapper,
body.hermon-lab-surface .main-navigation,
body.hermon-lab-surface .mobile-header,
body.hermon-lab-surface .mobile-site-header,
body.hermon-lab-surface .site-mobile-header,
body.hermon-lab-surface .mobile-branding,
body.hermon-lab-surface .mobile-navigation,
body.hermon-lab-surface .mobile-menu,
body.hermon-lab-surface .wp-site-blocks > header,
body.hermon-lab-surface .wp-site-blocks > footer,
body.hermon-lab-surface .wp-block-template-part,
body.hermon-lab-surface .wp-block-site-title,
body.hermon-lab-surface .wp-block-site-tagline,
body.hermon-lab-surface .wp-block-site-logo,
body.hermon-lab-surface .wp-block-navigation {
	display: none !important;
}

body.hermon-lab-shortcode-surface .entry-header,
body.hermon-lab-shortcode-surface .page-header,
body.hermon-lab-shortcode-surface .wp-block-post-title,
body.hermon-lab-single-surface .entry-header,
body.hermon-lab-single-surface .page-header,
body.hermon-lab-topic-surface .archive-header,
body.hermon-lab-topic-surface .page-header {
	display: none !important;
}

body.hermon-lab-surface .site,
body.hermon-lab-surface .site-content,
body.hermon-lab-surface .content-area,
body.hermon-lab-surface .site-main,
body.hermon-lab-surface #primary,
body.hermon-lab-surface #main,
body.hermon-lab-surface main,
body.hermon-lab-surface .wp-site-blocks main,
body.hermon-lab-surface .entry-content,
body.hermon-lab-surface .wp-block-post-content,
body.hermon-lab-surface .wp-site-blocks {
	box-sizing: border-box !important;
	max-width: none !important;
	width: 100% !important;
	inline-size: 100% !important;
	padding: 0 !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	overflow: visible !important;
}

body.hermon-lab-surface {
	overflow-x: hidden;
}

body.hermon-lab-surface :where(.is-layout-constrained, .is-layout-flow, .wp-block-group, .wp-block-group__inner-container, .alignwide, .alignfull, .container, .wrapper, .page-width, .content-wrapper) {
	box-sizing: border-box !important;
	max-width: none !important;
	width: 100% !important;
	inline-size: 100% !important;
}

body.hermon-lab-surface :where(.wp-block-group, .wp-block-group__inner-container, .entry-content, .wp-block-post-content):has(> .hermon-homepage),
body.hermon-lab-surface :where(.wp-block-group, .wp-block-group__inner-container, .entry-content, .wp-block-post-content):has(> .hermon-single) {
	max-width: none !important;
	width: 100% !important;
	inline-size: 100% !important;
	padding: 0 !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

body.hermon-lab-surface :where(.hermon-homepage, .hermon-single) {
	max-width: none !important;
	width: 100% !important;
	inline-size: 100% !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.hermon-lab-nav__toggle {
	border: 0;
	background: transparent;
}

.hermon-lab-nav__dropdown-trigger {
	border: 0;
	cursor: pointer;
	background: transparent;
}

.hermon-lab-nav__dropdown:not(.is-open):hover .hermon-lab-nav__dropdown-panel,
.hermon-lab-nav__dropdown:not(.is-open):focus-within .hermon-lab-nav__dropdown-panel {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
}

.hermon-lab-nav__dropdown.is-open .hermon-lab-nav__dropdown-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.hermon-lab-nav__dropdown-trigger[aria-expanded="true"] {
	background: var(--hermon-color-accent-soft);
	color: var(--hermon-color-accent-dark) !important;
}

@media (max-width: 760px) {
	.hermon-lab-nav__links {
		display: none;
	}

	.hermon-lab-nav.is-menu-open .hermon-lab-nav__links {
		display: flex;
	}

	.hermon-lab-nav__dropdown-panel {
		display: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.hermon-lab-nav__dropdown.is-open .hermon-lab-nav__dropdown-panel {
		display: grid;
	}
}

body.hermon-lab-surface #site-header,
body.hermon-lab-surface #site-footer,
body.hermon-lab-surface .site-branding,
body.hermon-lab-surface .site-title,
body.hermon-lab-surface .site-description,
body.hermon-lab-surface .site-info,
body.hermon-lab-surface .powered-by,
body.hermon-lab-surface .site-logo,
body.hermon-lab-surface .custom-logo-link,
body.hermon-lab-surface .header-inner,
body.hermon-lab-surface .primary-menu-wrapper,
body.hermon-lab-surface .main-navigation,
body.hermon-lab-surface .wp-block-site-title,
body.hermon-lab-surface .wp-block-site-tagline,
body.hermon-lab-surface .wp-block-site-logo,
body.hermon-lab-surface .entry-header,
body.hermon-lab-surface .page-header,
body.hermon-lab-surface .wp-block-navigation {
	display: none !important;
}

.hermon-lab-nav__toggle {
	position: relative;
}

.hermon-lab-nav__toggle-line {
	display: none;
}

.hermon-lab-nav__dropdown-trigger::after {
	margin-inline-start: var(--hermon-space-2);
	content: "v";
	font-size: 0.74rem;
}

@media (max-width: 760px) {
	.hermon-lab-nav__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		align-self: flex-end;
		width: 44px;
		height: 44px;
		min-height: 44px;
		padding: 0;
		border: 1px solid var(--hermon-color-line);
		border-radius: var(--hermon-radius);
		background: var(--hermon-color-surface);
	}

	.hermon-lab-nav__toggle-line {
		position: absolute;
		display: block;
		width: 18px;
		height: 2px;
		border-radius: var(--hermon-radius-pill);
		background: var(--hermon-color-ink);
		transition: transform var(--hermon-transition), opacity var(--hermon-transition);
	}

	.hermon-lab-nav__toggle-line:nth-child(1) {
		transform: translateY(-6px);
	}

	.hermon-lab-nav__toggle-line:nth-child(3) {
		transform: translateY(6px);
	}

	.hermon-lab-nav.is-menu-open .hermon-lab-nav__toggle-line:nth-child(1) {
		transform: rotate(45deg);
	}

	.hermon-lab-nav.is-menu-open .hermon-lab-nav__toggle-line:nth-child(2) {
		opacity: 0;
	}

	.hermon-lab-nav.is-menu-open .hermon-lab-nav__toggle-line:nth-child(3) {
		transform: rotate(-45deg);
	}

	.hermon-lab-nav__links {
		display: flex;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 220ms ease, opacity var(--hermon-transition);
	}

	.hermon-lab-nav.is-menu-open .hermon-lab-nav__links {
		max-height: 720px;
		opacity: 1;
	}
}

/*
 * Hermon Lab surface isolation:
 * PHP adds body.hermon-lab-surface only to plugin-powered pages, singles,
 * and topic archives. These scoped rules neutralize common theme header,
 * branding, navigation, and footer wrappers without touching normal content.
 */
html:has(body.hermon-lab-surface.admin-bar),
html[data-hermon-lab-surface="true"] {
	margin-top: 0 !important;
}

body.hermon-lab-surface > header,
body.hermon-lab-surface > footer:not([class*="hermon-"]),
body.hermon-lab-surface #masthead,
body.hermon-lab-surface #colophon,
body.hermon-lab-surface #site-header,
body.hermon-lab-surface #site-footer,
body.hermon-lab-surface .site-header,
body.hermon-lab-surface .site-footer,
body.hermon-lab-surface .site-branding,
body.hermon-lab-surface .site-title,
body.hermon-lab-surface .site-description,
body.hermon-lab-surface .site-info,
body.hermon-lab-surface .powered-by,
body.hermon-lab-surface .site-logo,
body.hermon-lab-surface .custom-logo-link,
body.hermon-lab-surface .header-inner,
body.hermon-lab-surface .primary-menu-wrapper,
body.hermon-lab-surface .main-navigation,
body.hermon-lab-surface .wp-site-blocks > header,
body.hermon-lab-surface .wp-site-blocks > footer,
body.hermon-lab-surface .wp-block-template-part,
body.hermon-lab-surface .wp-block-site-title,
body.hermon-lab-surface .wp-block-site-tagline,
body.hermon-lab-surface .wp-block-site-logo,
body.hermon-lab-surface .entry-header,
body.hermon-lab-surface .page-header,
body.hermon-lab-surface .wp-block-navigation,
body.hermon-lab-surface footer:not([class*="hermon-"]) {
	display: none !important;
}

body.hermon-lab-surface :where(.wp-block-group, .wp-block-template-part, .header-inner, .site-header, .mobile-header, .mobile-site-header, .site-mobile-header):has(.wp-block-site-title),
body.hermon-lab-surface :where(.wp-block-group, .wp-block-template-part, .header-inner, .site-header, .mobile-header, .mobile-site-header, .site-mobile-header):has(.wp-block-site-tagline),
body.hermon-lab-surface :where(.wp-block-group, .wp-block-template-part, .header-inner, .site-header, .mobile-header, .mobile-site-header, .site-mobile-header):has(.site-title),
body.hermon-lab-surface :where(.wp-block-group, .wp-block-template-part, .header-inner, .site-header, .mobile-header, .mobile-site-header, .site-mobile-header):has(.site-description) {
	display: none !important;
}

body.hermon-lab-surface [data-hermon-empty-theme-strip="true"] {
	display: none !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.hermon-lab-surface :where(.hermon-lab-nav, .hermon-homepage, .hermon-single, .hermon-topic-archive) {
	margin-top: 0 !important;
}

body.hermon-lab-surface .hermon-lab-nav__dropdown.is-open,
body.hermon-lab-surface .hermon-lab-nav__dropdown.is-open .hermon-lab-nav__dropdown-panel,
body.hermon-lab-surface .hermon-lab-nav__dropdown.is-open .hermon-lab-nav__topic-link {
	pointer-events: auto !important;
}

body.hermon-lab-surface .hermon-lab-nav__dropdown.is-open .hermon-lab-nav__dropdown-panel {
	z-index: 1003;
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

body.hermon-lab-surface .hermon-lab-nav__dropdown-panel::before,
body.hermon-lab-surface .hermon-lab-nav__dropdown-panel::after {
	pointer-events: none !important;
}

/*
 * The mobile hamburger is span-based. These rules neutralize older
 * plus/minus pseudo-element styles so the closed state is only three lines.
 */
.hermon-lab-nav__toggle::before,
.hermon-lab-nav__toggle::after {
	display: none !important;
	content: none !important;
}

@media (max-width: 760px) {
	.hermon-lab-nav__toggle-line {
		display: block;
	}
}

/*
 * Hermon Design Blueprint
 *
 * Typography rules:
 * - English headlines can be compact, confident, and high-contrast.
 * - Hebrew headlines need softer weight, a little less scale, and more
 *   line-height so dense letterforms remain editorial instead of heavy.
 * - Body copy should stay calm and readable; content width wins over drama.
 *
 * Spacing philosophy:
 * - Sections breathe like an editorial publication: generous vertical rhythm,
 *   restrained inner gutters, and no decorative crowding.
 * - Cards use consistent padding and fixed hierarchy rather than masonry.
 *
 * Card hierarchy:
 * - Feature cards carry the newest/strongest signal.
 * - Medium cards support discovery in a balanced grid.
 * - Compact card styles are ready for denser archives without changing markup.
 *
 * Signal labels:
 * - Labels behave like quiet intelligence tags, not dashboard badges.
 * - Text can grow for Hebrew translations; pills wrap and keep soft borders.
 *
 * Topic accents:
 * - Topics use small dots, soft borders, and low-opacity glows.
 * - Accent colors should guide scanning without overpowering images or titles.
 *
 * RTL/LTR rules:
 * - Direction is inherited from Hermon surface classes and article dir attrs.
 * - Logical properties are preferred so Hebrew and English share components.
 *
 * Motion rules:
 * - Motion is micro only: hover lift, gentle image zoom, label glow.
 * - prefers-reduced-motion removes transforms/transitions where possible.
 */

/*
 * Dark Premium Design System
 * These tokens intentionally stay scoped to Hermon Lab surfaces so the active
 * WordPress theme, admin screens, importer, and workflow tools remain untouched.
 */
.hermon-homepage,
.hermon-single {
	--hermon-color-ink: #f5f7fb;
	--hermon-color-ink-soft: #dbe4f2;
	--hermon-color-muted: #a8b4c7;
	--hermon-color-subtle: #78869e;
	--hermon-color-bg: #060911;
	--hermon-color-bg-alt: #0a0f1c;
	--hermon-color-surface: #101827;
	--hermon-color-surface-soft: #141f31;
	--hermon-color-surface-strong: #1b2940;
	--hermon-color-line: rgba(160, 178, 205, 0.16);
	--hermon-color-line-strong: rgba(172, 194, 226, 0.28);
	--hermon-color-accent: #61d8ff;
	--hermon-color-accent-dark: #9be7ff;
	--hermon-color-accent-soft: rgba(97, 216, 255, 0.13);
	--hermon-color-accent-glow: rgba(97, 216, 255, 0.28);
	--hermon-color-violet: #b79cff;
	--hermon-color-violet-soft: rgba(183, 156, 255, 0.16);
	--hermon-color-warm: #ffd166;
	--hermon-color-warm-soft: rgba(255, 209, 102, 0.14);
	--hermon-color-focus: #8de6ff;
	--hermon-topic-accent: var(--hermon-color-accent);
	--hermon-topic-accent-soft: rgba(97, 216, 255, 0.14);
	--hermon-topic-accent-line: rgba(97, 216, 255, 0.28);
	--hermon-signal-bg: rgba(97, 216, 255, 0.08);
	--hermon-signal-border: rgba(97, 216, 255, 0.22);
	--hermon-signal-glow: rgba(97, 216, 255, 0.28);
	--hermon-container: 1360px;
	--hermon-content: 850px;
	--hermon-radius-sm: 8px;
	--hermon-radius: 10px;
	--hermon-radius-lg: 18px;
	--hermon-radius-xl: 26px;
	--hermon-shadow-sm: 0 14px 34px rgba(0, 0, 0, 0.26);
	--hermon-shadow-md: 0 26px 70px rgba(0, 0, 0, 0.34);
	--hermon-shadow-lg: 0 38px 110px rgba(0, 0, 0, 0.48);
	--hermon-shadow-glow: 0 0 0 1px rgba(97, 216, 255, 0.12), 0 24px 80px rgba(97, 216, 255, 0.12);
	--hermon-font-hebrew: "Assistant", "Heebo", "Rubik", "Noto Sans Hebrew", Arial, sans-serif;
	--hermon-transition: 200ms cubic-bezier(0.2, 0.8, 0.2, 1);

	color-scheme: dark;
	background:
		linear-gradient(180deg, rgba(16, 24, 39, 0.88) 0%, rgba(6, 9, 17, 0) 360px),
		var(--hermon-color-bg);
	color: var(--hermon-color-ink);
}

.hermon-homepage::selection,
.hermon-single::selection {
	background: rgba(97, 216, 255, 0.32);
	color: #ffffff;
}

.hermon-homepage a,
.hermon-single a {
	text-decoration-color: rgba(97, 216, 255, 0.5);
	text-underline-offset: 0.18em;
}

.hermon-homepage :focus-visible,
.hermon-single :focus-visible {
	outline: 3px solid rgba(141, 230, 255, 0.58);
	outline-offset: 4px;
}

.hermon-homepage__inner,
.hermon-single__inner {
	width: min(var(--hermon-container), calc(100% - 56px));
}

.hermon-lab-panel,
.hermon-lab-glass {
	border: 1px solid var(--hermon-color-line);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
		rgba(16, 24, 39, 0.82);
	box-shadow: var(--hermon-shadow-sm);
	backdrop-filter: blur(18px);
}

.hermon-lab-elevated {
	box-shadow: var(--hermon-shadow-md);
}

.hermon-lab-soft-glow {
	box-shadow: var(--hermon-shadow-glow);
}

.hermon-signal-label,
.hermon-homepage__eyebrow,
.hermon-single__topic,
.hermon-single__related-topic,
.hermon-single__insight-label,
.hermon-single__media-fallback-label {
	display: inline-flex;
	align-items: center;
	gap: 0.48rem;
	max-width: 100%;
	min-height: 30px;
	padding: 0.38rem 0.68rem;
	border: 1px solid var(--hermon-signal-border);
	border-radius: var(--hermon-radius-pill);
	background: var(--hermon-signal-bg);
	box-shadow: 0 0 0 rgba(97, 216, 255, 0);
	color: var(--hermon-color-accent-dark);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.18;
	text-transform: uppercase;
	transition:
		border-color var(--hermon-transition),
		box-shadow var(--hermon-transition),
		color var(--hermon-transition);
}

.hermon-signal-label::before,
.hermon-homepage__eyebrow::before,
.hermon-single__topic::before,
.hermon-single__related-topic::before,
.hermon-single__insight-label::before {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 50%;
	background: var(--hermon-topic-accent);
	box-shadow: 0 0 18px var(--hermon-signal-glow);
}

.hermon-topic-accent--web3-marketing,
.hermon-topic-accent--web3,
.hermon-topic-accent--token-credit-systems,
.hermon-topic-accent--token-systems,
.hermon-single__media-fallback--web3-marketing,
.hermon-single__media-fallback--token-credit-systems {
	--hermon-topic-accent: #61d8ff;
	--hermon-topic-accent-soft: rgba(97, 216, 255, 0.14);
	--hermon-topic-accent-line: rgba(97, 216, 255, 0.28);
	--hermon-signal-glow: rgba(97, 216, 255, 0.36);
}

.hermon-topic-accent--marketing-psychology,
.hermon-single__media-fallback--marketing-psychology {
	--hermon-topic-accent: #b79cff;
	--hermon-topic-accent-soft: rgba(183, 156, 255, 0.14);
	--hermon-topic-accent-line: rgba(183, 156, 255, 0.28);
	--hermon-signal-glow: rgba(183, 156, 255, 0.34);
}

.hermon-topic-accent--offline-to-digital,
.hermon-single__media-fallback--offline-to-digital {
	--hermon-topic-accent: #ffd166;
	--hermon-topic-accent-soft: rgba(255, 209, 102, 0.13);
	--hermon-topic-accent-line: rgba(255, 209, 102, 0.27);
	--hermon-signal-glow: rgba(255, 209, 102, 0.3);
}

.hermon-topic-accent--community-growth,
.hermon-single__media-fallback--community-growth {
	--hermon-topic-accent: #7ee7b8;
	--hermon-topic-accent-soft: rgba(126, 231, 184, 0.12);
	--hermon-topic-accent-line: rgba(126, 231, 184, 0.25);
	--hermon-signal-glow: rgba(126, 231, 184, 0.28);
}

.hermon-topic-accent--geo,
.hermon-topic-accent--geo-ai-search,
.hermon-topic-accent--ai-search {
	--hermon-topic-accent: #8de6ff;
	--hermon-topic-accent-soft: rgba(141, 230, 255, 0.12);
	--hermon-topic-accent-line: rgba(141, 230, 255, 0.27);
	--hermon-signal-glow: rgba(141, 230, 255, 0.32);
}

/*
 * Next polish stage:
 * Adds a quieter intelligence-magazine layer without changing architecture.
 * The goal is more editorial character, not louder decoration.
 */
.hermon-homepage,
.hermon-single {
	--hermon-editorial-line: rgba(160, 178, 205, 0.12);
	--hermon-editorial-line-strong: rgba(172, 194, 226, 0.22);
	--hermon-editorial-panel: rgba(16, 24, 39, 0.74);
	--hermon-editorial-panel-soft: rgba(20, 31, 49, 0.54);
	--hermon-shadow-signal: 0 18px 54px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(160, 178, 205, 0.08);
	--hermon-shadow-signal-hover: 0 24px 76px rgba(0, 0, 0, 0.38), 0 0 0 1px var(--hermon-topic-accent-line);
}

.hermon-signal-label,
.hermon-homepage__eyebrow,
.hermon-single__topic,
.hermon-single__related-topic,
.hermon-single__insight-label,
.hermon-single__media-fallback-label {
	min-height: 32px;
	padding: 0.42rem 0.76rem;
	border-color: rgba(160, 178, 205, 0.18);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
		var(--hermon-signal-bg);
	color: rgba(219, 244, 255, 0.92);
	font-size: 0.69rem;
	font-weight: 780;
	line-height: 1.22;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.hermon-signal-label::before,
.hermon-homepage__eyebrow::before,
.hermon-single__topic::before,
.hermon-single__related-topic::before,
.hermon-single__insight-label::before {
	width: 7px;
	height: 7px;
	box-shadow: 0 0 14px var(--hermon-signal-glow);
}

.hermon-topic-accent--web3-marketing,
.hermon-topic-accent--web3,
.hermon-topic-accent--token-credit-systems,
.hermon-topic-accent--token-systems {
	--hermon-topic-accent-soft: rgba(97, 216, 255, 0.105);
	--hermon-topic-accent-line: rgba(97, 216, 255, 0.24);
}

.hermon-topic-accent--marketing-psychology {
	--hermon-topic-accent-soft: rgba(183, 156, 255, 0.105);
	--hermon-topic-accent-line: rgba(183, 156, 255, 0.24);
}

.hermon-topic-accent--offline-to-digital {
	--hermon-topic-accent: #82a7ff;
	--hermon-topic-accent-soft: rgba(70, 104, 179, 0.115);
	--hermon-topic-accent-line: rgba(130, 167, 255, 0.22);
	--hermon-signal-glow: rgba(130, 167, 255, 0.24);
}

.hermon-topic-accent--community-growth {
	--hermon-topic-accent: #93c5fd;
	--hermon-topic-accent-soft: rgba(147, 197, 253, 0.1);
	--hermon-topic-accent-line: rgba(147, 197, 253, 0.22);
	--hermon-signal-glow: rgba(147, 197, 253, 0.24);
}

.hermon-topic-accent--geo,
.hermon-topic-accent--geo-ai-search,
.hermon-topic-accent--ai-search {
	--hermon-topic-accent-soft: rgba(141, 230, 255, 0.105);
	--hermon-topic-accent-line: rgba(141, 230, 255, 0.25);
}

.hermon-lab-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	overflow: visible;
	border-bottom: 1px solid rgba(160, 178, 205, 0.14);
	background:
		linear-gradient(180deg, rgba(10, 15, 28, 0.92), rgba(10, 15, 28, 0.76)),
		rgba(10, 15, 28, 0.88);
	box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(20px) saturate(130%);
}

body.admin-bar .hermon-lab-nav {
	top: 32px;
}

.hermon-lab-nav__inner {
	min-height: 74px;
	overflow: visible;
}

.hermon-lab-nav__brand {
	display: inline-flex;
	align-items: center;
	gap: var(--hermon-space-3);
	color: #ffffff !important;
	font-size: 1.04rem;
	font-weight: 900;
}

.hermon-lab-nav__brand::before {
	width: 12px;
	height: 12px;
	content: "";
	border-radius: 50%;
	background: linear-gradient(135deg, var(--hermon-color-accent), var(--hermon-color-violet));
	box-shadow: 0 0 22px rgba(97, 216, 255, 0.62);
}

.hermon-lab-nav__link,
.hermon-lab-nav__topic-link,
.hermon-lab-nav__dropdown-trigger {
	color: var(--hermon-color-muted) !important;
}

.hermon-lab-nav__link {
	position: relative;
	min-height: 42px;
	padding-inline: var(--hermon-space-4);
	border: 1px solid transparent;
	background: transparent;
	font-weight: 760;
	transition:
		background var(--hermon-transition),
		border-color var(--hermon-transition),
		color var(--hermon-transition),
		transform var(--hermon-transition);
}

.hermon-lab-nav__link:hover,
.hermon-lab-nav__link:focus,
.hermon-lab-nav__dropdown-trigger[aria-expanded="true"] {
	border-color: rgba(97, 216, 255, 0.22);
	background: rgba(97, 216, 255, 0.1);
	color: #ffffff !important;
	transform: translateY(-1px);
}

.hermon-lab-nav__dropdown-trigger::after {
	color: var(--hermon-color-accent);
}

.hermon-lab-nav__dropdown-panel {
	z-index: 1001;
	min-width: 292px;
	padding: var(--hermon-space-3);
	border-color: var(--hermon-color-line-strong);
	background:
		linear-gradient(180deg, rgba(28, 40, 62, 0.96), rgba(13, 20, 35, 0.96)),
		var(--hermon-color-surface);
	box-shadow: var(--hermon-shadow-lg);
	backdrop-filter: blur(18px);
}

.hermon-lab-nav__dropdown.is-open {
	z-index: 1002;
}

.hermon-lab-nav__dropdown.is-open .hermon-lab-nav__dropdown-panel {
	pointer-events: auto;
}

.hermon-lab-nav__topic-link {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 42px;
	border: 1px solid transparent;
	color: rgba(219, 228, 242, 0.92) !important;
	font-weight: 720;
	line-height: 1.25;
	pointer-events: auto;
	transition:
		background var(--hermon-transition),
		border-color var(--hermon-transition),
		color var(--hermon-transition),
		transform var(--hermon-transition);
}

.hermon-lab-nav__topic-link:hover,
.hermon-lab-nav__topic-link:focus {
	border-color: rgba(97, 216, 255, 0.26);
	background: rgba(97, 216, 255, 0.12);
	color: rgba(255, 255, 255, 0.96) !important;
	transform: translateX(2px);
	box-shadow: inset 2px 0 0 rgba(97, 216, 255, 0.34);
}

body.hermon-lab-surface .hermon-lab-language-switcher {
	display: flex;
	flex-wrap: wrap;
	gap: var(--hermon-space-2);
	margin-top: var(--hermon-space-5);
}

body.hermon-lab-surface .hermon-lab-language-switcher__item {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 var(--hermon-space-4);
	border: 1px solid rgba(97, 216, 255, 0.24);
	border-radius: var(--hermon-radius-pill);
	background: rgba(97, 216, 255, 0.1);
	color: #ffffff !important;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none !important;
	transition: background var(--hermon-transition), border-color var(--hermon-transition), transform var(--hermon-transition);
}

body.hermon-lab-surface .hermon-lab-language-switcher__item.is-active {
	border-color: rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.16);
}

body.hermon-lab-surface a.hermon-lab-language-switcher__item:hover,
body.hermon-lab-surface a.hermon-lab-language-switcher__item:focus {
	border-color: rgba(183, 156, 255, 0.45);
	background: rgba(183, 156, 255, 0.16);
	transform: translateY(-1px);
}

.hermon-single--dir-rtl,
.hermon-dir-rtl .hermon-homepage,
.hermon-dir-rtl .hermon-single,
[dir="rtl"].hermon-homepage,
[dir="rtl"].hermon-single,
.hermon-homepage [dir="rtl"],
.hermon-single [dir="rtl"] {
	direction: rtl;
}

.hermon-dir-rtl .hermon-homepage,
.hermon-dir-rtl .hermon-single,
[dir="rtl"].hermon-homepage,
[dir="rtl"].hermon-single {
	--hermon-leading-tight: 1.12;
	--hermon-leading-title: 1.2;
	--hermon-leading-body: 1.92;

	font-family: var(--hermon-font-hebrew);
}

.hermon-dir-rtl .hermon-homepage__headline,
.hermon-dir-rtl .hermon-homepage__section-title,
.hermon-dir-rtl .hermon-homepage__article-title,
.hermon-dir-rtl .hermon-homepage__category-title,
.hermon-dir-rtl .hermon-single__title,
.hermon-dir-rtl .hermon-single__section-title,
.hermon-dir-rtl .hermon-single__related-title,
.hermon-dir-rtl .hermon-single__content h2,
.hermon-dir-rtl .hermon-single__content h3,
.hermon-single--dir-rtl .hermon-single__title,
.hermon-single--dir-rtl .hermon-single__section-title,
.hermon-single--dir-rtl .hermon-single__content h2,
.hermon-single--dir-rtl .hermon-single__content h3,
[dir="rtl"].hermon-homepage .hermon-homepage__headline,
[dir="rtl"].hermon-homepage .hermon-homepage__section-title,
[dir="rtl"].hermon-single .hermon-single__title,
[dir="rtl"].hermon-single .hermon-single__content h2,
[dir="rtl"].hermon-single .hermon-single__content h3 {
	font-weight: 780;
	line-height: var(--hermon-leading-title);
	text-wrap: balance;
}

.hermon-dir-rtl .hermon-homepage__subtitle,
.hermon-dir-rtl .hermon-homepage__category-description,
.hermon-dir-rtl .hermon-homepage__article-excerpt,
.hermon-dir-rtl .hermon-single__excerpt,
.hermon-dir-rtl .hermon-single__content,
.hermon-single--dir-rtl .hermon-single__excerpt,
.hermon-single--dir-rtl .hermon-single__content,
[dir="rtl"].hermon-single .hermon-single__content {
	line-height: var(--hermon-leading-body);
}

.hermon-dir-rtl .hermon-signal-label,
.hermon-dir-rtl .hermon-homepage__eyebrow,
.hermon-dir-rtl .hermon-single__topic,
.hermon-dir-rtl .hermon-single__related-topic,
.hermon-dir-rtl .hermon-single__insight-label,
.hermon-single--dir-rtl .hermon-signal-label,
.hermon-single--dir-rtl .hermon-single__topic,
.hermon-single--dir-rtl .hermon-single__related-topic,
.hermon-single--dir-rtl .hermon-single__insight-label {
	font-size: 0.76rem;
	font-weight: 760;
	line-height: 1.32;
	text-transform: none;
}

.hermon-dir-rtl .hermon-homepage__headline,
.hermon-dir-rtl .hermon-single__title,
.hermon-single--dir-rtl .hermon-single__title,
[dir="rtl"].hermon-homepage .hermon-homepage__headline,
[dir="rtl"].hermon-single .hermon-single__title {
	font-size: clamp(2.55rem, 5.8vw, 5.8rem);
	font-weight: 740;
	letter-spacing: 0;
}

.hermon-dir-rtl .hermon-homepage__article-title,
.hermon-dir-rtl .hermon-single__related-title,
.hermon-single--dir-rtl .hermon-single__related-title {
	line-height: 1.28;
}

.hermon-dir-rtl .hermon-homepage__article-body,
.hermon-dir-rtl .hermon-single__related-body,
.hermon-single--dir-rtl .hermon-single__related-body {
	text-align: start;
}

.hermon-single--dir-ltr,
.hermon-dir-ltr .hermon-homepage,
.hermon-dir-ltr .hermon-single {
	direction: ltr;
}

@media (max-width: 782px) {
	body.admin-bar .hermon-lab-nav {
		top: 46px;
	}
}

@media (max-width: 760px) {
	.hermon-homepage__inner,
	.hermon-single__inner {
		width: min(100% - 30px, var(--hermon-container));
	}

	.hermon-lab-nav__inner {
		gap: var(--hermon-space-4);
		padding-block: var(--hermon-space-4);
	}

	.hermon-lab-nav__toggle {
		border-color: rgba(160, 178, 205, 0.22);
		background: rgba(255, 255, 255, 0.055);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	}

	.hermon-lab-nav__toggle-line {
		background: #ffffff;
	}

	.hermon-lab-nav__links {
		gap: var(--hermon-space-2);
	}

	.hermon-lab-nav.is-menu-open .hermon-lab-nav__links {
		overflow: visible;
	}

	.hermon-lab-nav__link {
		border-color: rgba(160, 178, 205, 0.14);
		background: rgba(255, 255, 255, 0.045);
	}

	.hermon-lab-nav__dropdown-panel {
		border-color: rgba(160, 178, 205, 0.14);
		background: rgba(8, 12, 23, 0.86);
	}

	.hermon-lab-nav__topic-link {
		min-height: 46px;
	}
}

body.hermon-lab-surface [data-hermon-dropdown].is-open .hermon-lab-nav__dropdown-panel,
body.hermon-lab-surface [data-hermon-dropdown] > [data-hermon-dropdown-toggle][aria-expanded="true"] + .hermon-lab-nav__dropdown-panel {
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translateY(0) !important;
	visibility: visible !important;
}

body.hermon-lab-surface [data-hermon-dropdown].is-open .hermon-lab-nav__dropdown-panel a,
body.hermon-lab-surface [data-hermon-dropdown].is-open .hermon-lab-nav__topic-link,
body.hermon-lab-surface [data-hermon-dropdown] > [data-hermon-dropdown-toggle][aria-expanded="true"] + .hermon-lab-nav__dropdown-panel a,
body.hermon-lab-surface [data-hermon-dropdown] > [data-hermon-dropdown-toggle][aria-expanded="true"] + .hermon-lab-nav__dropdown-panel .hermon-lab-nav__topic-link {
	position: relative;
	z-index: 1;
	pointer-events: auto;
}

body.hermon-lab-surface > #page {
	display: flow-root;
	margin-block-start: 0 !important;
	padding-block-start: 0 !important;
	border-block-start: 0 !important;
}

body.hermon-lab-surface > #page > .hermon-homepage,
body.hermon-lab-surface > #page > .hermon-single,
body.hermon-lab-surface > #page > .hermon-archive,
body.hermon-lab-surface > #page > .hermon-topic-archive {
	margin-block-start: 0 !important;
	padding-block-start: 0 !important;
}

body.hermon-lab-surface > #page > :first-child {
	margin-block-start: 0 !important;
}

@media (min-width: 769px) {
	body.hermon-lab-surface .hermon-lab-nav {
		position: relative;
		z-index: 9999;
		overflow: visible !important;
	}

	body.hermon-lab-surface .hermon-lab-nav__inner,
	body.hermon-lab-surface .hermon-lab-nav__links,
	body.hermon-lab-surface .hermon-lab-nav__dropdown {
		position: relative;
		overflow: visible !important;
	}

	body.hermon-lab-surface .hermon-lab-nav__dropdown-panel {
		position: absolute;
		top: calc(100% + 10px);
		inset-inline-end: 0;
		inset-inline-start: auto;
		z-index: 10001;
		min-width: 280px;
		max-width: min(360px, calc(100vw - 32px));
		overflow: visible !important;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
	}

	body.hermon-lab-surface [data-hermon-dropdown].is-open .hermon-lab-nav__dropdown-panel,
	body.hermon-lab-surface [data-hermon-dropdown] > [data-hermon-dropdown-toggle][aria-expanded="true"] ~ .hermon-lab-nav__dropdown-panel {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translateY(0) !important;
		z-index: 10001 !important;
	}

	body.hermon-lab-surface [data-hermon-dropdown].is-open .hermon-lab-nav__dropdown-panel a,
	body.hermon-lab-surface [data-hermon-dropdown] > [data-hermon-dropdown-toggle][aria-expanded="true"] ~ .hermon-lab-nav__dropdown-panel a {
		position: relative;
		pointer-events: auto !important;
		z-index: 10002;
	}

	body.hermon-lab-surface .hermon-homepage__hero,
	body.hermon-lab-surface .hermon-single__hero,
	body.hermon-lab-surface .hermon-topic-archive__hero,
	body.hermon-lab-surface .hermon-archive__hero {
		position: relative;
		z-index: 1;
	}

	body.hermon-lab-surface .hermon-homepage__hero::before,
	body.hermon-lab-surface .hermon-homepage__hero::after,
	body.hermon-lab-surface .hermon-single__hero::before,
	body.hermon-lab-surface .hermon-single__hero::after,
	body.hermon-lab-surface .hermon-topic-archive__hero::before,
	body.hermon-lab-surface .hermon-topic-archive__hero::after,
	body.hermon-lab-surface .hermon-archive__hero::before,
	body.hermon-lab-surface .hermon-archive__hero::after {
		pointer-events: none !important;
		z-index: 0;
	}
}

@media (max-width: 768px) {
	body.hermon-lab-surface .hermon-topic-archive,
	body.hermon-lab-surface .hermon-archive {
		max-width: 100%;
		overflow-x: hidden;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__inner,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__inner {
		width: min(100% - 32px, var(--hermon-container));
		max-width: 100%;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__inner,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__inner {
		align-items: stretch;
		flex-direction: column;
		gap: var(--hermon-space-4);
		min-height: auto;
		padding-block: var(--hermon-space-4);
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__toggle,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 42px;
		padding: 0 var(--hermon-space-4);
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__links,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__links {
		display: none !important;
		align-items: stretch;
		flex-direction: column;
		width: 100%;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav.is-menu-open .hermon-lab-nav__links,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav.is-menu-open .hermon-lab-nav__links {
		display: flex !important;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__link,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__link {
		justify-content: space-between;
		width: 100%;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__dropdown-panel,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__dropdown-panel {
		position: static;
		display: none;
		min-width: 0;
		margin-top: var(--hermon-space-2);
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__dropdown.is-open .hermon-lab-nav__dropdown-panel,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__dropdown.is-open .hermon-lab-nav__dropdown-panel {
		display: grid;
	}

	body.hermon-lab-surface .hermon-topic-archive__hero,
	body.hermon-lab-surface .hermon-archive__hero {
		min-height: auto;
		padding-block: clamp(72px, 18vw, 120px);
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__hero-inner,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__hero-inner {
		max-width: 100%;
		margin-inline-start: auto;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__headline,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__headline {
		font-size: clamp(2.65rem, 12.5vw, 3.7rem);
		line-height: 1;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__subtitle,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__subtitle {
		font-size: 1rem;
		line-height: 1.76;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-grid,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-grid {
		display: grid;
		grid-template-columns: 1fr !important;
		max-width: 100%;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-card,
	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-card--feature,
	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-card--medium,
	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-card--compact,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-card,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-card--feature,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-card--medium,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-card--compact {
		grid-column: auto;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-card--medium:nth-child(3),
	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-card--medium:nth-child(3):hover,
	body.hermon-lab-surface .hermon-topic-archive .hermon-homepage__article-card--medium:nth-child(3):focus-within,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-card--medium:nth-child(3),
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-card--medium:nth-child(3):hover,
	body.hermon-lab-surface .hermon-archive .hermon-homepage__article-card--medium:nth-child(3):focus-within {
		transform: none;
	}
}

@media (max-width: 768px) {
	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__toggle,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__toggle {
		display: inline-flex !important;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav__links,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav__links {
		display: none !important;
	}

	body.hermon-lab-surface .hermon-topic-archive .hermon-lab-nav.is-menu-open .hermon-lab-nav__links,
	body.hermon-lab-surface .hermon-archive .hermon-lab-nav.is-menu-open .hermon-lab-nav__links {
		display: flex !important;
	}
}
