@font-face {
	font-family: "HelveticaNeueCyr";
	src: url("../../../../uploads/2024/10/HelveticaNeueCyr-Roman.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "HelveticaNeueCyr";
	src: url("../../../../uploads/2024/10/HelveticaNeueCyr-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "HelveticaNeueCyr";
	src: url("../../../../uploads/2024/10/HelveticaNeueCyr-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "HelveticaNeueCyr";
	src: url("../../../../uploads/2024/10/HelveticaNeueCyr-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--jh-black: #000;
	--jh-white: #fff;
	--jh-green: #17af84;
	--jh-muted: #8c8c8c;
	--jh-border: #d6d6d6;
	--jh-surface: #f5f5f5;
	--jh-font: "HelveticaNeueCyr", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--jh-black);
	background: var(--jh-white);
	font-family: var(--jh-font);
	font-size: 18px;
	line-height: 1.55;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-color: currentColor;
	text-underline-offset: 0.16em;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

a:hover,
a:focus-visible {
	color: var(--jh-green);
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 10000;
	top: 14px;
	left: 14px;
	padding: 10px 14px;
	color: var(--jh-white);
	background: var(--jh-black);
}

.jh-header {
	background: var(--jh-white);
}

.jh-header__inner {
	width: min(100%, 1470px);
	margin: 0 auto;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 171px;
	position: relative;
}

.jh-header__logo {
	display: inline-flex;
	align-items: center;
	width: 109px;
	flex: 0 0 109px;
	text-decoration: none;
}

.jh-header__logo img,
.jh-header__logo .custom-logo {
	width: 109px;
	height: auto;
}

.jh-menu {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	padding: 0;
	margin: 0;
}

.jh-menu li {
	position: relative;
	margin: 0;
}

.jh-menu a {
	display: inline-flex;
	align-items: center;
	color: var(--jh-black);
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
	white-space: nowrap;
}

.jh-menu a:hover,
.jh-menu a:focus-visible,
.jh-menu .current-menu-item > a,
.jh-menu .current-menu-ancestor > a {
	color: var(--jh-green);
}

.jh-menu > .menu-item-has-children > a::after {
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	content: "";
}

.jh-menu .sub-menu {
	position: absolute;
	z-index: 50;
	top: calc(100% + 18px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 230px;
	list-style: none;
	padding: 15px 0;
	margin: 0;
	background: var(--jh-white);
	border-radius: 5px;
	box-shadow: 0 0 34px rgba(0, 0, 0, 0.14);
	opacity: 0;
	visibility: hidden;
	transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.jh-menu li:hover > .sub-menu,
.jh-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-4px);
}

.jh-menu .sub-menu a {
	width: 100%;
	padding: 9px 18px;
	white-space: normal;
	line-height: 22px;
}

.jh-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.jh-menu-toggle span[aria-hidden="true"],
.jh-menu-toggle span[aria-hidden="true"]::before,
.jh-menu-toggle span[aria-hidden="true"]::after {
	display: block;
	width: 26px;
	height: 2px;
	margin: 0 auto;
	background: var(--jh-black);
	content: "";
	transition: transform 160ms ease, opacity 160ms ease;
}

.jh-menu-toggle span[aria-hidden="true"]::before {
	transform: translateY(-8px);
}

.jh-menu-toggle span[aria-hidden="true"]::after {
	transform: translateY(6px);
}

.jh-menu-toggle[aria-expanded="true"] span[aria-hidden="true"] {
	background: transparent;
}

.jh-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]::before {
	transform: translateY(2px) rotate(45deg);
}

.jh-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]::after {
	transform: rotate(-45deg);
}

.jh-nav-search {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: -10px;
}

.jh-nav-search__toggle {
	width: 44px;
	height: 44px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--jh-black);
}

.jh-nav-search__toggle span {
	width: 21px;
	height: 21px;
	border: 2px solid currentColor;
	border-radius: 999px;
	position: relative;
	display: block;
}

.jh-nav-search__toggle span::after {
	position: absolute;
	right: -7px;
	bottom: -5px;
	width: 9px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	content: "";
}

.jh-nav-search__toggle:hover,
.jh-nav-search__toggle:focus-visible {
	color: var(--jh-green);
}

.jh-nav-search__form {
	position: absolute;
	z-index: 90;
	top: calc(100% + 12px);
	right: 0;
	display: none;
	width: min(290px, 72vw);
	background: var(--jh-white);
	border: 1px solid #e2e5e9;
	border-radius: 999px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.jh-nav-search.is-open .jh-nav-search__form {
	display: block;
}

.jh-nav-search__form input {
	width: 100%;
	border: 0;
	outline: 0;
	padding: 13px 20px;
	border-radius: 999px;
	background: transparent;
	color: var(--jh-black);
	font-size: 15px;
}

.jh-main {
	min-height: 45vh;
}

.jh-hero {
	min-height: 670px;
	height: calc(100vh - 171px);
	max-height: 800px;
	background-image: url("../../../../uploads/2024/10/Firefly-a-guy-in-front-of-his-desk1-with-2-large-monitors-77820-1.jpg");
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 1780px auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.jh-hero__inner {
	width: min(100%, 1180px);
	padding: 67px 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
}

.jh-hero h1 {
	margin: 0;
	color: var(--jh-green);
	font-size: 50px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	min-width: 0;
}

.jh-phrase-rotator {
	width: 343px;
	height: 80px;
	overflow: hidden;
	text-align: center;
}

.jh-phrase-rotator ul {
	list-style: none;
	padding: 0;
	margin: 0;
	transition: transform 420ms ease;
}

.jh-phrase-rotator li {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--jh-black);
	font-size: 36px;
	font-weight: 500;
	line-height: 40px;
}

.jh-home-statement {
	background: var(--jh-white);
}

.jh-home-statement__inner {
	width: min(100%, 951px);
	margin: 0 auto;
	padding: 120px 20px;
	text-align: center;
}

.jh-home-statement p {
	margin: 0 0 50px;
	font-size: 40px;
	font-weight: 300;
	line-height: 50px;
}

.jh-home-statement strong,
.jh-home-statement em {
	color: var(--jh-black);
	font-weight: 700;
}

.jh-home-statement em {
	font-style: italic;
	font-weight: 300;
}

.jh-home-statement span {
	color: var(--jh-green);
}

.jh-home-statement .jh-button {
	font-weight: 400;
}

.jh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 68px;
	padding: 24px 52px;
	border: 1px solid var(--jh-black);
	border-radius: 90px;
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
}

.jh-button--dark {
	color: var(--jh-white);
	background: var(--jh-black);
}

.jh-button--dark:hover,
.jh-button--dark:focus-visible {
	color: var(--jh-black);
	background: var(--jh-white);
}

.jh-button--outline {
	color: var(--jh-black);
	background: transparent;
}

.jh-button--outline:hover,
.jh-button--outline:focus-visible {
	color: var(--jh-white);
	background: var(--jh-black);
}

.jh-blog__header {
	background: var(--jh-surface);
}

.jh-search__header {
	background: var(--jh-surface);
	padding: 40px 20px;
}

.jh-search__header > * {
	width: min(100%, 1180px);
	margin-left: auto;
	margin-right: auto;
}

.jh-search__header .jh-search-form {
	margin-top: 28px;
	margin-bottom: 0;
}

.jh-blog__header-inner {
	width: min(100%, 1220px);
	margin: 0 auto;
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.jh-blog__header h1,
.jh-page h1,
.jh-archive h1,
.jh-search h1 {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 25px;
}

.jh-blog__quick-links {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.jh-blog__quick-links a {
	color: var(--jh-green);
	font-size: 24px;
	font-weight: 500;
	line-height: 25px;
	text-decoration: none;
}

.jh-blog__quick-links a + a {
	position: relative;
}

.jh-blog__quick-links a + a::before {
	position: absolute;
	left: -13px;
	top: 0;
	color: var(--jh-black);
	content: "/";
}

.jh-blog__grid-wrap,
.jh-archive__inner,
.jh-search__inner {
	width: min(100%, 1220px);
	margin: 0 auto;
	padding: 55px 20px 145px;
}

.jh-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	width: min(100%, 640px);
	margin: 0 0 55px;
	padding: 10px;
	border: 1px solid var(--jh-border);
	border-radius: 6px;
	background: var(--jh-white);
}

.jh-search-form__icon {
	width: 18px;
	height: 18px;
	border: 2px solid var(--jh-muted);
	border-radius: 999px;
	position: relative;
	flex: 0 0 auto;
	margin-left: 8px;
}

.jh-search-form__icon::after {
	position: absolute;
	right: -6px;
	bottom: -4px;
	width: 8px;
	height: 2px;
	background: var(--jh-muted);
	transform: rotate(45deg);
	content: "";
}

.jh-search-form input {
	min-width: 0;
	flex: 1 1 auto;
	border: 0;
	outline: 0;
	font-size: 16px;
	line-height: 24px;
}

.jh-search-form button {
	min-height: 44px;
	border: 1px solid var(--jh-black);
	border-radius: 90px;
	padding: 10px 22px;
	color: var(--jh-white);
	background: var(--jh-black);
	cursor: pointer;
}

.jh-archive-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 180px;
	row-gap: 120px;
	position: relative;
}

.jh-archive-grid::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: var(--jh-border);
	content: "";
}

.jh-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 36px;
	row-gap: 44px;
}

.jh-blog-grid .jh-post-card {
	gap: 16px;
	border: 1px solid var(--jh-border);
	border-radius: 10px;
	overflow: hidden;
	background: var(--jh-white);
	position: relative;
}

.jh-blog-grid .jh-post-card:hover,
.jh-blog-grid .jh-post-card:focus-within {
	background: #fafafa;
}

/* stretch the title link over the whole card so anywhere is clickable */
.jh-blog-grid .jh-post-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.jh-blog-grid .jh-post-card__title {
	padding: 4px 20px 0;
	font-size: 22px;
	line-height: 30px;
}

.jh-post-card__byline {
	margin-top: auto;
	padding: 0 20px 18px;
	display: flex;
	align-items: center;
	gap: 11px;
}

.jh-post-card__byline img {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	object-fit: cover;
}

.jh-post-card__author {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.jh-post-card__date {
	margin: 0;
	color: var(--jh-muted);
	font-size: 13px;
	line-height: 1.35;
}

.jh-post-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.jh-post-card__image {
	display: block;
	aspect-ratio: 1.52 / 1;
	overflow: hidden;
	background: var(--jh-surface);
	text-decoration: none;
}

.jh-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jh-post-card__title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0;
}

.jh-post-card__title a {
	text-decoration: none;
}

.jh-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 70px;
}

.jh-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--jh-border);
	border-radius: 999px;
	color: var(--jh-black);
	text-decoration: none;
}

.jh-pagination .current {
	color: var(--jh-white);
	background: var(--jh-black);
	border-color: var(--jh-black);
}

.jh-single__layout {
	width: min(100%, 1220px);
	margin: 0 auto;
	padding: 50px 20px 120px;
	display: grid;
	grid-template-columns: minmax(0, 60.5%) minmax(280px, 39.5%);
	gap: 0;
}

.jh-single__article {
	min-width: 0;
}

.jh-breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 30px;
	color: var(--jh-muted);
	font-size: 15px;
	line-height: 22px;
}

.jh-breadcrumb a {
	color: var(--jh-muted);
	text-decoration: none;
}

.jh-single__title {
	margin: 0 0 30px;
	font-size: 40px;
	font-weight: 700;
	line-height: 50px;
	letter-spacing: 0;
}

.jh-single__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 44px;
	font-size: 16px;
	line-height: 25px;
}

.jh-single__meta img {
	width: 62px;
	height: 62px;
	border-radius: 999px;
	object-fit: cover;
	flex: 0 0 auto;
}

.jh-single__meta p {
	margin: 0;
}

.jh-single__featured {
	margin: 0 0 50px;
}

.jh-single__featured img {
	width: 100%;
	border-radius: 6px;
}

.jh-toc {
	margin: 0 0 50px;
	padding: 36px 40px;
	background: var(--jh-surface);
	border-radius: 6px;
}

.jh-toc h2 {
	margin: 0 0 22px;
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
}

.jh-toc ul {
	margin: 0;
	padding-left: 22px;
}

.jh-toc li {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 30px;
}

.jh-content {
	font-size: 20px;
	line-height: 30px;
}

.jh-content > *:first-child {
	margin-top: 0;
}

.jh-content p,
.jh-content ul,
.jh-content ol,
.jh-content figure,
.jh-content blockquote {
	margin-top: 0;
	margin-bottom: 24px;
}

.jh-content h2 {
	margin: 50px 0 20px;
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0;
}

.jh-content h3 {
	margin: 42px 0 18px;
	font-size: 24px;
	font-weight: 700;
	line-height: 35px;
	letter-spacing: 0;
}

.jh-content img {
	border-radius: 6px;
}

.jh-content iframe,
.jh-content embed,
.jh-content video {
	max-width: 100%;
}

.jh-author-box {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 28px;
	margin-top: 70px;
	padding-top: 45px;
	border-top: 1px solid var(--jh-border);
}

.jh-author-box img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 999px;
}

.jh-author-box__eyebrow,
.jh-author-box p {
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 28px;
}

.jh-author-box h2 {
	margin: 0 0 4px;
	font-size: 28px;
	line-height: 35px;
}

.jh-author-box h3 {
	margin: 0 0 16px;
	font-size: 20px;
	line-height: 30px;
}

.jh-single__sidebar {
	margin-left: 66px;
}

.jh-sidebar-card {
	margin-bottom: 30px;
	padding: 50px;
	background: var(--jh-surface);
	border-radius: 6px;
	text-align: center;
}

.jh-sidebar-card img {
	width: 100%;
	border-radius: 6px;
	margin-bottom: 28px;
}

.jh-sidebar-card > span {
	display: block;
	width: 74px;
	height: 1px;
	margin: 0 auto 25px;
	background: var(--jh-black);
}

.jh-sidebar-card p {
	margin: 0 0 28px;
	font-size: 20px;
	line-height: 30px;
}

.jh-sidebar-card p span {
	font-weight: 700;
}

.jh-sidebar-image {
	display: block;
	margin-top: 50px;
	text-decoration: none;
}

.jh-sidebar-image img {
	width: 100%;
	border-radius: 6px;
}

.jh-page__inner {
	width: min(100%, 980px);
	margin: 0 auto;
	padding: 60px 20px 120px;
}

.jh-page__inner h1 {
	margin-bottom: 32px;
	font-size: 40px;
	line-height: 50px;
}

.jh-footer {
	background: var(--jh-black);
	color: var(--jh-white);
}

.jh-footer__inner {
	width: min(100%, 1040px);
	margin: 0 auto;
	padding: 40px 20px;
	text-align: left;
	font-size: 14px;
	line-height: 25px;
}

.jh-footer a {
	color: var(--jh-white);
}

.jh-footer a:hover,
.jh-footer a:focus-visible {
	color: var(--jh-green);
}

.jh-footer__legal {
	max-width: 1000px;
	margin: 0 auto;
}

.jh-footer__legal p {
	margin: 0 0 18px;
}

.jh-footer__heading {
	font-weight: 500;
}

.jh-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin: 18px 0 8px;
}

.jh-social {
	width: 48px;
	height: 48px;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--jh-white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.jh-social:hover,
.jh-social:focus-visible {
	color: var(--jh-white);
	filter: brightness(1.08);
}

.jh-social--youtube {
	background: #cd201f;
}

.jh-social--instagram {
	background: #262626;
}

.jh-social--twitter {
	background: #1da1f2;
}

.jh-social--facebook {
	background: #3b5998;
	font-size: 26px;
}

.jh-social--linkedin {
	background: #0077b5;
}

.jh-footer__fineprint {
	margin: 0;
	color: var(--jh-white);
	text-align: center;
}

.jh-footer__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.jh-footer__links a {
	text-decoration: none;
}

@media (max-width: 1180px) {
	.jh-menu {
		gap: 24px;
	}

	.jh-archive-grid {
		column-gap: 80px;
	}

	.jh-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jh-single__sidebar {
		margin-left: 30px;
	}

	.jh-sidebar-card {
		padding: 32px;
	}
}

@media (max-width: 920px) {
	.jh-header__inner {
		min-height: 98px;
		padding: 20px;
	}

	.jh-menu-toggle {
		display: block;
	}

	.jh-nav-search {
		position: absolute;
		top: 50%;
		right: 52px;
		margin: 0;
		transform: translateY(-50%);
		z-index: 85;
	}

	.jh-nav-search__form {
		right: 0;
		width: min(78vw, 290px);
	}

	.jh-nav {
		position: absolute;
		z-index: 80;
		left: 20px;
		right: 20px;
		top: 98px;
		padding: 22px;
		background: var(--jh-white);
		border-radius: 6px;
		box-shadow: 0 0 34px rgba(0, 0, 0, 0.14);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
	}

	body.jh-menu-open .jh-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.jh-menu {
		display: block;
	}

	.jh-menu li + li {
		margin-top: 15px;
	}

	.jh-menu a {
		white-space: normal;
	}

	.jh-menu .sub-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		margin-top: 10px;
		padding: 0 0 0 18px;
		box-shadow: none;
		border-radius: 0;
	}

	.jh-menu li:hover > .sub-menu,
	.jh-menu li:focus-within > .sub-menu {
		transform: none;
	}

	.jh-blog__header-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.jh-blog__quick-links a {
		font-size: 20px;
		line-height: 25px;
	}

	.jh-blog-grid,
	.jh-archive-grid {
		grid-template-columns: 1fr;
		row-gap: 70px;
	}

	.jh-archive-grid::before {
		display: none;
	}

	.jh-single__layout {
		grid-template-columns: 1fr;
		padding-top: 40px;
	}

	.jh-single__sidebar {
		margin: 70px 0 0;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.jh-header__inner {
		position: relative;
	}

	.jh-menu-toggle {
		position: absolute;
		top: 27px;
		right: 20px;
	}

	.jh-nav-search {
		right: 64px;
	}

	.jh-nav {
		left: 12px;
		right: 12px;
	}

	.jh-footer__inner {
		max-width: 390px;
		overflow: hidden;
	}

	.jh-footer__copy,
	.jh-footer__fineprint {
		width: min(100%, 340px);
		margin-left: auto;
		margin-right: auto;
	}

	.jh-search-form {
		align-items: stretch;
		flex-wrap: wrap;
	}

	.jh-search-form input {
		flex-basis: calc(100% - 48px);
	}

	.jh-search-form button {
		width: 100%;
	}

	.jh-post-card__title {
		font-size: 25px;
		line-height: 33px;
	}

	.jh-single__title,
	.jh-page__inner h1 {
		font-size: 36px;
		line-height: 46px;
	}

	.jh-single__meta {
		align-items: flex-start;
	}

	.jh-toc {
		padding: 28px 24px;
	}

	.jh-content {
		font-size: 18px;
		line-height: 29px;
	}

	.jh-content h2 {
		font-size: 27px;
		line-height: 36px;
	}

	.jh-author-box {
		grid-template-columns: 1fr;
	}

	.jh-author-box img {
		width: 132px;
		height: 132px;
	}

	.jh-sidebar-card {
		padding: 28px 22px;
	}
}

/* ------------------------------------------------------------------
 * Production-parity additions (2026-07-15)
 * ------------------------------------------------------------------ */

/* Footer social icons — SVG glyphs on the colored tiles */
.jh-social svg {
	height: 20px;
	width: auto;
	fill: currentColor;
	display: block;
}

/* Page title banner (terms / privacy) — centered H1 on a gray band */
.jh-page__banner {
	max-width: 1180px;
	margin: 0 auto;
	background: #f5f5f5;
	padding: 40px 20px;
}

.jh-page__banner h1 {
	margin: 0;
	font-size: 40px;
	line-height: 50px;
	font-weight: 700;
	text-align: center;
}

/* Blog page CTA band */
.jh-blog-cta {
	max-width: 1180px;
	margin: 0 auto;
	background: #f5f5f5;
	padding: 40px 20px;
	text-align: center;
}

.jh-blog-cta h3 {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 500;
	line-height: 25px;
	color: #000;
}

.jh-blog-cta__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jh-blog-cta__links li {
	margin: 0 30px;
	position: relative;
}

.jh-blog-cta__links li + li::before {
	content: "";
	position: absolute;
	left: -30px;
	top: 0;
	bottom: 0;
	border-left: 1px solid #000;
}

.jh-blog-cta__links a {
	font-size: 24px;
	font-weight: 500;
	line-height: 25px;
	color: var(--jh-green);
	text-decoration: none;
}

/* Blog search pill (shared with the results page) */
.jh-blog-search-wrap {
	position: relative;
	z-index: 5;
	background: #fff;
	margin: 0 0 8px;
	padding: 8px 16px 40px;
}

.jh-blog-search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 560px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e2e5e9;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.jh-blog-search:focus-within {
	border-color: var(--jh-green);
	box-shadow: 0 0 0 3px rgba(23, 175, 132, 0.15);
}

.jh-blog-search__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 18px;
	color: #8a9099;
}

.jh-blog-search__input {
	flex: 1;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 16px;
	padding: 15px 12px;
	color: #1a1a1a;
	border-radius: 999px;
}

.jh-blog-search__input::placeholder {
	color: #9aa0a6;
}

.jh-blog-search__btn {
	border: 0;
	cursor: pointer;
	background: var(--jh-green);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 24px;
	margin: 5px;
	border-radius: 999px;
	transition: background 0.15s;
}

.jh-blog-search__btn:hover {
	background: #128d6a;
}

.jh-blog-search__input:focus {
	background: transparent !important;
}

.jh-blog-search__input:-webkit-autofill,
.jh-blog-search__input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 40px #fff inset !important;
	box-shadow: 0 0 0 40px #fff inset !important;
	-webkit-text-fill-color: #1a1a1a !important;
}

/* Search results page */
.jh-search-main {
	max-width: 1140px;
	margin: 0 auto;
	padding: 56px 20px 80px;
}

.jh-search-header {
	text-align: center;
	margin-bottom: 44px;
}

.jh-search-header h1 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	margin: 0 0 24px;
	color: #111;
}

.jh-search-header .jh-blog-search-wrap {
	margin-bottom: 12px;
}

.jh-search-count {
	color: #6b7280;
	font-size: 15px;
	margin: 0;
}

.jh-search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}

.jh-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #eef0f2;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.15s, box-shadow 0.15s;
}

.jh-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.jh-card__thumb {
	aspect-ratio: 16 / 9;
	background: #f2f4f6;
	overflow: hidden;
}

.jh-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.jh-card__body {
	padding: 20px 22px 24px;
}

.jh-card__title {
	font-size: 19px;
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 10px;
	color: #141414;
}

.jh-card__excerpt {
	font-size: 14.5px;
	line-height: 1.55;
	color: #5f6672;
	margin: 0;
}

.jh-search-none {
	text-align: center;
	font-size: 18px;
	color: #5f6672;
	padding: 40px 0;
}

.jh-search-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 48px;
}

.jh-search-pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid #e2e5e9;
	color: #333;
	text-decoration: none;
	font-weight: 600;
}

.jh-search-pagination .page-numbers.current {
	background: var(--jh-green);
	border-color: var(--jh-green);
	color: #fff;
}

.jh-search-pagination a.page-numbers:hover {
	border-color: var(--jh-green);
	color: var(--jh-green);
}

/* Archive card excerpts */
.jh-post-card__excerpt {
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: #5f6672;
}

/* Archive next/prev pagination */
.jh-pagination--nextprev a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 22px;
	border: 1px solid var(--jh-border);
	border-radius: 999px;
	color: var(--jh-black);
	text-decoration: none;
}

/* Production switches the hero background to cover at tablet width */
@media (max-width: 992px) {
	.jh-hero {
		background-size: cover;
	}
}

/* Homepage mobile — single breakpoint like production */
@media (max-width: 767px) {
	.jh-hero {
		min-height: 500px;
		height: 500px;
		max-height: none;
		overflow: hidden;
		background-size: cover;
		background-position: center bottom;
	}

	.jh-hero__inner {
		padding-top: 44px;
		gap: 10px;
	}

	.jh-hero h1 {
		font-size: 36px;
		line-height: 42px;
	}

	.jh-phrase-rotator {
		width: min(calc(100vw - 40px), 343px);
		height: 74px;
	}

	.jh-phrase-rotator li {
		min-height: 74px;
		font-size: 30px;
		line-height: 37px;
	}

	.jh-home-statement__inner {
		padding: 50px 20px;
	}

	.jh-home-statement p {
		font-size: 30px;
		line-height: 40px;
		overflow-wrap: break-word;
	}

	.jh-page__banner h1 {
		font-size: 36px;
		line-height: 46px;
	}

	.jh-blog-cta__links {
		flex-direction: column;
		gap: 30px;
	}

	.jh-blog-cta__links li {
		margin: 0;
	}

	.jh-blog-cta__links li + li::before {
		display: none;
	}
}
