/*
Theme Name: e-HowTo
Theme URI: https://e-howto.gr
Description: GeneratePress child for e-howto.gr â€” utility how-to publisher.
Author: e-HowTo
Template: generatepress
Version: 2.9.28
Text Domain: ehowto
*/

:root {
	--eh-ink: #0c1520;
	--eh-muted: #5a6570;
	--eh-bg: #f4f6f8;
	--eh-surface: #ffffff;
	--eh-accent: #0f766e;
	--eh-accent-ink: #0a5c56;
	--eh-link: #0a6ea8;
	--eh-link-hover: #085687;
	--eh-line: #d5dde5;
	--eh-paper: #eef1f4;
	--eh-font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
	--eh-display: "Source Serif 4", "Source Sans 3", Georgia, serif;
	--eh-radius: 6px;
	--contrast: #0c1520;
	--contrast-2: #5a6570;
	--base: #f4f6f8;
	--base-2: #eef1f4;
	--base-3: #ffffff;
	--accent: #0f766e !important;
}

html {
	font-size: 16px;
}

body,
button,
input,
select,
textarea {
	font-family: var(--eh-font);
	color: var(--eh-ink);
	background: var(--eh-surface);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.home,
body.home.separate-containers {
	background: var(--eh-paper);
}

a {
	color: var(--eh-link);
}

a:hover,
a:focus-visible {
	color: var(--eh-link-hover);
}

.site-header {
	border-bottom: 1px solid var(--eh-line);
	background: var(--eh-paper);
	position: sticky;
	top: 0;
	z-index: 40;
	box-shadow: none;
}

body.home .site-header {
	background: var(--eh-paper);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom-color: var(--eh-line);
	box-shadow: none;
}

.site-header .inside-header {
	min-height: 72px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
}

.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
	flex: 0 0 auto;
}

.main-navigation {
	flex: 1 1 auto;
	background: transparent !important;
}

.main-navigation .inside-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.main-navigation .main-nav > ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media (min-width: 769px) {
	.site-header .inside-header {
		position: relative;
	}

	.main-navigation {
		position: static;
	}

	.main-navigation .inside-navigation {
		justify-content: center;
		position: relative;
		width: 100%;
		padding-right: 280px;
		box-sizing: border-box;
	}

	.main-navigation .main-nav > ul {
		justify-content: center;
	}

	.menu-bar-items {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		margin-left: 0;
	}
}

.menu-bar-items {
	display: flex;
	align-items: center;
	margin-left: 4px;
}

.main-title,
h1.main-title {
	margin: 0;
	font-size: 0;
	line-height: 0;
	width: auto;
	text-align: left;
	display: flex;
	align-items: center;
}

.main-title a,
.eh-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 17px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--eh-ink) !important;
	text-decoration: none !important;
}

.site-header .site-description {
	display: none !important;
}

.eh-brand__mark {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	object-fit: contain;
	flex: 0 0 36px;
	background: transparent;
}

.eh-brand__name {
	font-size: 17px;
	letter-spacing: -0.04em;
	color: inherit;
}

.eh-brand__stack {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.eh-brand__line {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--eh-muted);
}

.eh-brand__tld {
	color: inherit;
	transition: color 0.2s ease;
}

.eh-brand:hover .eh-brand__tld,
.eh-brand:focus-visible .eh-brand__tld {
	color: var(--eh-accent);
}

.eh-navsearch {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.eh-navsearch input[type="search"] {
	width: 0;
	height: 36px;
	opacity: 0;
	border: 0;
	padding: 0;
	margin: 0;
	pointer-events: none;
	background: var(--eh-bg);
	color: var(--eh-ink);
	font-size: 14px;
	font-family: inherit;
	transition: width 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
}

.eh-navsearch.is-open input[type="search"],
.eh-navsearch:focus-within input[type="search"] {
	width: min(42vw, 240px);
	opacity: 1;
	pointer-events: auto;
	padding: 0 12px;
	border: 1px solid var(--eh-line);
	border-right: 0;
	border-radius: 999px 0 0 999px;
}

.eh-navsearch input[type="search"]:focus {
	outline: none;
	border-color: var(--eh-accent);
	background: var(--eh-surface);
}

.eh-navsearch button {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--eh-line);
	border-radius: 999px;
	background: var(--eh-surface) !important;
	color: var(--eh-ink) !important;
	cursor: pointer;
}

.eh-navsearch.is-open button,
.eh-navsearch:focus-within button {
	border-radius: 0 999px 999px 0;
	border-color: var(--eh-accent);
	background: var(--eh-accent) !important;
	color: #fff !important;
}

.eh-navsearch button:hover,
.eh-navsearch button:focus-visible {
	background: var(--eh-accent) !important;
	border-color: var(--eh-accent);
	color: #fff !important;
}

.eh-navsearch__txt {
	display: none !important;
}

.navigation-search,
.menu-bar-item.search-item {
	display: none !important;
}

@media (min-width: 769px) {
	#mobile-menu-control-wrapper .eh-navsearch {
		display: none !important;
	}
}

@media (max-width: 768px) {
	.site-header .inside-header {
		flex-wrap: nowrap !important;
		min-height: 56px;
		padding: 6px 12px;
		gap: 8px;
		position: relative;
	}

	.eh-brand__line {
		display: none;
	}

	.main-navigation:not(.toggled),
	.main-navigation:not(.toggled) .inside-navigation {
		flex: 0 0 0 !important;
		width: 0 !important;
		min-width: 0 !important;
		margin: 0;
		padding: 0;
	}

	#site-navigation:not(.toggled) {
		position: absolute !important;
		left: 0;
		right: 0;
		top: 100%;
		width: 100% !important;
		height: 0 !important;
		overflow: hidden !important;
		visibility: hidden;
		pointer-events: none;
	}

	#site-navigation.toggled .inside-navigation,
	#site-navigation.toggled .main-nav,
	#site-navigation.toggled .main-nav > ul {
		flex: none !important;
		width: 100% !important;
		max-width: none !important;
		height: auto !important;
		min-height: 0 !important;
		margin: 0 !important;
		background: #fff !important;
	}

	#site-navigation.toggled,
	html.eh-menu-open #site-navigation.toggled {
		position: fixed !important;
		left: 0 !important;
		right: 0 !important;
		top: var(--eh-header-h, 56px) !important;
		bottom: 0 !important;
		width: 100% !important;
		height: calc(100dvh - var(--eh-header-h, 56px)) !important;
		max-height: none !important;
		min-height: 50dvh !important;
		display: block !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		visibility: visible !important;
		pointer-events: auto !important;
		background: #fff !important;
		border: 0 !important;
		box-shadow: none !important;
		z-index: 80;
		padding: 8px 0 32px !important;
		margin: 0 !important;
		transform: none !important;
		inset-inline: 0 !important;
		-webkit-overflow-scrolling: touch;
	}

	.site-header {
		z-index: 120;
	}

	#site-navigation.toggled .inside-navigation {
		display: block !important;
		background: #fff !important;
		align-items: stretch !important;
		min-height: 100% !important;
	}

	#site-navigation.toggled .main-nav > ul {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		position: static !important;
		background: #fff !important;
	}

	#site-navigation.toggled .main-nav > ul > li {
		display: block !important;
		width: 100% !important;
		float: none !important;
		margin: 0 !important;
		background: #fff !important;
	}

	#site-navigation.toggled .main-nav > ul > li:has(a[href*="/egov"]) { order: 1 !important; }
	#site-navigation.toggled .main-nav > ul > li:has(a[href*="/tech"]) { order: 2 !important; }
	#site-navigation.toggled .main-nav > ul > li:has(a[href*="/diy"]) { order: 3 !important; }
	#site-navigation.toggled .main-nav > ul > li:has(a[href*="/life"]) { order: 4 !important; }
	#site-navigation.toggled .main-nav > ul > li:has(a[href*="/tourism"]) { order: 5 !important; }

	#site-navigation.toggled .main-nav ul li a {
		display: flex !important;
		align-items: center;
		gap: 12px;
		padding: 14px 18px !important;
		min-height: 56px;
		box-sizing: border-box;
		font-size: 15px !important;
		font-weight: 700 !important;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		background: #fff !important;
		color: var(--eh-ink) !important;
		border-bottom: 1px solid var(--eh-line);
		text-decoration: none;
	}

	#site-navigation.toggled .main-nav ul li.eh-nav-pillar > a {
		border-left: 4px solid transparent;
		border-radius: 12px;
		margin: 6px 12px !important;
		width: auto !important;
		border-bottom: 0;
		box-shadow: inset 0 0 0 1px rgba(12, 21, 32, 0.06);
	}

	#site-navigation.toggled .main-nav ul li.eh-nav-pillar--egov > a {
		background: #e6f3f1 !important;
		color: #0a5c56 !important;
		border-left-color: #0f766e;
	}

	#site-navigation.toggled .main-nav ul li.eh-nav-pillar--diy > a {
		background: #fef3c7 !important;
		color: #92400e !important;
		border-left-color: #d97706;
	}

	#site-navigation.toggled .main-nav ul li.eh-nav-pillar--life > a {
		background: #fce8ee !important;
		color: #9f1239 !important;
		border-left-color: #e11d48;
	}

	#site-navigation.toggled .main-nav ul li.eh-nav-pillar--tech > a {
		background: #e0f2fe !important;
		color: #075985 !important;
		border-left-color: #0284c7;
	}

	#site-navigation.toggled .main-nav ul li.eh-nav-pillar--tourism > a {
		background: #d1fae5 !important;
		color: #065f46 !important;
		border-left-color: #059669;
	}

	#site-navigation.toggled .eh-nav-pillar__ico {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 36px;
		width: 36px;
		height: 36px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.72);
	}

	#site-navigation.toggled .eh-nav-pillar__ico svg {
		display: block;
		width: 20px;
		height: 20px;
	}

	#site-navigation.toggled .eh-nav-pillar__txt {
		flex: 1 1 auto;
		min-width: 0;
	}

	#site-navigation .menu-toggle,
	#site-navigation .eh-navsearch {
		display: none !important;
	}

	#mobile-menu-control-wrapper {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: center;
		justify-content: flex-end;
		gap: 6px;
		width: auto !important;
		height: 44px !important;
		float: none !important;
		margin: 0 0 0 auto !important;
		padding: 0 !important;
		background: transparent !important;
	}

	#mobile-menu-control-wrapper .menu-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 44px !important;
		min-width: 44px !important;
		height: 44px !important;
		flex: 0 0 44px !important;
		padding: 0 !important;
		margin: 0;
		float: none !important;
		border: 1px solid var(--eh-line);
		border-radius: 10px;
		background: #fff;
		position: relative;
		overflow: visible;
		box-sizing: border-box !important;
	}

	#mobile-menu-control-wrapper .menu-toggle .gp-icon,
	#mobile-menu-control-wrapper .menu-toggle svg,
	#mobile-menu-control-wrapper .menu-toggle .mobile-menu {
		display: none !important;
	}

	#mobile-menu-control-wrapper .menu-toggle::before,
	#mobile-menu-control-wrapper .menu-toggle::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: 18px;
		height: 2px;
		margin: -1px 0 0 -9px;
		background: currentColor;
		border-radius: 1px;
	}

	#mobile-menu-control-wrapper .menu-toggle::before {
		box-shadow: 0 -6px currentColor, 0 6px currentColor;
	}

	#mobile-menu-control-wrapper .menu-toggle[aria-expanded="true"]::before {
		box-shadow: none;
		transform: rotate(45deg);
	}

	#mobile-menu-control-wrapper .menu-toggle[aria-expanded="true"]::after {
		transform: rotate(-45deg);
	}

	html.eh-menu-open,
	html.eh-menu-open body,
	body.eh-nav-open {
		overflow: hidden !important;
		height: 100dvh;
	}

	html.eh-menu-open .eh-live {
		visibility: hidden !important;
	}

	#site-navigation:not(.toggled) .eh-navsearch {
		display: none;
	}

	#mobile-menu-control-wrapper .eh-navsearch {
		display: flex !important;
		position: static;
		flex: 0 0 44px;
		width: 44px;
		height: 44px;
		margin: 0;
		justify-content: center;
	}

	#mobile-menu-control-wrapper .eh-navsearch input[type="search"] {
		position: absolute !important;
		left: 12px;
		right: 12px;
		top: calc(100% + 6px);
		width: auto !important;
		min-width: 0 !important;
		height: 48px !important;
		padding: 0 14px !important;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		background: #fff !important;
		border: 1px solid var(--eh-line) !important;
		border-radius: 12px !important;
		font-size: 16px;
		-webkit-appearance: none;
		appearance: none;
		z-index: 80;
	}

	#mobile-menu-control-wrapper .eh-navsearch.is-open input[type="search"],
	#mobile-menu-control-wrapper .eh-navsearch:focus-within input[type="search"] {
		opacity: 1 !important;
		pointer-events: auto !important;
		visibility: visible;
		width: auto !important;
		padding: 0 14px !important;
	}

	#mobile-menu-control-wrapper .eh-navsearch button {
		width: 44px;
		height: 44px;
		border-radius: 10px !important;
		background: #fff !important;
	}

	#mobile-menu-control-wrapper .eh-navsearch.is-open button,
	#mobile-menu-control-wrapper .eh-navsearch:focus-within button {
		border-radius: 10px !important;
	}
}

.main-navigation .main-nav ul li a {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--eh-ink);
	padding-left: 12px;
	padding-right: 12px;
	text-decoration: none;
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li a:focus-visible,
.main-navigation .main-nav ul li[class*="current"] > a {
	color: var(--eh-accent);
}

#menu-item-299,
#menu-item-7834 {
	display: none !important;
}

body.home .sidebar,
body.home .page-header,
body.home .entry-header,
body.home .entry-meta {
	display: none !important;
}

body.home.separate-containers .site-main,
body.home .site-content,
body.home.separate-containers .inside-article {
	padding: 0;
	margin: 0;
	max-width: none;
	background: transparent;
	box-shadow: none;
}

body.home #page .site-content .content-area {
	width: 100%;
	float: none;
}

.eh-home {
	max-width: none;
	margin: 0;
	padding: 0;
}

html {
	overflow-x: clip;
}

#page.site.grid-container,
#page.container.hfeed {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.site-content,
#content {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	float: none !important;
}

.site-main,
#main {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	flex: 1 1 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.eh-home,
.eh-live,
.eh-archive {
	width: 100%;
}

.inside-header.grid-container,
.inside-navigation.grid-container,
.site-footer .grid-container,
.site-footer .inside-site-info,
.site-footer .footer-widgets-container {
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.eh-shell {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 28px;
}

.eh-hero {
	background: #f4efe6;
	padding: 0;
	border: 0;
}

.eh-hero__split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

.eh-hero--cinema {
	background: #f4efe6;
}

.eh-hero__stage {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 16px 20px 28px;
	min-height: 0;
	overflow: visible;
}

.eh-hero__frame {
	position: relative;
	height: 280px;
	border-radius: 22px;
	overflow: hidden;
	background: #0a1018;
}

.eh-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.eh-hero__media img,
.eh-hero__media .eh-card__ph {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: none !important;
	transform: none !important;
}

.eh-hero__vignette {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 58% at 50% 100%, rgba(6, 8, 12, 0.9), transparent 62%),
		linear-gradient(to top, rgba(6, 8, 12, 0.78) 0%, rgba(6, 8, 12, 0.2) 42%, rgba(6, 8, 12, 0.14) 100%);
}

.eh-hero__glass {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	margin: 0;
	padding: 14px 16px 14px;
	max-width: 520px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(22px) saturate(1.4);
	-webkit-backdrop-filter: blur(22px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 18px;
	color: #fff;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.eh-hero__title {
	margin: 4px 0 0;
	font-family: var(--eh-display);
	font-size: clamp(22px, 2.8vw, 36px);
	line-height: 1.12;
	letter-spacing: -0.035em;
	font-weight: 600;
	font-optical-sizing: auto;
}

.eh-hero__title a {
	color: #fff;
	text-decoration: none;
}

.eh-hero__excerpt {
	display: none;
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.45;
	max-width: 36em;
}

.eh-hero__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
	flex-wrap: wrap;
	font-size: 12px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.72);
}

.eh-hero__glass .eh-pill {
	color: #fde68a;
	margin-bottom: 2px;
}

.eh-hero__glass .eh-card__cta {
	margin-top: 0;
	background: #fff;
	color: #12161c;
	padding: 8px 14px;
	font-size: 12px;
}

.eh-hero__glass .eh-card__cta:hover,
.eh-hero__glass .eh-card__cta:focus-visible {
	background: #f4efe6;
	color: #12161c;
}

.eh-wizard {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(20px) saturate(1.2);
	-webkit-backdrop-filter: blur(20px) saturate(1.2);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 20px;
	padding: 16px 16px 8px;
}

.eh-hero--cinema .eh-wizard {
	margin: 0;
	max-width: none;
	background: rgba(255, 255, 255, 0.58);
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--eh-ink);
}

.eh-hero--cinema .eh-wizard h2 {
	color: var(--eh-ink);
	font-size: 22px;
}

.eh-hero--cinema .eh-wizard__kicker {
	color: var(--eh-accent);
}

.eh-hero--cinema .eh-chip {
	background: rgba(255, 255, 255, 0.7);
	border-color: var(--eh-line);
	color: var(--eh-ink);
}

.eh-hero--cinema .eh-chip:hover,
.eh-hero--cinema .eh-chip:focus-visible {
	border-color: var(--eh-accent);
	color: var(--eh-accent);
}

.eh-hero--cinema .eh-chip[aria-selected="true"] {
	background: var(--eh-ink);
	color: #fff;
	border-color: var(--eh-ink);
}

.eh-hero--cinema .eh-card--compact {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: none;
}

.eh-hero--cinema .eh-card--compact .eh-card__title a {
	color: var(--eh-ink);
}

.eh-hero--cinema .eh-pill {
	color: var(--eh-accent);
}

.eh-wizard__kicker {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

.eh-wizard h2 {
	margin: 0 0 14px;
	font-family: var(--eh-display);
	font-size: 26px;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.eh-chips--wizard {
	margin-bottom: 14px;
}

.eh-chips--wizard .eh-chip {
	text-transform: none;
	letter-spacing: 0;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 12px;
}

.eh-wizard__panel {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-bottom: 12px;
}

.eh-wizard__panel[hidden] {
	display: none;
}

.eh-hero--cinema .eh-wizard__panel {
	max-height: none;
	overflow: visible;
}

.eh-wizard .eh-card--compact {
	box-shadow: none;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.eh-band {
	width: 100%;
	padding: 36px 0 36px;
	position: relative;
}

.eh-band--everyday {
	background:
		radial-gradient(at 12% 18%, rgba(196, 112, 80, 0.28), transparent 48%),
		radial-gradient(at 88% 8%, rgba(154, 175, 136, 0.38), transparent 46%),
		radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.7), transparent 55%),
		#f4efe6;
	--eh-silo-ink: #b4532a;
}

.eh-band--egov {
	background:
		radial-gradient(at 88% 8%, rgba(34, 211, 238, 0.16), transparent 42%),
		radial-gradient(at 8% 90%, rgba(14, 116, 144, 0.28), transparent 45%),
		#0b1c33;
	--eh-silo-ink: #67e8f9;
	color: #e8f4ff;
}

.eh-band--tech {
	--spot-x: 50%;
	--spot-y: 20%;
	overflow: hidden;
	background:
		radial-gradient(900px circle at var(--spot-x) var(--spot-y), rgba(56, 189, 248, 0.16), transparent 42%),
		radial-gradient(at 10% 80%, rgba(99, 102, 241, 0.18), transparent 40%),
		#0b1220;
	--eh-silo-ink: #38bdf8;
	color: #e5e7eb;
}

.eh-band--tech::after {
	content: "";
	pointer-events: none;
	position: absolute;
	inset: 0;
	background: radial-gradient(280px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.08), transparent 55%);
	z-index: 0;
}

.eh-band--tech .eh-shell {
	position: relative;
	z-index: 1;
}

.eh-band--tourism {
	background:
		radial-gradient(at 20% 0%, rgba(14, 165, 233, 0.18), transparent 40%),
		radial-gradient(at 90% 80%, rgba(251, 191, 36, 0.35), transparent 45%),
		#f8edd4;
	--eh-silo-ink: #0369a1;
}

.eh-intro,
.eh-search {
	display: none !important;
}

.eh-kicker {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

.eh-theme {
	margin-top: 4px;
}

.eh-theme__head h2 {
	margin: 0;
	font-family: var(--eh-display);
	font-size: 28px;
	letter-spacing: -0.03em;
}

.eh-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
}

.eh-chip {
	appearance: none;
	border: 1px solid var(--eh-line);
	background: var(--eh-surface);
	color: var(--eh-ink);
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-family: inherit;
	cursor: pointer;
	will-change: transform;
}

.eh-chip:hover,
.eh-chip:focus-visible {
	border-color: var(--eh-accent);
	color: var(--eh-accent);
}

.eh-chip[aria-selected="true"] {
	background: var(--eh-ink);
	border-color: var(--eh-ink);
	color: #fff;
}

.eh-spotlight {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	align-items: stretch;
}

.eh-spotlight__side {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.eh-theme__more {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: 600;
}

.eh-card {
	min-width: 0;
	background: rgba(255, 255, 255, 0.42);
	backdrop-filter: blur(20px) saturate(1.15);
	-webkit-backdrop-filter: blur(20px) saturate(1.15);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(18, 22, 28, 0.06);
	transition: border-radius 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

.eh-card:hover,
.eh-card:focus-within {
	border-radius: 28px 14px 26px 18px;
}

.eh-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--eh-paper);
}

.eh-card__media img,
.eh-card__ph {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: filter 0.7s ease, transform 1.4s ease;
}

.eh-card__media img {
	filter: grayscale(1) contrast(1.18);
}

.eh-card__ph {
	background: linear-gradient(135deg, #d7e6e8, #ece7dd);
}

.eh-card:hover .eh-card__media img,
.eh-card:focus-within .eh-card__media img {
	filter: grayscale(0) contrast(1);
	transform: scale(1.05);
}

.eh-card__body {
	padding: 14px 16px 16px;
}

.eh-card--compact {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 0;
	align-items: stretch;
}

.eh-card--compact .eh-card__media {
	aspect-ratio: 1 / 1;
	border-radius: 0;
}

.eh-card--compact .eh-card__body {
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.eh-card--feature .eh-card__media,
.eh-card--lead .eh-card__media {
	aspect-ratio: 16 / 9;
}

.eh-card--feature .eh-card__title,
.eh-card--lead .eh-card__title {
	font-family: var(--eh-display);
	font-size: clamp(22px, 2.6vw, 34px);
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.eh-pill {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eh-accent);
	text-decoration: none;
	margin-bottom: 6px;
}

.eh-pill:hover,
.eh-pill:focus-visible {
	color: var(--eh-accent-ink);
}

.eh-card__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: -0.02em;
	font-weight: 700;
}

.eh-card--standard .eh-card__title,
.eh-card--compact .eh-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.eh-card__title a {
	color: var(--eh-ink);
	text-decoration: none;
}

.eh-card__title a:hover,
.eh-card__title a:focus-visible {
	color: var(--eh-accent);
}

.eh-card__excerpt {
	margin: 10px 0 0;
	color: var(--eh-muted);
	font-size: 15px;
	line-height: 1.5;
}

.eh-card__cta {
	display: inline-block;
	margin-top: 16px;
	background: var(--eh-accent);
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	padding: 11px 16px;
	border-radius: 999px;
	will-change: transform;
}

.eh-card__cta:hover,
.eh-card__cta:focus-visible {
	color: #fff;
	background: var(--eh-accent-ink);
}

.eh-adwrap {
	display: block;
	margin: 0;
	min-height: 0;
	height: auto;
	background: transparent;
}

.eh-adslot {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0;
	background: transparent;
	text-align: center;
}

.eh-adslot__box {
	display: block;
	width: min(970px, 100%);
	height: 90px;
	margin: 0 auto;
	border: 1px dashed rgba(18, 22, 28, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.45);
}

.eh-adslot--live {
	margin: 16px 0;
	padding: 0;
	background: transparent;
	min-height: 0;
}

.eh-adslot--live.eh-ad--pending,
.eh-adwrap.eh-ad--pending {
	min-height: 0;
	background: transparent;
}

.eh-adslot--live.eh-ad--filled,
.eh-adwrap.eh-ad--filled {
	min-height: 0;
}

.eh-adwrap.eh-ad--empty,
.eh-adslot--live.eh-ad--empty,
.eh-card--ad.eh-ad--empty,
.eh-adband.eh-ad--empty,
[hidden].eh-adwrap,
[hidden].eh-adslot--live,
[hidden].eh-card--ad,
[hidden].eh-adband {
	display: none !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	background: transparent !important;
}

.eh-adslot--live ins.adsbygoogle {
	display: block !important;
	width: 100% !important;
	min-width: 300px;
	max-width: 100%;
	min-height: 0;
	margin: 0 auto;
	text-align: center;
}

.eh-adband {
	width: 100%;
}

.eh-adband .eh-shell {
	display: block;
	width: 100%;
}

.eh-adband .eh-adslot {
	width: 100%;
}

.eh-list__grid .eh-card--ad {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	height: 100%;
	background: transparent;
	min-height: 0;
	border: 0;
	box-shadow: none;
}

.eh-list__grid .eh-card--ad:hover,
.eh-list__grid .eh-card--ad:focus-within {
	transform: none;
	border-radius: 22px;
}

.eh-list__grid .eh-card--ad .eh-adslot,
.eh-list__grid .eh-card--ad .eh-adslot--live {
	flex: 1 1 auto;
	display: flex;
	align-items: stretch;
	margin: 0;
	padding: 0;
	min-height: 0;
	background: transparent;
}

.eh-list__grid .eh-card--ad.eh-ad--filled,
.eh-list__grid .eh-card--ad:has(.eh-ad--filled) {
	min-height: 250px;
	background: #fff;
}

.eh-list__grid .eh-card--ad ins.adsbygoogle {
	flex: 1 1 auto;
	width: 100% !important;
	min-height: 0;
}

.eh-list__grid .eh-card--ad.eh-ad--filled ins.adsbygoogle,
.eh-list__grid .eh-card--ad:has(.eh-ad--filled) ins.adsbygoogle {
	min-height: 250px;
}

.eh-silo {
	margin: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.eh-silo__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.eh-silo__head h2 {
	margin: 0;
	font-family: var(--eh-display);
	font-size: clamp(26px, 3.2vw, 42px);
	letter-spacing: -0.04em;
	text-transform: none;
	font-weight: 600;
	line-height: 1.15;
	color: var(--eh-silo-ink, var(--eh-ink));
	max-width: 16em;
}

.eh-band--everyday .eh-card {
	background: rgba(255, 252, 247, 0.48);
	box-shadow: 0 12px 36px rgba(92, 58, 32, 0.08);
}

.eh-band--everyday .eh-pill {
	color: #6b7f5e;
}

.eh-band--egov .eh-silo__dek,
.eh-band--egov .eh-silo__all {
	color: #93c5c9;
}

.eh-band--egov .eh-silo__all:hover {
	color: #67e8f9;
}

.eh-band--egov .eh-card {
	background: rgba(15, 40, 70, 0.55);
	border-color: rgba(103, 232, 249, 0.18);
}

.eh-band--egov .eh-card__title,
.eh-band--egov .eh-card__title a,
.eh-band--egov .eh-card__excerpt {
	color: #f0fbff;
}

.eh-band--egov .eh-pill {
	color: #67e8f9;
}

.eh-band--egov .eh-index {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.eh-band--egov .eh-card--list {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.eh-band--tech .eh-silo__dek,
.eh-band--tech .eh-silo__all {
	color: #9ca3af;
}

.eh-band--tech .eh-silo__all:hover {
	color: #38bdf8;
}

.eh-band--tech .eh-card {
	background: rgba(31, 41, 55, 0.62);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: none;
}

.eh-band--tech .eh-card:hover,
.eh-band--tech .eh-card:focus-within {
	box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.45), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.eh-band--tech .eh-card__title,
.eh-band--tech .eh-card__title a,
.eh-band--tech .eh-card__excerpt {
	color: #f9fafb;
}

.eh-band--tech .eh-pill {
	color: #38bdf8;
}

.eh-band--tourism .eh-card--overlay {
	height: 220px;
	aspect-ratio: auto;
}

.eh-band--tourism .eh-card__hit {
	aspect-ratio: auto;
	height: 100%;
}

.eh-silo__dek {
	margin: 6px 0 0;
	color: var(--eh-muted);
	font-size: 14px;
	max-width: 40em;
}

.eh-silo__all {
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	color: var(--eh-silo-ink, var(--eh-accent));
	will-change: transform;
}

.eh-silo__index {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: stretch;
}

.eh-silo__lead,
.eh-silo__lead .eh-card--lead {
	height: 100%;
}

.eh-card--lead {
	display: flex;
	flex-direction: column;
}

.eh-card--lead .eh-card__media {
	flex: 1 1 auto;
	min-height: 160px;
}

.eh-index {
	counter-reset: eh;
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: var(--eh-surface);
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
}

.eh-card--list {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	box-shadow: none;
	border-radius: 0;
	border-bottom: 1px solid var(--eh-line);
	background: transparent;
}

.eh-card--list:last-child {
	border-bottom: 0;
}

.eh-card__num {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--eh-silo-ink, var(--eh-accent));
	letter-spacing: 0.04em;
}

.eh-index .eh-card {
	counter-increment: eh;
}

.eh-index .eh-card__num::before {
	content: counter(eh, decimal-leading-zero);
}

.eh-card--list .eh-card__body {
	padding: 12px 14px 12px 0;
}

.eh-card--list .eh-card__title {
	font-size: 15px;
	font-family: var(--eh-font);
}

.eh-mason {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	overflow: hidden;
	border-radius: 16px;
}

.eh-card--mason {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
	border: 0;
	border-right: 1px solid rgba(180, 83, 42, 0.1);
	border-bottom: 1px solid rgba(180, 83, 42, 0.1);
}

.eh-card--mason .eh-card__media {
	aspect-ratio: 16 / 10;
	flex: 0 0 auto;
}

.eh-card--mason .eh-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 3.9em;
}

.eh-card--mason:nth-child(3n + 1) .eh-card__media,
.eh-card--mason:nth-child(3n + 2) .eh-card__media {
	aspect-ratio: 16 / 10;
}

.eh-slider-wrap {
	position: relative;
}

.eh-slider {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding: 8px;
	padding: 4px 4px 12px;
	-webkit-overflow-scrolling: touch;
}

.eh-slider::-webkit-scrollbar {
	height: 6px;
}

.eh-card--slide {
	flex: 0 0 min(78%, 300px);
	scroll-snap-align: start;
}

.eh-slider__btn {
	position: absolute;
	top: 42%;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--eh-surface);
	color: var(--eh-ink);
	box-shadow: 0 6px 18px rgba(18, 22, 28, 0.12);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
}

.eh-slider__btn--prev {
	left: -6px;
}

.eh-slider__btn--next {
	right: -6px;
}

.eh-bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.eh-bento .eh-card--lead {
	grid-column: auto;
}

.eh-cinema {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.eh-card--overlay {
	position: relative;
	min-height: 0;
	height: 220px;
	aspect-ratio: auto;
	box-shadow: none;
}

.eh-card__hit {
	display: block;
	position: relative;
	height: 100%;
	min-height: 0;
	color: #fff;
	text-decoration: none;
}

.eh-card--overlay img,
.eh-card--overlay .eh-card__ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eh-card--overlay img {
	filter: grayscale(1) contrast(1.2);
	transition: filter 0.7s ease, transform 1.4s ease;
}

.eh-card--overlay:hover img,
.eh-card--overlay:focus-within img {
	filter: grayscale(0) contrast(1);
	transform: scale(1.05);
}

.eh-card__shade {
	position: absolute;
	inset: auto 0 0;
	padding: 48px 18px 18px;
	background: linear-gradient(to top, rgba(18, 22, 28, 0.78), rgba(18, 22, 28, 0));
}

.eh-card--overlay .eh-pill,
.eh-card--overlay .eh-card__title,
.eh-card--overlay .eh-card__title a {
	color: #fff;
}

.eh-card--overlay .eh-card__title {
	font-family: var(--eh-display);
	font-size: clamp(20px, 2.4vw, 30px);
	margin: 8px 0 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.eh-strip .eh-card--overlay .eh-card__title {
	font-size: clamp(18px, 1.8vw, 24px);
	-webkit-line-clamp: 4;
}

.site-footer,
.site-footer.grid-container,
#colophon,
body.separate-containers .site-footer {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	float: none !important;
	border-radius: 0 !important;
	border-top: 1px solid var(--eh-line);
	font-size: 14px;
	color: var(--eh-muted);
	background: #1b1f24;
}

.site-info {
	display: none !important;
}

.footer-widgets,
.copyright-bar {
	display: none !important;
}

.site-info .inside-site-info {
	max-width: none;
	padding: 0;
}

.eh-foot {
	max-width: 1320px;
	margin: 0 auto;
	padding: 40px 20px 28px;
	color: #c8cdd3;
}

.eh-foot__mega {
	display: none;
}

.eh-foot__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eh-foot .eh-brand {
	color: #fff !important;
	margin-bottom: 10px;
}

.eh-foot .eh-brand:hover .eh-brand__tld,
.eh-foot .eh-brand:focus-visible .eh-brand__tld {
	color: #7eb8c0;
}

.eh-foot__brand p,
.eh-foot__copy {
	color: #9aa3ad;
	font-size: 14px;
	line-height: 1.55;
	max-width: 28em;
	margin: 0;
}

.eh-foot__copy {
	font-size: 12px;
}

.eh-foot__h {
	margin: 0 0 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8b949e;
}

.eh-foot__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.eh-foot__col a {
	display: inline-block;
	padding: 5px 0;
	color: #e8eaed;
	text-decoration: none;
}

.eh-foot__col a:hover,
.eh-foot__col a:focus-visible {
	color: #7eb8c0;
}

@media (min-width: 768px) {
	.eh-foot__grid {
		grid-template-columns: 1.6fr 1fr 1fr;
		gap: 40px;
	}
}

.eh-quick-answer {
	border-left: 4px solid var(--eh-accent);
	background: var(--eh-paper);
	padding: 16px 20px;
	margin: 0 0 24px;
}

@media (min-width: 768px) {
	.eh-hero__split {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 28px;
		align-items: stretch;
	}

	.eh-spotlight {
		grid-template-columns: 1.35fr 0.85fr;
		gap: 24px;
	}

	.eh-silo__index {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 20px;
		align-items: stretch;
	}

	.eh-mason {
		grid-template-columns: repeat(3, 1fr);
		gap: 0;
	}

	.eh-card--slide {
		flex-basis: 280px;
	}

	.eh-bento {
		grid-template-columns: 1.35fr 1fr 1fr;
		grid-auto-rows: minmax(140px, auto);
		gap: 18px;
	}

	.eh-bento .eh-card:first-child {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.eh-cinema {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		min-height: 0;
		gap: 16px;
	}

	.eh-cinema .eh-card:first-child {
		grid-row: auto;
		min-height: 0;
	}

	.eh-card--compact {
		grid-template-columns: 108px 1fr;
	}

	.eh-slider__btn--prev {
		left: -10px;
	}

	.eh-slider__btn--next {
		right: -10px;
	}
}

@media (min-width: 900px) {
	.eh-hero__stage {
		grid-template-columns: 1.35fr 0.78fr;
		align-items: stretch;
		gap: 20px;
		padding: 20px 28px 32px;
	}

	.eh-hero__frame {
		height: 440px;
		min-height: 440px;
		max-height: 440px;
		align-self: stretch;
	}

	.eh-hero__glass {
		left: 18px;
		right: auto;
		bottom: 18px;
		width: min(460px, 72%);
	}

	.eh-hero__excerpt {
		display: block;
	}

	.eh-hero--cinema .eh-wizard {
		position: relative;
		left: auto;
		bottom: auto;
		width: auto;
		height: 440px;
		min-height: 440px;
		max-height: 440px;
		align-self: stretch;
		display: flex;
		flex-direction: column;
		overflow: hidden;
		box-sizing: border-box;
	}

	.eh-hero--cinema .eh-wizard__panel {
		flex: 1 1 auto;
		min-height: 0;
	}
}

@media (min-width: 1024px) {
	.inside-header.grid-container,
	.inside-navigation.grid-container {
		max-width: 1320px;
	}
}

@media (max-width: 600px) {
	.eh-brand__mark {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.eh-slider__btn {
		display: none;
	}

	.eh-silo {
		padding: 16px 12px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eh-card__media img,
	.eh-card--overlay img,
	.eh-brand__mark,
	.eh-chip,
	.eh-card__cta,
	.eh-silo__all {
		transition: none;
	}

	.eh-card__media img,
	.eh-card--overlay img {
		filter: none;
	}

	.eh-card:hover .eh-card__media img,
	.eh-card:focus-within .eh-card__media img,
	.eh-card--overlay:hover img,
	.eh-card--overlay:focus-within img,
	.eh-brand:hover .eh-brand__mark,
	.eh-brand:focus-visible .eh-brand__mark {
		transform: none;
		filter: none;
	}
}

/* â€”â€”â€” Editorial utility homepage (v2.6) â€”â€”â€” */
body.home.eh-editorial {
	background: var(--eh-paper);
	color: #111315;
}

body.home.eh-editorial .main-navigation .main-nav > ul > li {
	order: 6;
}

.eh-brand__stack {
	display: flex;
	flex-direction: column;
	gap: 1px;
	line-height: 1.1;
}

.eh-brand__line {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--eh-muted);
}

body.home.eh-editorial .main-navigation .main-nav > ul > li:has(a[href*="/blog"]) { order: 1; }
body.home.eh-editorial .main-navigation .main-nav > ul > li:has(a[href*="/eidiseis"]) { order: 1; }
body.home.eh-editorial .main-navigation .main-nav > ul > li:has(a[href*="/egov"]) { order: 2; }
body.home.eh-editorial .main-navigation .main-nav > ul > li:has(a[href*="/tech"]) { order: 3; }
body.home.eh-editorial .main-navigation .main-nav > ul > li:has(a[href*="/diy"]) { order: 4; }
body.home.eh-editorial .main-navigation .main-nav > ul > li:has(a[href*="/life"]) { order: 5; }
body.home.eh-editorial .main-navigation .main-nav > ul > li:has(a[href*="/tourism"]) { order: 6; }

@media (min-width: 769px) {
	body.home.eh-editorial .main-navigation .main-nav > ul {
		display: flex;
		flex-wrap: wrap;
	}
}

body.home.eh-editorial .eh-brand__name {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.05em;
}

body.home.eh-editorial .eh-shell {
	max-width: 1320px;
	padding: 0 32px;
}

body.home.eh-editorial .eh-home {
	padding: 0;
}

body.home.eh-editorial .eh-topics {
	border-bottom: 1px solid var(--eh-line);
	padding: 10px 0;
}

body.home.eh-editorial .eh-topics__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	overflow: hidden;
}

body.home.eh-editorial .eh-topics__kicker {
	margin: 0;
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--eh-muted);
}

body.home.eh-editorial .eh-topics__row {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
}

body.home.eh-editorial .eh-topics__row a {
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

body.home.eh-editorial .eh-topics__row a:hover {
	color: var(--eh-accent);
}

body.home.eh-editorial .eh-daily {
	padding: 36px 0 28px;
}

body.home.eh-editorial .eh-daily__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

body.home.eh-editorial .eh-daily__kicker {
	width: 100%;
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

body.home.eh-editorial .eh-daily__head h1 {
	margin: 0;
	font-family: var(--eh-display);
	font-size: clamp(32px, 4.2vw, 52px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

body.home.eh-editorial .eh-daily__head time {
	font-size: 13px;
	color: var(--eh-muted);
}

body.home.eh-editorial .eh-daily__dek {
	max-width: 42em;
	margin: 0 0 28px;
	color: var(--eh-muted);
	font-size: 16px;
}

body.home.eh-editorial .eh-daily__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

body.home.eh-editorial .eh-lead {
	min-width: 0;
}

body.home.eh-editorial .eh-lead__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--eh-radius);
	background: #ddd8cc;
}

body.home.eh-editorial .eh-lead__media img,
body.home.eh-editorial .eh-lead__media .eh-card__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: none;
}

body.home.eh-editorial .eh-lead__body {
	padding-top: 16px;
}

body.home.eh-editorial .eh-lead__title {
	margin: 6px 0 8px;
	font-family: var(--eh-display);
	font-size: clamp(28px, 3.4vw, 48px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.12;
}

body.home.eh-editorial .eh-lead__title a {
	color: inherit;
	text-decoration: none;
}

body.home.eh-editorial .eh-latest h2 {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.home.eh-editorial .eh-latest {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

body.home.eh-editorial .eh-feed {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--eh-line);
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

body.home.eh-editorial .eh-feed li {
	display: grid;
	grid-template-columns: 32px 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--eh-line);
	flex: 1 1 auto;
}

body.home.eh-editorial .eh-feed__n {
	font-size: 12px;
	font-weight: 700;
	color: var(--eh-muted);
}

body.home.eh-editorial .eh-feed a {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.35;
}

body.home.eh-editorial .eh-feed a:hover {
	color: var(--eh-accent);
}

body.home.eh-editorial .eh-feed time {
	font-size: 12px;
	color: var(--eh-muted);
}

body.home.eh-editorial .eh-seek {
	padding: 8px 0 36px;
}

body.home.eh-editorial .eh-seek h2 {
	margin: 0 0 16px;
	font-family: var(--eh-display);
	font-size: 32px;
	letter-spacing: -0.03em;
}

body.home.eh-editorial .eh-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

body.home.eh-editorial .eh-pill-out {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--eh-ink);
	border-radius: 999px;
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	background: transparent;
}

body.home.eh-editorial .eh-pill-out:hover {
	background: var(--eh-ink);
	color: #fff;
}

body.home.eh-editorial .eh-meta {
	margin: 0;
	font-size: 12px;
	color: var(--eh-muted);
}

body.home.eh-editorial .eh-pill {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--eh-accent);
	text-decoration: none;
}

body.home.eh-editorial .eh-band {
	padding: 48px 0;
}

body.home.eh-editorial .eh-band--everyday {
	background: #e8ebdd;
	--eh-silo-ink: #b94d2f;
}

body.home.eh-editorial .eh-band--egov {
	background: #08263d;
	--eh-silo-ink: #37b8d8;
	color: #f4f0e7;
}

body.home.eh-editorial .eh-band--tech {
	background: #07111f;
	--eh-silo-ink: #37b8d8;
	color: #f4f0e7;
}

body.home.eh-editorial .eh-band--tourism {
	background: #f4e7c5;
	--eh-silo-ink: var(--eh-ink);
}

body.home.eh-editorial .eh-silo__num {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--eh-silo-ink, var(--eh-accent));
}

body.home.eh-editorial .eh-silo__head h2 {
	font-family: var(--eh-display);
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 600;
	max-width: 16em;
	color: inherit;
}

body.home.eh-editorial .eh-silo__dek {
	color: inherit;
	opacity: 0.72;
}

body.home.eh-editorial .eh-silo__all {
	color: var(--eh-silo-ink, var(--eh-accent));
}

body.home.eh-editorial .eh-card {
	background: transparent;
	border: 0;
	border-radius: var(--eh-radius);
	box-shadow: none;
	backdrop-filter: none;
	overflow: hidden;
}

body.home.eh-editorial .eh-card:hover,
body.home.eh-editorial .eh-card:focus-within {
	border-radius: var(--eh-radius);
	box-shadow: none;
}

body.home.eh-editorial .eh-card__media {
	aspect-ratio: 16 / 9;
	border-radius: var(--eh-radius);
}

body.home.eh-editorial .eh-card--standard .eh-card__media,
body.home.eh-editorial .eh-card--compact .eh-card__media {
	aspect-ratio: 4 / 3;
}

body.home.eh-editorial .eh-card__media img {
	filter: none;
	transform: none;
}

body.home.eh-editorial .eh-card:hover .eh-card__media img {
	filter: none;
	transform: none;
}

body.home.eh-editorial .eh-card__title {
	font-family: var(--eh-display);
	font-weight: 600;
	letter-spacing: -0.03em;
}

body.home.eh-editorial .eh-card__title a {
	color: inherit;
}

body.home.eh-editorial .eh-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

body.home.eh-editorial .eh-split__side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

body.home.eh-editorial .eh-featgrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

body.home.eh-editorial .eh-travel__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 20px;
}

body.home.eh-editorial .eh-card--overlay {
	height: min(52vw, 420px);
	border-radius: var(--eh-radius);
}

body.home.eh-editorial .eh-card--overlay img {
	filter: none;
}

body.home.eh-editorial .eh-index {
	background: transparent;
	border: 0;
	border-radius: 0;
	height: auto;
}

body.home.eh-editorial .eh-index__kicker {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--eh-silo-ink);
}

body.home.eh-editorial .eh-card--list {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.home.eh-editorial .eh-band--egov .eh-card__title a,
body.home.eh-editorial .eh-band--tech .eh-card__title a,
body.home.eh-editorial .eh-band--egov .eh-card__excerpt,
body.home.eh-editorial .eh-band--tech .eh-card__excerpt {
	color: #f4f0e7;
}

body.home.eh-editorial .eh-answer {
	padding: 56px 0;
	background: #fff;
}

body.home.eh-editorial .eh-answer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

body.home.eh-editorial .eh-answer__kicker {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

body.home.eh-editorial .eh-answer h2 {
	margin: 0 0 16px;
	font-family: var(--eh-display);
	font-size: clamp(28px, 3.2vw, 42px);
	letter-spacing: -0.04em;
	max-width: 18em;
}

body.home.eh-editorial .eh-answer__body {
	max-width: 40em;
	font-size: 18px;
	line-height: 1.5;
}

body.home.eh-editorial .eh-answer__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--eh-radius);
	background: #ddd8cc;
}

body.home.eh-editorial .eh-answer__media img,
body.home.eh-editorial .eh-answer__media .eh-card__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.home.eh-editorial .eh-hunt {
	padding: 48px 0 40px;
	background: #fff;
	border-top: 1px solid var(--eh-line);
	border-bottom: 1px solid var(--eh-line);
}

body.home.eh-editorial .eh-hunt__kicker {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

body.home.eh-editorial .eh-hunt h2 {
	margin: 0 0 20px;
	font-family: var(--eh-display);
	font-size: clamp(28px, 3.2vw, 40px);
	letter-spacing: -0.04em;
}

body.home.eh-editorial .eh-hunt__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 24px;
}

body.home.eh-editorial .eh-hunt__tag {
	appearance: none;
	margin: 0;
	padding: 8px 14px;
	border: 1px solid var(--eh-ink);
	border-radius: 999px;
	background: transparent;
	color: var(--eh-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

body.home.eh-editorial .eh-hunt__tag:hover,
body.home.eh-editorial .eh-hunt__tag.is-active {
	background: var(--eh-ink);
	color: #fff;
}

body.home.eh-editorial .eh-hunt__grid,
body.home.eh-editorial .eh-cardgrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 16px;
}

body.home.eh-editorial .eh-hunt .eh-pill,
body.home.eh-editorial .eh-cardgrid .eh-pill {
	display: inline-block;
}

body.home.eh-editorial .eh-textlink {
	display: inline-block;
	margin-top: 16px;
	font-weight: 700;
	color: var(--eh-ink);
	text-decoration: none;
}

body.home.eh-editorial .eh-textlink:hover {
	color: var(--eh-accent);
}

body.home.eh-editorial .eh-adslot {
	display: block;
	width: 100%;
	background: transparent;
	padding: 0;
	min-height: 0;
	text-align: center;
}

body.home.eh-editorial .eh-adslot--live.eh-ad--filled {
	padding: 12px 0;
}

body.home.eh-editorial .eh-adslot__box {
	height: 90px;
	margin: 0 auto;
	border: 1px dashed var(--eh-line);
	background: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) and (max-width: 899px) {
	body.home.eh-editorial .eh-hunt__grid,
	body.home.eh-editorial .eh-cardgrid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 900px) {
	body.home.eh-editorial .eh-daily__grid {
		grid-template-columns: 1.65fr 1fr;
		gap: 40px;
		align-items: stretch;
	}

	body.home.eh-editorial .eh-split {
		grid-template-columns: 1.35fr 0.85fr;
		gap: 28px;
		align-items: start;
	}

	body.home.eh-editorial .eh-featgrid {
		grid-template-columns: 1.2fr 1fr 1fr;
		grid-template-rows: auto auto;
	}

	body.home.eh-editorial .eh-featgrid .eh-card:first-child {
		grid-row: 1 / span 2;
	}

	body.home.eh-editorial .eh-travel__row {
		grid-template-columns: 1fr 1fr;
	}

	body.home.eh-editorial .eh-silo__index {
		grid-template-columns: 1.6fr 1fr;
		gap: 32px;
		align-items: start;
	}

	body.home.eh-editorial .eh-answer__grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 40px;
	}

	body.home.eh-editorial .eh-hunt__grid,
	body.home.eh-editorial .eh-cardgrid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

body.home.eh-editorial .eh-brand__mark {
	width: 40px;
	height: 40px;
	flex-basis: 40px;
	border-radius: 50%;
}

body.home.eh-editorial .main-navigation .main-nav ul li a {
	font-size: 13px;
	letter-spacing: 0.12em;
}

body.home.eh-editorial .eh-card:not(.eh-card--overlay) .eh-pill {
	display: none;
}

body.home.eh-editorial .eh-card--compact {
	display: grid;
	grid-template-columns: 96px 1fr;
	border-radius: 0;
	border-bottom: 1px solid var(--eh-line);
	overflow: visible;
}

body.home.eh-editorial .eh-card--compact .eh-card__media {
	aspect-ratio: 1 / 1;
	border-radius: var(--eh-radius);
}

body.home.eh-editorial .eh-card--compact .eh-card__title {
	font-size: 16px;
}

body.home.eh-editorial .eh-card--lead .eh-card__media {
	flex: none;
	min-height: 0;
	aspect-ratio: 16 / 9;
}

body.home.eh-editorial .eh-card--list .eh-card__title {
	font-family: var(--eh-display);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.03em;
}

body.home.eh-editorial .eh-band--egov .eh-meta,
body.home.eh-editorial .eh-band--tech .eh-meta,
body.home.eh-editorial .eh-band--egov .eh-card__num,
body.home.eh-editorial .eh-band--tech .eh-card__num {
	color: rgba(244, 240, 231, 0.55);
}

body.home.eh-editorial .eh-band--tourism .eh-card--overlay {
	height: min(58vw, 520px);
}

body.home.eh-editorial .eh-silo__head {
	align-items: flex-end;
	margin-bottom: 28px;
}

@media (max-width: 768px) {
	body.home.eh-editorial .eh-shell {
		padding: 0 16px;
	}

	body.home.eh-editorial .eh-daily__head h1 {
		font-size: 32px;
	}

	body.home.eh-editorial .eh-lead__title {
		font-size: 32px;
	}

	body.home.eh-editorial .eh-feed li {
		grid-template-columns: 28px 1fr;
	}

	body.home.eh-editorial .eh-feed time {
		grid-column: 2;
	}

	body.home.eh-editorial .eh-silo__head {
		flex-direction: column;
		align-items: flex-start;
	}

	body.home.eh-editorial .eh-card--compact {
		grid-template-columns: 72px 1fr;
	}
}

/* ——— Pulse homepage: live + latest-by-category ——— */
.eh-live {
	border-bottom: 1px solid #e5c4c9;
	background: #f6e4e7;
	padding: 10px 0;
}

body.home .eh-live {
	border-top: 1px solid #e5c4c9;
	margin: 0;
}

.eh-live__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	overflow: hidden;
}

.eh-live__toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: default;
	appearance: none;
	-webkit-appearance: none;
}

.eh-live__hint,
.eh-live__chev {
	display: none;
}

.eh-live__viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 24px), transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 24px), transparent);
}

.eh-live__track {
	display: flex;
	align-items: center;
	gap: 36px;
	width: max-content;
	white-space: nowrap;
	animation: none !important;
	-webkit-animation: none !important;
	will-change: transform;
}

.eh-live__badge {
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #c1121f;
}

.eh-live__badge::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 6px;
	border-radius: 50%;
	background: #c1121f;
	vertical-align: middle;
}

.eh-live__item {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	flex: 0 0 auto;
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 14px;
}

.eh-live__item strong {
	color: var(--eh-accent);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eh-live__item time {
	color: var(--eh-muted);
	font-size: 12px;
}

body.home.eh-pulse .eh-lead__intro {
	margin: 8px 0;
	color: var(--eh-muted);
	font-size: 16px;
	max-width: 38em;
}

body.home.eh-pulse .eh-mod {
	padding: 40px 0;
	background: transparent;
}

body.home.eh-pulse .eh-mod--dark {
	padding: 0;
	margin: 0 0 8px;
}

body.home.eh-pulse .eh-mod--dark .eh-shell {
	background: #07111f;
	color: #f4f0e7;
	border-radius: 8px;
	padding: 32px;
}

body.home.eh-pulse .eh-mod--dark .eh-silo__dek,
body.home.eh-pulse .eh-mod--dark .eh-meta,
body.home.eh-pulse .eh-mod--dark .eh-silo__all {
	color: rgba(244, 240, 231, 0.62);
}

body.home.eh-pulse .eh-mod--dark .eh-card__title a {
	color: #f4f0e7;
}

body.home.eh-pulse .eh-visual {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

body.home.eh-pulse .eh-visual .eh-pill {
	display: inline-block;
}

body.home.eh-pulse .eh-index__kicker {
	color: var(--eh-muted);
}

.eh-archive {
	padding: 32px 0 64px;
	background: var(--eh-paper);
}

.eh-archive__kicker {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

.eh-archive h1 {
	margin: 0 0 8px;
	font-family: var(--eh-display);
	font-size: clamp(32px, 4vw, 48px);
	letter-spacing: -0.04em;
}

.eh-archive__dek {
	margin: 0 0 32px;
	color: var(--eh-muted);
	max-width: 40em;
}

.eh-archive__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (max-width: 768px) {
	.eh-live {
		padding: 0;
	}

	.eh-live__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		overflow: visible;
	}

	.eh-live__toggle {
		width: 100%;
		justify-content: flex-start;
		min-height: 44px;
		padding: 10px 0;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.eh-live__hint {
		display: inline;
		flex: 1 1 auto;
		font-size: 13px;
		font-weight: 600;
		color: var(--eh-ink);
		text-align: left;
	}

	.eh-live__chev {
		display: inline-block;
		width: 8px;
		height: 8px;
		margin-left: auto;
		border-right: 2px solid #8a4a52;
		border-bottom: 2px solid #8a4a52;
		transform: rotate(45deg);
		transition: transform 0.15s ease;
		flex: 0 0 auto;
	}

	.eh-live.is-open .eh-live__chev {
		transform: rotate(-135deg);
	}

	.eh-live:not(.is-open) .eh-live__viewport {
		display: none !important;
	}

	.eh-live.is-open .eh-live__viewport {
		display: block;
		width: 100%;
		padding: 0 0 10px;
	}

	.eh-live__track {
		flex-direction: row;
		white-space: nowrap;
		gap: 28px;
		width: max-content;
	}

	body.home.eh-pulse .eh-mod--dark .eh-shell {
		padding: 20px 16px;
		border-radius: 0;
	}
}

body.home.eh-pulse .eh-mod {
	border-top: 1px solid var(--eh-line);
}

body.home.eh-pulse .eh-mod--dark {
	border-top: 0;
	padding-top: 28px;
}

body.home.eh-pulse .eh-mod--paper .eh-card--standard,
body.home.eh-pulse .eh-mod--paper .eh-card--lead,
body.home.eh-pulse .eh-mod--paper .eh-card--compact {
	background: #fff;
}

body.home.eh-pulse .eh-card--list {
	border-bottom-color: var(--eh-line);
	background: transparent;
}

body.home.eh-pulse .eh-index__kicker {
	color: var(--eh-muted);
}

body.home.eh-pulse .eh-mod--dark .eh-card {
	background: transparent;
}

body.home.eh-pulse .eh-mod--dark .eh-card--list {
	border-bottom-color: rgba(244, 240, 231, 0.12);
}

body.home.eh-pulse .eh-mod--dark .eh-index__kicker,
body.home.eh-pulse .eh-mod--dark .eh-meta,
body.home.eh-pulse .eh-mod--dark .eh-card__num {
	color: rgba(244, 240, 231, 0.62);
}

@media (min-width: 900px) {
	.eh-navsearch input[type="search"] {
		width: 220px;
		opacity: 1;
		pointer-events: auto;
		padding: 0 12px;
		border: 1px solid var(--eh-line);
		border-right: 0;
	}

	.eh-navsearch button {
		border: 1px solid var(--eh-line);
	}
}

/* V3 â€” layers, photography, color as signal */
body.home.eh-editorial.eh-pulse .eh-live {
	background: #f6e4e7;
	border-bottom: 1px solid #e5c4c9;
}

body.home.eh-editorial.eh-pulse .eh-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 10px 0 0;
	border-radius: 50%;
	background: var(--eh-signal, var(--eh-accent));
	vertical-align: middle;
}

body.home.eh-editorial.eh-pulse .eh-mod--cat-egov { --eh-signal: #0f766e; }
body.home.eh-editorial.eh-pulse .eh-mod--cat-life { --eh-signal: #e07060; }
body.home.eh-editorial.eh-pulse .eh-mod--cat-tech { --eh-signal: #6ea8ff; }
body.home.eh-editorial.eh-pulse .eh-mod--cat-diy { --eh-signal: #3d8b5a; }
body.home.eh-editorial.eh-pulse .eh-mod--cat-tourism { --eh-signal: #c9a227; }

body.home.eh-editorial.eh-pulse .eh-silo__head h2 {
	font-size: clamp(26px, 2.6vw, 36px);
}

body.home.eh-editorial.eh-pulse .eh-silo__all {
	color: var(--eh-ink);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.home.eh-editorial.eh-pulse .eh-mod--paper .eh-card--standard,
body.home.eh-editorial.eh-pulse .eh-mod--paper .eh-card--lead,
body.home.eh-editorial.eh-pulse .eh-mod--paper .eh-card--compact {
	background: transparent;
}

body.home.eh-editorial.eh-pulse .eh-card--list .eh-card__title {
	font-family: var(--eh-font);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
}

body.home.eh-editorial.eh-pulse .eh-feed a {
	font-family: var(--eh-font);
	font-weight: 600;
}

body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__hit {
	display: block;
	position: relative;
	overflow: hidden;
	color: #f4f0e7;
	text-decoration: none;
	border-radius: 4px;
}

body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__media {
	display: block;
	aspect-ratio: 3 / 2;
	min-height: 340px;
	border-radius: 0;
	background: #1a1c1f;
}

body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__media img,
body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__media .eh-card__ph {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__glass {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 72px 28px 24px;
	background: linear-gradient(to top, rgba(7, 11, 18, 0.88) 8%, rgba(7, 11, 18, 0));
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__title {
	margin: 0;
	color: #fff;
	font-size: clamp(28px, 3.2vw, 46px);
	text-shadow: none;
}

body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__intro {
	max-width: 36em;
	color: rgba(244, 240, 231, 0.82);
	font-family: var(--eh-font);
	font-size: 15px;
	line-height: 1.45;
}

body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-meta,
body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-pill {
	color: #fff;
}

body.home.eh-editorial.eh-pulse .eh-silo__index .eh-card--overlay {
	height: 100%;
	min-height: 420px;
}

body.home.eh-editorial.eh-pulse .eh-card--overlay {
	height: 280px;
}

body.home.eh-editorial.eh-pulse .eh-card__shade {
	padding: 64px 18px 18px;
	background: linear-gradient(to top, rgba(7, 11, 18, 0.86) 12%, rgba(7, 11, 18, 0.2) 58%, transparent);
}

body.home.eh-editorial.eh-pulse .eh-card--overlay img {
	filter: none;
	transform: none;
}

body.home.eh-editorial.eh-pulse .eh-card--overlay:hover img,
body.home.eh-editorial.eh-pulse .eh-card--overlay:focus-within img {
	filter: none;
	transform: none;
}

body.home.eh-editorial.eh-pulse .eh-mod--dark {
	background: #07111f;
	padding: 48px 0 56px;
	margin: 0;
	border-top: 0;
}

body.home.eh-editorial.eh-pulse .eh-mod--dark .eh-shell {
	background: transparent;
	border-radius: 0;
	padding: 0;
	color: #f4f0e7;
}

body.home.eh-editorial.eh-pulse .eh-mod--dark .eh-silo__head h2 {
	color: #fff;
}

body.home.eh-editorial.eh-pulse .eh-mod--dark .eh-silo__all {
	color: rgba(244, 240, 231, 0.7);
}

body.home.eh-editorial.eh-pulse .eh-featgrid .eh-card--lead {
	height: 100%;
}

body.home.eh-editorial.eh-pulse .eh-featgrid .eh-card--lead .eh-card__media {
	flex: 1 1 auto;
	aspect-ratio: auto;
	min-height: 240px;
}

body.home.eh-editorial.eh-pulse .eh-featgrid .eh-card--lead .eh-card__title {
	font-size: clamp(26px, 2.4vw, 36px);
	color: #fff;
}

body.home.eh-editorial.eh-pulse .eh-featgrid .eh-card--standard .eh-card__title {
	font-family: var(--eh-font);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

body.home.eh-editorial.eh-pulse .eh-howto {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

body.home.eh-editorial.eh-pulse .eh-howto__lead .eh-card--overlay {
	height: min(58vw, 480px);
}

body.home.eh-editorial.eh-pulse .eh-howto__side {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

body.home.eh-editorial.eh-pulse .eh-howto__side .eh-card--overlay {
	height: min(42vw, 240px);
}

body.home.eh-editorial.eh-pulse .eh-strip {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

body.home.eh-editorial.eh-pulse .eh-strip .eh-card--overlay {
	height: min(58vw, 320px);
}

body.home.eh-editorial.eh-pulse .eh-strip .eh-card:first-child {
	min-height: 0;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	align-items: start;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-visual__lead .eh-card--overlay {
	height: min(62vw, 420px);
	min-height: 280px;
	aspect-ratio: auto;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-visual__side {
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: flex-start;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact {
	display: grid !important;
	grid-template-columns: 88px minmax(0, 1fr);
	align-items: center;
	background: transparent;
	border-bottom: 1px solid var(--eh-line);
	padding: 10px 0;
	margin: 0;
	flex: none;
	min-height: 0;
	overflow: hidden;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact .eh-card__media {
	grid-column: 1;
	grid-row: 1;
	position: relative;
	width: 88px;
	height: 88px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 10px;
	flex: none;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact .eh-card__media img,
body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact .eh-card__ph {
	position: static;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact .eh-card__body {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	z-index: 1;
	padding: 4px 0 4px 14px;
	background: transparent;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact .eh-card__title {
	font-size: 15px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

body.home.eh-editorial.eh-pulse .eh-mod--dark .eh-visual--feature .eh-card--compact {
	border-bottom-color: rgba(244, 240, 231, 0.14);
}

body.home.eh-editorial.eh-pulse .eh-mod--paper .eh-visual--feature .eh-card--compact .eh-card__title a {
	color: var(--eh-ink);
}

body.home.eh-editorial.eh-pulse .eh-mod--dark .eh-visual--feature .eh-card--compact .eh-card__title a {
	color: #f4f0e7;
}

body.home.eh-editorial.eh-pulse .eh-mod--dark .eh-visual--feature .eh-card--compact .eh-meta {
	color: rgba(244, 240, 231, 0.62);
}

@media (min-width: 900px) {
	body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__media {
		aspect-ratio: auto;
		min-height: 480px;
		height: 100%;
	}

	body.home.eh-editorial.eh-pulse .eh-lead--cinema,
	body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__hit {
		height: 100%;
	}

	body.home.eh-editorial.eh-pulse .eh-featgrid {
		grid-template-columns: 1.45fr 1fr;
		grid-template-rows: auto auto auto;
		gap: 22px 28px;
	}

	body.home.eh-editorial.eh-pulse .eh-featgrid .eh-card:first-child {
		grid-row: 1 / span 3;
		height: 100%;
	}

	body.home.eh-editorial.eh-pulse .eh-featgrid .eh-card:first-child.eh-card--overlay {
		height: 560px;
		min-height: 560px;
	}

	body.home.eh-editorial.eh-pulse .eh-visual--feature {
		grid-template-columns: 1.45fr 0.9fr;
		gap: 28px 32px;
		align-items: start;
	}

	body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-visual__lead,
	body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-visual__lead .eh-card--overlay,
	body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-visual__lead .eh-card__hit {
		height: 520px;
		min-height: 520px;
	}

	body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-visual__lead .eh-card--overlay {
		aspect-ratio: auto;
	}

	body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-visual__side {
		height: auto;
	}

	body.home.eh-editorial.eh-pulse .eh-visual--feature .eh-card--compact {
		flex: none;
	}

	body.home.eh-editorial.eh-pulse .eh-howto {
		grid-template-columns: 1.45fr 1fr;
		gap: 20px;
		align-items: stretch;
	}

	body.home.eh-editorial.eh-pulse .eh-howto__lead .eh-card--overlay,
	body.home.eh-editorial.eh-pulse .eh-howto__side {
		height: 100%;
	}

	body.home.eh-editorial.eh-pulse .eh-howto__lead .eh-card--overlay {
		height: 520px;
	}

	body.home.eh-editorial.eh-pulse .eh-howto__side .eh-card--overlay {
		height: 250px;
	}

	body.home.eh-editorial.eh-pulse .eh-strip {
		grid-template-columns: 1.3fr 1fr 1fr;
		gap: 12px;
	}

	body.home.eh-editorial.eh-pulse .eh-strip .eh-card--overlay {
		height: 420px;
	}

	body.home.eh-editorial.eh-pulse .eh-strip .eh-card:first-child {
		height: 420px;
	}
}

@media (max-width: 768px) {
	body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__glass {
		padding: 48px 16px 16px;
	}

	body.home.eh-editorial.eh-pulse .eh-lead--cinema .eh-lead__intro {
		display: none;
	}

	body.home.eh-editorial.eh-pulse .eh-silo__index .eh-card--overlay {
		min-height: 280px;
	}
}

@media (min-width: 900px) {
	body.home.eh-pulse .eh-visual {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

body.eh-list .site-content,
body.eh-list #content,
body.eh-list #primary,
body.eh-list .content-area,
body.eh-list .site-main {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
}

body.eh-list .sidebar,
body.eh-list .widget-area,
body.eh-list #right-sidebar,
body.eh-list #left-sidebar {
	display: none !important;
}

body.eh-list .eh-shell {
	padding-left: 16px;
	padding-right: 16px;
}

body.eh-list .eh-archive {
	padding: 20px 0 64px;
}

.eh-list__head {
	padding: 4px 0 24px;
	border-bottom: 1px solid var(--eh-line);
	margin-bottom: 24px;
}

.eh-list__kicker {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

.eh-list__head h1 {
	margin: 0 0 10px;
	font-family: var(--eh-display);
	font-size: clamp(34px, 7vw, 56px);
	letter-spacing: -0.045em;
	line-height: 1.05;
	font-weight: 600;
}

.eh-list__dek {
	margin: 0;
	color: var(--eh-muted);
	max-width: 38em;
	font-size: 16px;
	line-height: 1.5;
}

.eh-list__count {
	margin: 12px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--eh-muted);
}

.eh-list__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.eh-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid var(--eh-line);
	background: #fff;
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 13px;
	font-weight: 650;
	line-height: 1;
}

.eh-chip__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	color: inherit;
}

.eh-chip__ico svg {
	display: block;
	width: 18px;
	height: 18px;
}

.eh-chip__txt {
	display: inline-block;
}

.eh-chip:hover,
.eh-chip:focus-visible {
	border-color: var(--eh-ink);
	color: var(--eh-ink);
}

.eh-chip.is-active {
	background: var(--eh-ink);
	border-color: var(--eh-ink);
	color: #fff;
}

.eh-chip--egov {
	background: #e6f3f1;
	border-color: #b7ddd8;
	color: #0a5c56;
}

.eh-chip--diy {
	background: #fef3c7;
	border-color: #f6de95;
	color: #92400e;
}

.eh-chip--life {
	background: #fce8ee;
	border-color: #f3c4d1;
	color: #9f1239;
}

.eh-chip--tech {
	background: #e0f2fe;
	border-color: #bae6fd;
	color: #075985;
}

.eh-chip--tourism {
	background: #d1fae5;
	border-color: #a7f3d0;
	color: #065f46;
}

.eh-chip--pillar:hover,
.eh-chip--pillar:focus-visible {
	filter: brightness(0.97);
	border-color: currentColor;
	color: inherit;
}

.eh-chip--egov.is-active {
	background: #0f766e;
	border-color: #0f766e;
	color: #fff;
}

.eh-chip--diy.is-active {
	background: #d97706;
	border-color: #d97706;
	color: #fff;
}

.eh-chip--life.is-active {
	background: #e11d48;
	border-color: #e11d48;
	color: #fff;
}

.eh-chip--tech.is-active {
	background: #0284c7;
	border-color: #0284c7;
	color: #fff;
}

.eh-chip--tourism.is-active {
	background: #059669;
	border-color: #059669;
	color: #fff;
}

@media (min-width: 769px) {
	.main-navigation .eh-nav-pillar > a {
		display: inline-flex !important;
		align-items: center;
		gap: 6px;
	}

	.main-navigation .eh-nav-pillar__ico {
		display: inline-flex;
		width: 16px;
		height: 16px;
		opacity: 0.85;
	}

	.main-navigation .eh-nav-pillar__ico svg {
		width: 16px;
		height: 16px;
	}
}

.eh-list__lead {
	margin: 0 0 20px;
}

.eh-list__lead .eh-card--lead {
	display: grid;
	grid-template-columns: 1fr;
	background: #fff;
}

.eh-list__lead .eh-card__media {
	aspect-ratio: 16 / 10;
}

.eh-list__lead .eh-card__body {
	padding: 18px 18px 20px;
}

.eh-list__lead .eh-card__title {
	font-family: var(--eh-display);
	font-size: clamp(24px, 5vw, 40px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.12;
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.eh-list__lead .eh-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
}

.eh-list .eh-meta {
	margin: 6px 0 0;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--eh-muted);
}

body.eh-list .eh-card p {
	margin-bottom: 0;
}

.eh-list__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: stretch;
}

.eh-list__grid .eh-card--standard {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	align-items: stretch;
	background: #fff;
}

.eh-list__grid .eh-card__media {
	position: relative;
	aspect-ratio: auto;
	width: 100%;
	height: auto;
	min-height: 112px;
	align-self: stretch;
	overflow: hidden;
}

.eh-list__grid .eh-card__media img,
.eh-list__grid .eh-card__media .eh-card__ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eh-list__grid .eh-card__body {
	padding: 10px 12px 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	gap: 2px;
}

.eh-list__grid .eh-pill {
	margin-bottom: 2px;
}

.eh-list__grid .eh-card__title {
	font-size: 15px;
	line-height: 1.28;
	-webkit-line-clamp: 3;
}

.eh-list__grid .eh-card__excerpt {
	display: none;
	margin: 0;
}

.eh-list__grid .eh-meta {
	margin-top: 6px;
	flex-shrink: 0;
}

.eh-list__pager {
	margin-top: 32px;
}

.eh-list__pager--simple {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: stretch;
}

.eh-list__pager-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}

.eh-list__pager-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid var(--eh-line);
	background: #fff;
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 650;
}

.eh-list__pager-btn:hover,
.eh-list__pager-btn:focus-visible {
	border-color: var(--eh-ink);
}

.eh-list__pager-btn.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.eh-list__pager-status {
	font-size: 13px;
	font-weight: 600;
	color: var(--eh-muted);
	text-align: center;
	flex: 1 1 auto;
}

.eh-list__years {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.eh-list__year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--eh-line);
	background: #fff;
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 13px;
	font-weight: 650;
}

.eh-list__year:hover,
.eh-list__year:focus-visible {
	border-color: var(--eh-ink);
}

.eh-list__year.is-active {
	background: var(--eh-ink);
	border-color: var(--eh-ink);
	color: #fff;
}

.eh-list__pager .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.eh-list__pager .page-numbers {
	display: none;
}

.eh-list__pager .page-numbers.prev,
.eh-list__pager .page-numbers.next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid var(--eh-line);
	background: #fff;
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 650;
}

.eh-list__empty {
	padding: 48px 8px 24px;
	text-align: center;
	color: var(--eh-muted);
}

.eh-list__empty .eh-card__cta {
	margin-top: 18px;
}

.eh-find {
	display: flex;
	align-items: stretch;
	max-width: 560px;
	margin: 18px 0 0;
}

.eh-find input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	height: 52px;
	padding: 0 16px;
	border: 1px solid var(--eh-line);
	border-right: 0;
	border-radius: 999px 0 0 999px;
	background: #fff;
	color: var(--eh-ink);
	font: inherit;
	font-size: 16px;
	-webkit-appearance: none;
	appearance: none;
}

.eh-find input[type="search"]:focus {
	outline: none;
	border-color: var(--eh-ink);
}

.eh-find button {
	flex: 0 0 auto;
	height: 52px;
	padding: 0 20px;
	border: 1px solid var(--eh-ink);
	border-radius: 0 999px 999px 0;
	background: var(--eh-ink);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 650;
	cursor: pointer;
}

.eh-find button:hover,
.eh-find button:focus-visible {
	background: var(--eh-accent);
	border-color: var(--eh-accent);
}

.eh-404 .eh-list__head {
	margin-bottom: 8px;
}

.eh-404__recent {
	margin-top: 28px;
}

.eh-404__recent h2 {
	margin: 0 0 16px;
	font-family: var(--eh-display);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.eh-404 .eh-list__empty {
	padding-top: 28px;
	text-align: left;
}

.eh-author__head {
	padding: 4px 0 28px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--eh-line);
}

.eh-author__card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 0 16px;
	align-items: start;
}

.eh-author__media {
	position: relative;
	width: 92px;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: var(--eh-paper);
	flex-shrink: 0;
}

.eh-author__media img,
.eh-author__media .eh-team__photo,
.eh-author__media .avatar {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: 50% 12%;
	max-width: none !important;
}

.eh-author__body h1 {
	margin: 0 0 8px;
	font-family: var(--eh-display);
	font-size: clamp(30px, 6.4vw, 52px);
	letter-spacing: -0.045em;
	line-height: 1.05;
	font-weight: 600;
}

.eh-author__body .eh-pill {
	margin: 0 0 4px;
}

.eh-author__bio {
	margin: 12px 0 0;
	color: var(--eh-muted);
	max-width: 44em;
	font-size: 16px;
	line-height: 1.55;
}

.eh-author__bio p {
	margin: 0 0 0.75em;
}

.eh-author__bio p:last-child {
	margin-bottom: 0;
}

.eh-author__edu {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--eh-ink);
}

.eh-author__edu a {
	color: var(--eh-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--eh-line);
}

.eh-author__edu a:hover,
.eh-author__edu a:focus-visible {
	color: var(--eh-accent-ink);
	border-bottom-color: var(--eh-accent);
}

.eh-author__stats {
	margin: 14px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--eh-muted);
}

.eh-author__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin: 14px 0 0;
	font-size: 13px;
	font-weight: 650;
}

.eh-author__social a {
	color: var(--eh-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--eh-line);
}

.eh-author__social a:hover,
.eh-author__social a:focus-visible {
	color: var(--eh-accent-ink);
	border-bottom-color: var(--eh-accent);
}

.eh-author__label {
	margin: 22px 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--eh-muted);
}

.eh-author__head .eh-list__chips {
	margin-top: 0;
}

.eh-author__peers {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 14px;
	margin: 20px 0 0;
	font-size: 14px;
	color: var(--eh-muted);
}

.eh-author__peers span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	width: 100%;
}

.eh-author__peers a {
	color: var(--eh-ink);
	text-decoration: none;
	font-weight: 650;
}

.eh-author__peers a:hover,
.eh-author__peers a:focus-visible {
	color: var(--eh-accent-ink);
}

.eh-author__about {
	border-bottom: 1px solid var(--eh-line);
}

.eh-author__guides {
	margin: 24px 0 16px;
	font-family: var(--eh-display);
	font-size: clamp(24px, 4vw, 32px);
	letter-spacing: -0.03em;
	font-weight: 600;
}

@media (min-width: 700px) {
	.eh-author__card {
		grid-template-columns: 168px minmax(0, 1fr);
		gap: 0 28px;
	}

	.eh-author__media {
		width: 168px;
		aspect-ratio: 4 / 5;
		border-radius: 22px;
	}

	.eh-author__bio {
		font-size: 17px;
	}

	.eh-author__peers span {
		width: auto;
		margin-right: 4px;
	}
}

@media (min-width: 700px) {
	body.eh-list .eh-shell {
		padding-left: 28px;
		padding-right: 28px;
	}

	.eh-list__lead .eh-card--lead {
		grid-template-columns: 1.15fr 0.85fr;
		min-height: 340px;
	}

	.eh-list__lead .eh-card__media {
		aspect-ratio: auto;
		min-height: 340px;
		height: 100%;
	}

	.eh-list__lead .eh-card__body {
		padding: 28px 28px 32px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.eh-list__grid {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.eh-list__grid .eh-card--standard {
		grid-template-columns: 1fr;
	}

	.eh-list__grid .eh-card--ad,
	.eh-list__grid .eh-card--ad .eh-adslot--live,
	.eh-list__grid .eh-card--ad ins.adsbygoogle {
		min-height: 100%;
		height: 100%;
	}

	.eh-list__grid .eh-card__media {
		aspect-ratio: 16 / 10;
		min-height: 0;
		height: auto;
	}

	.eh-list__grid .eh-card__media img,
	.eh-list__grid .eh-card__media .eh-card__ph {
		position: static;
	}

	.eh-list__grid .eh-card__body {
		padding: 14px 16px 16px;
		gap: 0;
	}

	.eh-list__grid .eh-card__title {
		font-size: 18px;
		line-height: 1.3;
	}

	.eh-list__grid .eh-card__excerpt {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		margin-top: 8px;
	}
}

@media (min-width: 1024px) {
	.eh-list__head {
		padding-top: 12px;
		padding-bottom: 28px;
		margin-bottom: 28px;
	}

	.eh-list__grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 22px;
	}

	.eh-list__lead .eh-card--lead {
		grid-template-columns: 1.35fr 1fr;
		min-height: 400px;
	}

	.eh-list__lead .eh-card__media {
		min-height: 400px;
	}
}

@media (hover: none) {
	body.eh-list .eh-card:hover,
	body.eh-list .eh-card:focus-within {
		border-radius: 22px;
		transform: none;
	}

	body.eh-list .eh-card:hover .eh-card__media img,
	body.eh-list .eh-card:focus-within .eh-card__media img {
		transform: none;
	}
}

body.eh-page,
body.eh-list {
	background: var(--eh-bg);
}

body.eh-page .site-content,
body.eh-page #content,
body.eh-page #primary,
body.eh-page .content-area,
body.eh-page .site-main {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
}

body.eh-page .sidebar,
body.eh-page .widget-area,
body.eh-page #right-sidebar,
body.eh-page #left-sidebar {
	display: none !important;
}

body.eh-page .eh-shell {
	padding-left: 16px;
	padding-right: 16px;
}

.eh-page-main {
	padding: 20px 0 72px;
}

.eh-page__head {
	padding: 4px 0 24px;
	border-bottom: 1px solid var(--eh-line);
	margin-bottom: 28px;
}

.eh-page__kicker {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

.eh-page__head h1 {
	margin: 0;
	font-family: var(--eh-display);
	font-size: clamp(32px, 7vw, 56px);
	letter-spacing: -0.045em;
	line-height: 1.05;
	font-weight: 600;
}

.eh-page__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.eh-page__prose {
	max-width: 42em;
	font-size: 17px;
	line-height: 1.7;
	color: var(--eh-ink);
	text-align: left;
}

.eh-page__prose,
.eh-page__prose p,
.eh-page__prose h2,
.eh-page__prose h3,
.eh-page__prose li,
.eh-page__prose ul {
	text-align: left !important;
}

.eh-page__prose ul,
.eh-page__prose ol {
	padding-left: 1.25em;
}

.eh-page__prose img:first-child {
	max-width: 220px;
	display: block;
	margin: 0 0 24px;
}

.eh-page__prose > *:first-child {
	margin-top: 0;
}

.eh-page__prose h2,
.eh-page__prose h3 {
	font-family: var(--eh-display);
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin: 1.6em 0 0.5em;
}

.eh-page__prose h2 {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 600;
}

.eh-page__prose p,
.eh-page__prose li {
	color: #3a3a38;
}

.eh-page__prose a {
	color: var(--eh-accent-ink);
}

.eh-page__prose img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

.eh-contact {
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 22px;
	padding: 22px 22px 24px;
	margin: 0 0 28px;
	max-width: 36em;
}

.eh-contact__label {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

.eh-contact__mail {
	display: inline-block;
	font-family: var(--eh-display);
	font-size: clamp(22px, 5vw, 32px);
	font-weight: 600;
	letter-spacing: -0.03em;
	color: var(--eh-ink);
	text-decoration: none;
	line-height: 1.2;
	word-break: break-word;
}

.eh-contact__mail:hover,
.eh-contact__mail:focus-visible {
	color: var(--eh-accent);
}

.eh-contact__hint {
	margin: 10px 0 0;
	color: var(--eh-muted);
	font-size: 15px;
}

.eh-team {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--eh-line);
}

.eh-team h2 {
	margin: 0 0 8px;
	font-family: var(--eh-display);
	font-size: clamp(28px, 4vw, 40px);
	letter-spacing: -0.04em;
	font-weight: 600;
}

.eh-team__dek {
	margin: 0 0 24px;
	color: var(--eh-muted);
	max-width: 36em;
}

.eh-team__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.eh-team__card {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 0 14px;
	align-items: start;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 22px;
	overflow: hidden;
	padding: 14px;
}

.eh-team__media {
	position: relative;
	display: block;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--eh-paper);
	flex-shrink: 0;
}

.eh-team__media img,
.eh-team__photo {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: 50% 12%;
	max-width: none !important;
}

.eh-team__body {
	min-width: 0;
}

.eh-team__body .eh-pill {
	margin-bottom: 4px;
}

.eh-team__name {
	margin: 0;
	font-family: var(--eh-display);
	font-size: 22px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 600;
}

.eh-team__name a {
	color: var(--eh-ink);
	text-decoration: none;
}

.eh-team__name a:hover,
.eh-team__name a:focus-visible {
	color: var(--eh-accent);
}

.eh-team__bio {
	margin: 8px 0 0;
	color: var(--eh-muted);
	font-size: 14px;
	line-height: 1.45;
}

.eh-team__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 650;
}

.eh-team__social a {
	color: var(--eh-ink);
	text-decoration: none;
}

.eh-team__social a:hover,
.eh-team__social a:focus-visible {
	color: var(--eh-accent);
}

.eh-team__more {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 700;
}

.eh-team__more a {
	color: var(--eh-accent-ink);
	text-decoration: none;
}

@media (min-width: 700px) {
	body.eh-page .eh-shell {
		padding-left: 28px;
		padding-right: 28px;
	}

	.eh-page__prose {
		font-size: 18px;
	}

	.eh-team__grid {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.eh-team__card {
		grid-template-columns: 1fr;
		padding: 0 0 18px;
	}

	.eh-team__media {
		width: 100%;
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 5;
		border-radius: 0;
	}

	.eh-team__body {
		padding: 4px 18px 0;
	}
}

@media (min-width: 1024px) {
	.eh-team__grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 22px;
	}

	.eh-page-main {
		padding-top: 28px;
	}
}

@media (hover: none) {
	body.eh-page .eh-card:hover,
	body.eh-page .eh-card:focus-within {
		border-radius: 22px;
		transform: none;
	}
}

body.eh-article {
	background: var(--eh-bg);
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.eh-article .site-content,
body.eh-article #content,
body.eh-article #primary,
body.eh-article .content-area,
body.eh-article .site-main {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
}

body.eh-article .sidebar,
body.eh-article .widget-area,
body.eh-article #right-sidebar,
body.eh-article #left-sidebar,
body.eh-article .inside-article .entry-header,
body.eh-article .page-header {
	display: none !important;
}

.eh-readbar {
	position: fixed;
	top: var(--eh-header-h, 72px);
	left: 0;
	right: 0;
	height: 3px;
	z-index: 35;
	background: transparent;
	pointer-events: none;
}

.eh-readbar span {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--eh-accent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 80ms linear;
}

.eh-article-main {
	padding: 12px 0 72px;
}

.eh-article-main .eh-article {
	padding-left: 16px;
	padding-right: 16px;
	max-width: 1180px;
	margin: 0 auto;
}

.eh-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 8px;
	align-items: center;
	margin: 0 0 18px;
	font-size: 13px;
	color: var(--eh-muted);
}

.eh-crumbs a {
	color: var(--eh-muted);
	text-decoration: none;
}

.eh-crumbs a:hover,
.eh-crumbs a:focus-visible {
	color: var(--eh-link-hover);
}

.eh-article__head {
	max-width: 46em;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 8px;
	text-align: center;
}

.eh-article__head .eh-pill {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 12px;
}

.eh-article__head .eh-pill--news {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--eh-accent);
	color: #fff;
	letter-spacing: 0.1em;
}

.eh-article__head h1 {
	margin: 0;
	font-family: var(--eh-display);
	font-size: clamp(28px, 6.4vw, 52px);
	letter-spacing: -0.045em;
	line-height: 1.08;
	font-weight: 600;
	text-wrap: balance;
}

.eh-article__dek {
	margin: 14px auto 0;
	max-width: 36em;
	font-size: 18px;
	line-height: 1.45;
	color: var(--eh-muted);
}

.eh-article__when {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--eh-muted);
}

.eh-byline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
	text-align: left;
}

.eh-byline__photo {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--eh-paper);
	flex-shrink: 0;
}

.eh-byline__photo--lg {
	width: 72px;
	height: 72px;
}

.eh-byline__photo img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: 50% 12%;
}

.eh-byline__name {
	display: block;
	color: var(--eh-ink);
	text-decoration: none;
	font-weight: 650;
	font-size: 15px;
}

.eh-byline__name:hover,
.eh-byline__name:focus-visible {
	color: var(--eh-link);
}

.eh-byline__when {
	margin: 2px 0 0;
	font-size: 13px;
	color: var(--eh-muted);
}

.eh-article__hero {
	margin: 22px 0 0;
	border-radius: 22px;
	overflow: hidden;
	background: var(--eh-paper);
	aspect-ratio: 16 / 10;
}

.eh-article__hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eh-article__layout {
	margin-top: 28px;
}

.eh-rail {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 0 24px;
}

.eh-toc {
	margin: 0;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 18px;
	padding: 4px 16px;
}

.eh-toc summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	padding: 12px 0;
	list-style: none;
}

.eh-toc summary::-webkit-details-marker {
	display: none;
}

.eh-toc ol {
	margin: 0 0 12px;
	padding: 0 0 4px 1.15em;
}

.eh-toc a {
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.45;
}

.eh-toc a:hover,
.eh-toc a:focus-visible {
	color: var(--eh-link);
}

.eh-rail__author {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 18px;
	padding: 14px;
}

.eh-rail__photo {
	position: relative;
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--eh-paper);
}

.eh-rail__photo img,
.eh-rail__photo .eh-team__photo,
.eh-rail__photo .avatar {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: 50% 12%;
}

.eh-rail__name {
	margin: 2px 0 6px;
	font-family: var(--eh-display);
	font-size: 20px;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.eh-rail__name a {
	color: var(--eh-ink);
	text-decoration: none;
}

.eh-rail__name a:hover,
.eh-rail__name a:focus-visible {
	color: var(--eh-accent);
}

.eh-rail__bio {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--eh-muted);
}

.eh-rail__more {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 650;
}

.eh-rail__more a {
	color: var(--eh-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--eh-line);
}

.eh-rail__more a:hover,
.eh-rail__more a:focus-visible {
	color: var(--eh-accent-ink);
	border-bottom-color: var(--eh-accent);
}

.eh-rail__ad:empty {
	display: none;
}

.eh-rail__ad .eh-adslot {
	min-height: 0;
	background: #efe8dc;
	border-radius: 16px;
	overflow: hidden;
	padding: 8px;
}

.eh-rail__ad img,
.eh-rail__ad iframe,
.eh-rail__ad ins {
	display: block;
	max-width: 100%;
	height: auto;
}

.eh-rail__ad script {
	display: none !important;
}

.eh-article__prose {
	max-width: 40em;
	font-size: 18px;
	line-height: 1.7;
	color: var(--eh-ink);
}

.eh-article__prose,
.eh-article__prose p,
.eh-article__prose h2,
.eh-article__prose h3,
.eh-article__prose li {
	text-align: left !important;
}

.eh-article__prose > *:first-child {
	margin-top: 0;
}

.eh-article__prose > p.eh-dek {
	font-size: 1.05em;
	line-height: 1.45;
	color: var(--eh-muted);
	margin: 0 0 1.1em;
}

.eh-article__prose h2,
.eh-article__prose h3 {
	font-family: var(--eh-display);
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin: 1.55em 0 0.5em;
	scroll-margin-top: calc(var(--eh-header-h, 72px) + 16px);
}

.eh-article__prose h2 {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 600;
}

.eh-article__prose h3 {
	font-size: 22px;
	font-weight: 600;
}

.eh-article__prose p,
.eh-article__prose li {
	color: #3a3a38;
}

.eh-article__prose a {
	color: var(--eh-link);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}

.eh-article__prose a:hover,
.eh-article__prose a:focus-visible {
	color: var(--eh-link-hover);
	text-decoration-thickness: 2px;
}

.eh-article__prose ul,
.eh-article__prose ol {
	padding-left: 1.2em;
}

.eh-article__prose ol {
	padding-left: 0;
	counter-reset: eh-step;
	list-style: none;
}

.eh-article__prose ol > li {
	position: relative;
	padding: 12px 0 12px 52px;
	border-bottom: 1px solid var(--eh-line);
	counter-increment: eh-step;
}

.eh-article__prose ol > li::before {
	content: counter(eh-step);
	position: absolute;
	left: 0;
	top: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--eh-line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	color: var(--eh-accent-ink);
}

.eh-article__prose img,
.eh-article__prose figure {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

.eh-article__prose figure {
	margin: 1.4em 0;
}

.eh-article__prose figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--eh-muted);
}

.eh-article__prose blockquote {
	margin: 1.4em 0;
	padding: 4px 0 4px 16px;
	border-left: 3px solid var(--eh-accent);
	font-family: var(--eh-display);
	font-size: 1.05em;
}

.eh-article__prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	margin: 1.4em 0;
	display: block;
	overflow-x: auto;
}

.eh-article__prose th,
.eh-article__prose td {
	border-bottom: 1px solid var(--eh-line);
	padding: 8px 10px;
	text-align: left;
}

.eh-article__prose details {
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 14px;
	padding: 10px 16px;
	margin: 12px 0;
}

.eh-article__prose summary {
	cursor: pointer;
	font-weight: 650;
}

body.eh-article .eh-adwrap {
	display: block;
	height: auto;
	min-height: 0;
	margin: 20px 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	overflow: visible;
	text-align: center;
}

body.eh-article .eh-adwrap.eh-ad--empty {
	display: none !important;
	margin: 0 !important;
	min-height: 0 !important;
}

body.eh-article .eh-adwrap ins.adsbygoogle,
body.eh-article .eh-adwrap iframe {
	display: block !important;
	width: 100% !important;
	margin-left: auto;
	margin-right: auto;
}

body.eh-article .ehowto-gnews-container {
	margin: 28px 0;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 18px;
	padding: 4px;
}

body.eh-article .ehowto-gnews-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	text-decoration: none;
	color: var(--eh-ink);
}

.eh-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
}

.eh-article__tags a {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--eh-line);
	color: var(--eh-ink);
	text-decoration: none;
	font-size: 13px;
	font-weight: 650;
}

.eh-article__tags a:hover,
.eh-article__tags a:focus-visible {
	color: var(--eh-link);
}

.eh-share {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 22px 0 0;
}

.eh-share__btn {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid var(--eh-line);
	background: #fff !important;
	color: var(--eh-ink) !important;
	border-radius: 999px;
	padding: 8px 14px;
	font: inherit;
	font-size: 13px;
	font-weight: 650;
	cursor: pointer;
	box-shadow: none;
	transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.eh-share__btn:hover,
.eh-share__btn:focus-visible {
	background: var(--eh-accent) !important;
	border-color: var(--eh-accent) !important;
	color: #fff !important;
}

.eh-share__btn:active {
	background: var(--eh-accent-ink) !important;
	border-color: var(--eh-accent-ink) !important;
	color: #fff !important;
}

.eh-sources {
	margin: 22px 0 0;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 16px;
}

.eh-sources__label {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--eh-muted);
}

.eh-sources p {
	margin: 0;
	font-size: 14px;
}

.eh-sources a {
	color: var(--eh-link);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
	word-break: break-word;
}

.eh-sources a:hover,
.eh-sources a:focus-visible {
	color: var(--eh-link-hover);
}

.eh-follow {
	margin: 28px 0 0;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 20px;
}

.eh-follow p {
	margin: 0 0 12px;
	font-size: 15px;
	color: var(--eh-muted);
}

.eh-follow__row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.eh-follow__btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--eh-accent);
	color: #fff !important;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
}

.eh-follow__btn:hover,
.eh-follow__btn:focus-visible {
	background: var(--eh-accent-ink);
	color: #fff !important;
}

.eh-follow__btn--ghost {
	background: #fff;
	color: var(--eh-ink) !important;
	border: 1px solid var(--eh-line);
}

.eh-follow__btn--ghost:hover,
.eh-follow__btn--ghost:focus-visible {
	border-color: var(--eh-accent);
	color: var(--eh-accent-ink) !important;
	background: #fff;
}

.eh-writer {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	margin-top: 28px;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 22px;
}

.eh-writer__kicker {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--eh-accent);
}

.eh-writer__name {
	margin: 4px 0 6px;
	font-size: 22px;
	font-family: var(--eh-display);
	letter-spacing: -0.03em;
}

.eh-writer__name a {
	color: var(--eh-ink);
	text-decoration: none;
}

.eh-writer__name a:hover,
.eh-writer__name a:focus-visible {
	color: var(--eh-link);
}

.eh-writer p {
	margin: 0;
	color: var(--eh-muted);
	font-size: 14px;
	line-height: 1.5;
}

.eh-writer__more {
	margin-top: 10px !important;
	font-size: 13px !important;
	font-weight: 650;
}

.eh-writer__more a {
	color: var(--eh-link);
	text-decoration: none;
	border-bottom: 1px solid var(--eh-line);
}

.eh-writer__more a:hover,
.eh-writer__more a:focus-visible {
	border-bottom-color: var(--eh-link);
}

.eh-mfollow {
	display: none;
}

@media (max-width: 768px) {
	.eh-follow--inline {
		display: none;
	}

	.eh-mfollow {
		display: flex;
		align-items: center;
		gap: 10px;
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		z-index: 45;
		padding: 10px 12px;
		background: #fff;
		border: 1px solid var(--eh-line);
		border-radius: 16px;
		box-shadow: 0 10px 28px rgba(12, 21, 32, 0.12);
		opacity: 0;
		transform: translateY(12px);
		pointer-events: none;
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.eh-mfollow.is-visible {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	.eh-mfollow__label {
		margin: 0;
		font-size: 11px;
		font-weight: 750;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--eh-muted);
		flex-shrink: 0;
	}

	.eh-mfollow__links {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		flex: 1;
		min-width: 0;
	}

	.eh-mfollow__links a {
		display: inline-flex;
		align-items: center;
		padding: 6px 9px;
		border-radius: 999px;
		background: var(--eh-paper);
		color: var(--eh-ink);
		text-decoration: none;
		font-size: 12px;
		font-weight: 650;
	}

	.eh-mfollow__close {
		appearance: none;
		border: 0;
		background: transparent;
		color: var(--eh-muted);
		font-size: 22px;
		line-height: 1;
		padding: 0 2px;
		cursor: pointer;
	}

	html.eh-mfollow-on body.eh-article {
		padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
	}
}

.eh-more {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--eh-line);
}

.eh-more h2 {
	margin: 0 0 18px;
	font-family: var(--eh-display);
	font-size: clamp(24px, 3vw, 32px);
	letter-spacing: -0.03em;
}

.eh-more__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.eh-comments {
	margin-top: 40px;
}

@media (min-width: 700px) {
	.eh-article-main .eh-article {
		padding-left: 28px;
		padding-right: 28px;
	}

	.eh-article__hero {
		margin-top: 28px;
		border-radius: 26px;
	}

	.eh-more__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (min-width: 1100px) {
	.eh-article-main {
		padding-top: 20px;
	}

	.eh-article__layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 40px;
		align-items: start;
	}

	.eh-rail {
		order: 2;
		margin: 0;
		position: sticky;
		top: calc(var(--eh-header-h, 72px) + 18px);
		/* No max-height/overflow here â€” that painted a column scrollbar over TOC + ad. */
		max-height: none;
		overflow: visible;
		align-self: start;
		width: 100%;
		min-width: 0;
	}

	.eh-toc {
		padding: 16px 18px 18px;
	}

	.eh-toc details {
		display: block;
	}

	.eh-toc summary {
		pointer-events: none;
		padding-top: 0;
	}

	.eh-article__prose {
		order: 1;
		font-size: 19px;
		min-width: 0;
	}

	.eh-article__tags,
	.eh-share,
	.eh-sources,
	.eh-follow,
	.eh-writer {
		max-width: none;
	}
}

@media (hover: none) {
	body.eh-article .eh-card:hover,
	body.eh-article .eh-card:focus-within {
		border-radius: 22px;
		transform: none;
	}
}

/* Citizen tools (/ergaleia/) */
.eh-tool-main {
	padding: 12px 0 72px;
}

.eh-tool {
	padding-left: 16px;
	padding-right: 16px;
	max-width: 960px;
	margin: 0 auto;
}

.eh-tool__head {
	margin: 0 0 28px;
}

.eh-tool__kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eh-accent-ink);
}

.eh-tool__head h1 {
	margin: 0;
	font-family: var(--eh-display);
	font-size: clamp(28px, 5vw, 42px);
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.eh-tool__dek {
	margin: 12px 0 0;
	max-width: 40em;
	color: var(--eh-muted);
	font-size: 16px;
	line-height: 1.5;
}

.eh-tool-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.eh-tool-card {
	display: block;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 18px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.eh-tool-card:hover,
.eh-tool-card:focus-visible {
	border-color: var(--eh-accent);
	transform: translateY(-1px);
}

.eh-tool-card h2 {
	margin: 0 0 8px;
	font-family: var(--eh-display);
	font-size: 22px;
	letter-spacing: -0.03em;
}

.eh-tool-card p {
	margin: 0;
	color: var(--eh-muted);
	font-size: 14px;
	line-height: 1.45;
}

.eh-tool-card__go {
	display: inline-block;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--eh-accent-ink);
}

.eh-tool-feed {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.eh-tool-feed__item {
	padding: 16px 18px;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 16px;
}

.eh-tool-feed__title {
	display: block;
	margin: 6px 0 8px;
	font-family: var(--eh-display);
	font-size: 18px;
	line-height: 1.3;
	color: var(--eh-ink);
	text-decoration: none;
}

.eh-tool-feed__title:hover,
.eh-tool-feed__title:focus-visible {
	color: var(--eh-accent-ink);
}

.eh-tool-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 28em;
	margin-bottom: 24px;
}

.eh-tool-form__row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
}

.eh-tool-form__row input,
.eh-tool-form__row select {
	font: inherit;
	font-weight: 500;
	padding: 10px 12px;
	border: 1px solid var(--eh-line);
	border-radius: 10px;
	background: #fff;
}

.eh-tool-form__btn {
	align-self: start;
	margin-top: 4px;
	padding: 12px 18px;
	border: 0;
	border-radius: 999px;
	background: var(--eh-ink);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.eh-tool-form__btn:hover,
.eh-tool-form__btn:focus-visible {
	background: var(--eh-accent-ink);
}

.eh-tool-result {
	margin: 8px 0 28px;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid var(--eh-line);
	border-radius: 18px;
}

.eh-tool-result h2 {
	margin: 0 0 10px;
	font-family: var(--eh-display);
	font-size: 22px;
}

.eh-tool-result__big {
	margin: 0;
	font-family: var(--eh-display);
	font-size: clamp(24px, 4vw, 34px);
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.eh-tool-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.eh-tool-table th,
.eh-tool-table td {
	text-align: left;
	padding: 10px 8px;
	border-bottom: 1px solid var(--eh-line);
	vertical-align: top;
}

.eh-tool__disclaimer,
.eh-tool__note,
.eh-tool__empty {
	margin: 20px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--eh-muted);
}

.eh-tool__related {
	margin-top: 40px;
}

@media (min-width: 700px) {
	.eh-tool-grid {
		grid-template-columns: 1fr 1fr;
	}

	.eh-more__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1000px) {
	.eh-tool {
		padding-left: 28px;
		padding-right: 28px;
	}

	.eh-tool-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.eh-more__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/* Homepage tools strip — sits after category rails */
.eh-tools-home {
	margin-top: 12px;
	padding: 36px 0 20px;
	border-top: 1px solid var(--eh-line);
	border-bottom: 1px solid var(--eh-line);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 246, 242, 0.95)),
		radial-gradient(ellipse at 10% 0%, rgba(20, 90, 70, 0.06), transparent 55%);
}

.eh-tools-home__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px 24px;
	margin-bottom: 18px;
}

.eh-tools-home__kicker {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--eh-accent-ink);
}

.eh-tools-home h2 {
	margin: 0;
	font-family: var(--eh-display);
	font-size: clamp(22px, 3.5vw, 30px);
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.eh-tools-home__dek {
	margin: 8px 0 0;
	max-width: 36em;
	color: var(--eh-muted);
	font-size: 15px;
	line-height: 1.45;
}

.eh-tools-home__all {
	font-size: 14px;
	font-weight: 700;
	color: var(--eh-accent-ink);
	text-decoration: none;
	white-space: nowrap;
}

.eh-tools-home__all:hover,
.eh-tools-home__all:focus-visible {
	text-decoration: underline;
}

.eh-tools-home__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.eh-tools-home__list a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid var(--eh-line);
	border-radius: 14px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.eh-tools-home__list a:hover,
.eh-tools-home__list a:focus-visible {
	border-color: var(--eh-accent);
	transform: translateY(-1px);
}

.eh-tools-home__name {
	font-family: var(--eh-display);
	font-size: 17px;
	letter-spacing: -0.02em;
	font-weight: 700;
}

.eh-tools-home__hint {
	font-size: 13px;
	line-height: 1.4;
	color: var(--eh-muted);
}

@media (min-width: 700px) {
	.eh-tools-home__list {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1000px) {
	.eh-tools-home__list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

.eh-tool-breakdown {
	margin: 12px 0 0;
	padding-left: 1.2em;
	color: var(--eh-ink);
	line-height: 1.5;
}

.eh-tool-form__btn--ghost {
	background: transparent;
	border: 1px solid var(--eh-line);
	color: var(--eh-ink);
	margin-right: 8px;
}

.eh-moria-rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 14px;
}

.eh-moria-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	padding: 12px 14px;
	border: 1px solid var(--eh-line);
	border-radius: 14px;
	background: #fff;
}

.eh-moria-row label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
}

.eh-moria-row input {
	font-weight: 400;
}

@media (min-width: 700px) {
	.eh-moria-row {
		grid-template-columns: 2fr 1fr 1fr;
		align-items: end;
	}
}

