/*
Theme Name: Globe.Hosting
Theme URI: https://globe.hosting/
Author: THE-GLOBE B.V.
Description: Een compact, mensgericht en Gutenberg-first WordPress-thema voor Globe.Hosting.
Version: 2.0.3
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: globe-hosting
*/

@font-face {
	font-family: "Globe Manrope";
	src: url("assets/fonts/manrope-variable.woff2") format("woff2");
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}

@font-face {
	font-family: "Globe Inter";
	src: url("assets/fonts/inter-variable.woff2") format("woff2");
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--gh-navy: #031629;
	--gh-navy-soft: #0d2942;
	--gh-blue: #1499cd;
	--gh-blue-soft: #eaf7fc;
	--gh-orange: #ff7007;
	--gh-orange-dark: #dd5700;
	--gh-ink: #0b2035;
	--gh-copy: #526578;
	--gh-muted: #718094;
	--gh-line: #dfe5e9;
	--gh-warm: #fbf8f4;
	--gh-surface: #f5f8fa;
	--gh-white: #fff;
	--gh-success: #126b4f;
	--gh-error: #a52222;
	--gh-shadow: 0 18px 48px rgba(3, 22, 41, 0.12);
	--gh-container: 1200px;
	--gh-content: 820px;
	--gh-radius: 10px;
	--gh-header: 88px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--gh-header) + 24px);
}

body {
	margin: 0;
	background: var(--gh-white);
	color: var(--gh-ink);
	font-family: "Globe Inter", "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	font-weight: 430;
	line-height: 1.68;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

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

figure {
	margin: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.72em;
	color: var(--gh-navy);
	font-family: "Globe Manrope", "Segoe UI", Arial, sans-serif;
	font-weight: 760;
	letter-spacing: -0.035em;
	line-height: 1.1;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2rem, 3.05vw, 2.9rem);
}

h2 {
	font-size: clamp(1.65rem, 2.35vw, 2.15rem);
}

h3 {
	font-size: clamp(1.12rem, 1.5vw, 1.32rem);
	letter-spacing: -0.022em;
	line-height: 1.28;
}

p,
ul,
ol {
	margin-top: 0;
	margin-bottom: 1.25em;
}

strong {
	font-weight: 720;
}

.gh-container,
.alignwide {
	width: min(calc(100% - 48px), var(--gh-container));
	margin-inline: auto;
}

.alignfull {
	width: 100%;
	max-width: none;
}

.gh-skip-link {
	position: fixed;
	z-index: 9999;
	top: 10px;
	left: 10px;
	padding: 10px 16px;
	transform: translateY(-150%);
	border-radius: 6px;
	background: var(--gh-navy);
	color: var(--gh-white);
	font-weight: 700;
}

.gh-skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid rgba(20, 153, 205, 0.42);
	outline-offset: 3px;
}

/* Header and mega menu */
.gh-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	height: var(--gh-header);
	border-bottom: 1px solid rgba(3, 22, 41, 0.08);
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
}

.admin-bar .gh-site-header {
	top: 32px;
}

.gh-nav {
	display: grid;
	grid-template-columns: 205px minmax(0, 1fr) auto;
	align-items: center;
	height: 100%;
	gap: 20px;
}

.gh-logo img,
.gh-logo .custom-logo {
	width: auto;
	height: 46px;
	object-fit: contain;
}

.gh-primary-navigation {
	justify-self: center;
}

.gh-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 31px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.gh-menu > li {
	position: relative;
	margin: 0;
	padding: 0;
}

.gh-menu > li > a,
.gh-menu-group__toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--gh-navy);
	font-family: "Globe Manrope", sans-serif;
	font-size: 14px;
	font-weight: 720;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}

.gh-menu > li > a::after,
.gh-menu-group__toggle::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	background: var(--gh-orange);
	transition: transform 180ms ease;
}

.gh-menu > li > a:hover::after,
.gh-menu > li > a.is-current::after,
.gh-menu-group__toggle:hover::after,
.gh-menu-group__toggle.is-current::after,
.gh-menu-group.is-open > .gh-menu-group__toggle::after {
	transform: scaleX(1);
}

.gh-menu-group__toggle .dashicons {
	width: 14px;
	height: 14px;
	color: var(--gh-orange);
	font-size: 14px;
	transition: transform 180ms ease;
}

.gh-menu-group.is-open > .gh-menu-group__toggle .dashicons {
	transform: rotate(180deg);
}

.gh-menu-panel {
	position: absolute;
	z-index: 20;
	top: calc(100% + 14px);
	left: -28px;
	display: grid;
	width: 390px;
	gap: 0;
	margin: 0;
	padding: 12px;
	border: 1px solid var(--gh-line);
	border-radius: var(--gh-radius);
	background: var(--gh-white);
	box-shadow: var(--gh-shadow);
	list-style: none;
}

.gh-menu-panel[hidden] {
	display: none;
}

.gh-menu-panel::before {
	position: absolute;
	top: -14px;
	left: 0;
	width: 100%;
	height: 14px;
	content: "";
}

.gh-menu-panel li {
	margin: 0;
}

.gh-menu-panel a {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) 20px;
	align-items: center;
	gap: 12px;
	padding: 13px 12px;
	border-radius: 7px;
	color: var(--gh-navy);
	text-decoration: none;
	transition: background 160ms ease, transform 160ms ease;
}

.gh-menu-panel a:hover,
.gh-menu-panel a:focus-visible {
	background: var(--gh-warm);
	transform: translateX(2px);
}

.gh-menu-panel__icon {
	display: grid;
	width: 36px !important;
	height: 36px !important;
	align-items: center;
	justify-items: center;
	border-radius: 50%;
	background: var(--gh-blue-soft);
	color: var(--gh-blue);
	font-size: 18px !important;
}

.gh-menu-panel__copy {
	display: grid;
	gap: 3px;
}

.gh-menu-panel__copy strong {
	font-family: "Globe Manrope", sans-serif;
	font-size: 14px;
}

.gh-menu-panel__copy small {
	color: var(--gh-copy);
	font-size: 12px;
	line-height: 1.4;
}

.gh-menu-panel__arrow {
	color: var(--gh-orange);
	font-size: 18px;
}

.gh-nav-cta {
	justify-self: end;
}

.gh-menu-toggle,
.gh-mobile-contact {
	display: none;
}

/* Buttons */
.gh-button,
.wp-block-button__link,
button[type="submit"] {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 7px;
	font-family: "Globe Manrope", sans-serif;
	font-size: 14px;
	font-weight: 740;
	line-height: 1.1;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.gh-button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover {
	transform: translateY(-1px);
}

.gh-button--primary,
.wp-block-button__link,
button[type="submit"] {
	background: var(--gh-orange);
	color: var(--gh-white);
	box-shadow: 0 7px 20px rgba(255, 112, 7, 0.17);
}

.gh-button--primary:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover {
	background: var(--gh-orange-dark);
	color: var(--gh-white);
	box-shadow: 0 9px 24px rgba(255, 112, 7, 0.23);
}

.gh-button--secondary,
.is-style-outline .wp-block-button__link {
	border-color: var(--gh-orange);
	background: transparent;
	color: var(--gh-navy);
	box-shadow: none;
}

.gh-button--secondary:hover,
.is-style-outline .wp-block-button__link:hover {
	background: var(--gh-orange);
	color: var(--gh-white);
}

.gh-actions,
.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

/* Hero */
.gh-breadcrumbs {
	padding-top: 17px;
	padding-bottom: 17px;
}

.gh-breadcrumbs ol {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	color: var(--gh-muted);
	font-size: 12px;
	list-style: none;
}

.gh-breadcrumbs li + li::before {
	margin-right: 10px;
	content: "/";
	color: #a5afb7;
}

.gh-breadcrumbs a {
	text-decoration: none;
}

.gh-page-hero {
	overflow: hidden;
	border-bottom: 1px solid var(--gh-line);
	background: var(--gh-warm);
}

.gh-page-hero__grid {
	display: grid;
	height: 470px;
	min-height: 470px;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: stretch;
}

.gh-page-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 64px 42px 64px 0;
}

.gh-eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 20px;
	color: var(--gh-orange);
	font-family: "Globe Manrope", sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.gh-eyebrow > span {
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--gh-orange);
}

.gh-page-hero h1 {
	max-width: none;
	margin-bottom: 22px;
	font-size: clamp(2rem, 2.65vw, 2.25rem);
	letter-spacing: -0.045em;
	white-space: nowrap;
}

.gh-page-hero__lead {
	max-width: 590px;
	margin: 0;
	color: var(--gh-copy);
	font-size: clamp(1rem, 1.25vw, 1.1rem);
	line-height: 1.75;
}

.gh-page-hero__media {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: calc(100% + max(24px, (100vw - var(--gh-container)) / 2));
	height: 470px;
	min-height: 470px;
	background: var(--gh-surface);
}

.gh-page-hero__image,
.gh-hero__image,
.gh-page-hero__media > img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: var(--gh-hero-position, center);
}

.gh-page-hero--home .gh-page-hero__media,
.gh-front-page .gh-page-hero__media {
	--gh-hero-position: 55% 42%;
}

.gh-slug-managed-hosting .gh-page-hero__media {
	--gh-hero-position: 55% 38%;
}

.gh-slug-linux-hosting .gh-page-hero__media {
	--gh-hero-position: 65% 42%;
}

.gh-slug-windows-hosting .gh-page-hero__media {
	--gh-hero-position: 67% 44%;
}

.gh-slug-managed-beheer .gh-page-hero__media {
	--gh-hero-position: 58% 38%;
}

.gh-slug-domeinen .gh-page-hero__media {
	--gh-hero-position: 58% 50%;
}

.gh-slug-dns-beheer .gh-page-hero__media {
	--gh-hero-position: 50% 40%;
}

.gh-slug-email-filtering .gh-page-hero__media {
	--gh-hero-position: 66% 40%;
}

.gh-slug-ssl-certificaten .gh-page-hero__media {
	--gh-hero-position: 62% 48%;
}

.gh-slug-contentbeheer .gh-page-hero__media {
	--gh-hero-position: 60% 46%;
}

.gh-slug-beheerplatform .gh-page-hero__media {
	--gh-hero-position: 67% 42%;
}

.gh-slug-kennis .gh-page-hero__media {
	--gh-hero-position: 60% 46%;
}

.gh-slug-contact .gh-page-hero__media {
	--gh-hero-position: 62% 50%;
}

.gh-slug-over-ons .gh-page-hero__media {
	--gh-hero-position: center;
	background-color: #e8eceb;
}

.gh-slug-over-ons .gh-page-hero__media::before {
	position: absolute;
	z-index: 0;
	inset: -28px;
	content: "";
	background: url("assets/images/team-group-2026.webp") center / cover no-repeat;
	filter: blur(20px);
	opacity: 0.26;
	transform: scale(1.06);
}

.gh-slug-over-ons .gh-page-hero__media > img {
	object-fit: contain;
}

.gh-page-hero--text .gh-page-hero__grid {
	min-height: 320px;
	grid-template-columns: minmax(0, 760px);
}

.gh-page-hero--text .gh-page-hero__copy {
	padding-block: 64px;
}

/* Gutenberg page system */
.gh-entry-content {
	overflow: visible;
}

.gh-entry-content > *:not(.alignfull):not(.alignwide) {
	width: min(calc(100% - 48px), var(--gh-content));
	margin-inline: auto;
}

.gh-entry-content > .wp-block-group {
	width: 100%;
	max-width: none;
	margin: 0;
}

.gh-entry-content .wp-block-group__inner-container,
.gh-entry-content .gh-section > .wp-block-group__inner-container,
.gh-entry-content .gh-benefit-strip > .wp-block-group__inner-container,
.gh-entry-content .gh-cta-band > .wp-block-group__inner-container,
.gh-entry-content .gh-cta-band > .gh-container {
	width: min(calc(100% - 48px), var(--gh-container));
	margin-inline: auto;
}

.gh-entry-content .gh-section {
	padding-block: 48px;
	background: var(--gh-white);
}

.gh-entry-content .gh-section--warm {
	border-block: 1px solid var(--gh-line);
	background: var(--gh-warm);
}

.gh-entry-content .gh-section--surface {
	border-block: 1px solid var(--gh-line);
	background: var(--gh-surface);
}

.gh-section-heading {
	max-width: 760px;
	margin-bottom: 38px;
}

.gh-section-heading h2,
.gh-entry-content h2 {
	white-space: nowrap;
}

.gh-section-heading p:last-child {
	max-width: 690px;
	margin-bottom: 0;
	color: var(--gh-copy);
	font-size: 17px;
}

.gh-entry-content p,
.gh-entry-content li {
	color: var(--gh-copy);
}

.gh-entry-content a:not(.wp-block-button__link) {
	color: var(--gh-navy);
	text-decoration-color: var(--gh-orange);
}

.gh-benefit-strip {
	padding-block: 20px;
	border-bottom: 1px solid var(--gh-line);
	background: var(--gh-white);
}

.gh-benefit-strip .wp-block-columns {
	margin: 0;
	gap: 0;
}

.gh-benefit-strip .wp-block-column {
	position: relative;
	display: grid;
	min-height: 64px;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 0 34px;
}

.gh-benefit-strip .wp-block-column:first-child {
	padding-left: 0;
}

.gh-benefit-strip .wp-block-column:last-child {
	padding-right: 0;
}

.gh-benefit-strip .wp-block-column + .wp-block-column {
	border-left: 1px solid var(--gh-line);
}

.gh-benefit-strip .wp-block-column::before {
	display: grid;
	width: 42px;
	height: 42px;
	grid-row: 1 / span 2;
	align-items: center;
	justify-items: center;
	border: 2px solid var(--gh-blue);
	border-radius: 50%;
	color: var(--gh-blue);
	font-family: dashicons;
	font-size: 21px;
	content: "\f110";
}

.gh-benefit-strip .wp-block-column:nth-child(2)::before {
	content: "\f332";
}

.gh-benefit-strip .wp-block-column:nth-child(3)::before {
	content: "\f160";
}

.gh-benefit-strip h2,
.gh-benefit-strip h3 {
	grid-column: 2;
	align-self: end;
	margin: 0;
	font-size: 15px;
	letter-spacing: -0.015em;
	white-space: nowrap;
}

.gh-benefit-strip p {
	grid-column: 2;
	align-self: start;
	margin: 2px 0 0;
	font-size: 13px;
	line-height: 1.5;
}

.gh-content-split {
	display: grid !important;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
	gap: 72px;
}

.gh-content-split > * {
	min-width: 0;
}

.gh-content-split h2 {
	margin-bottom: 18px;
}

.gh-note {
	padding: 27px 30px;
	border-left: 3px solid var(--gh-orange);
	background: var(--gh-warm);
}

.gh-note p:last-child {
	margin-bottom: 0;
}

.gh-check-list,
.gh-entry-content ul.gh-check-list {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gh-check-list li {
	position: relative;
	padding-left: 27px;
}

.gh-check-list li::before {
	position: absolute;
	top: 0.18em;
	left: 0;
	color: var(--gh-blue);
	font-family: dashicons;
	font-size: 18px;
	content: "\f147";
}

.gh-service-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--gh-line);
	border-left: 1px solid var(--gh-line);
}

.gh-service-list > .wp-block-group,
.gh-service-row {
	position: relative;
	display: grid;
	min-height: 142px;
	grid-template-columns: 48px minmax(0, 1fr) 24px;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 26px 28px;
	border-right: 1px solid var(--gh-line);
	border-bottom: 1px solid var(--gh-line);
	background: var(--gh-white);
	transition: background 160ms ease;
}

.gh-service-list > .wp-block-group:hover,
.gh-service-row:hover {
	background: var(--gh-warm);
}

.gh-service-list > .wp-block-group::before,
.gh-service-row::before {
	display: grid;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-items: center;
	border-radius: 50%;
	background: var(--gh-blue-soft);
	color: var(--gh-blue);
	font-family: dashicons;
	font-size: 22px;
	content: "\f319";
}

.gh-service-list > .wp-block-group:nth-child(2)::before {
	content: "\f319";
}

.gh-service-list > .wp-block-group:nth-child(3)::before {
	content: "\f325";
}

.gh-service-list > .wp-block-group:nth-child(4)::before {
	content: "\f465";
}

.gh-service-list h3,
.gh-service-row h3 {
	grid-column: 2;
	align-self: end;
	margin: 0;
	font-size: 17px;
}

.gh-service-list p,
.gh-service-row p {
	grid-column: 2;
	align-self: start;
	margin: 3px 0 0;
	font-size: 14px;
	line-height: 1.55;
}

.gh-service-list .wp-block-buttons,
.gh-service-row .wp-block-buttons {
	display: contents;
}

.gh-service-list .wp-block-button,
.gh-service-row .wp-block-button {
	display: contents;
}

.gh-service-list .wp-block-button__link,
.gh-service-row .wp-block-button__link {
	grid-column: 3;
	grid-row: 1 / span 2;
	min-width: 0;
	min-height: 0;
	padding: 0;
	background: transparent;
	color: var(--gh-orange);
	box-shadow: none;
	font-size: 0;
}

.gh-service-list .wp-block-button__link::before,
.gh-service-row .wp-block-button__link::before {
	font-size: 20px;
	content: "→";
}

.gh-process {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px;
	counter-reset: gh-step;
}

.gh-process > .wp-block-group,
.gh-step {
	position: relative;
	margin: 0;
	padding-top: 66px;
	counter-increment: gh-step;
}

.gh-process > .wp-block-group::before,
.gh-step::before {
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-items: center;
	border-radius: 50%;
	background: var(--gh-navy);
	color: var(--gh-white);
	font-family: "Globe Manrope", sans-serif;
	font-size: 15px;
	font-weight: 750;
	content: counter(gh-step, decimal-leading-zero);
}

.gh-process > .wp-block-group:not(:last-child)::after,
.gh-step:not(:last-child)::after {
	position: absolute;
	top: 21px;
	left: 58px;
	width: calc(100% - 36px);
	height: 1px;
	content: "";
	background: var(--gh-line);
}

.gh-process h3,
.gh-step h3 {
	margin-bottom: 9px;
	font-size: 17px;
}

.gh-process p,
.gh-step p {
	margin-bottom: 0;
	font-size: 14px;
}

.gh-faq-list {
	display: grid;
	border-top: 1px solid var(--gh-line);
}

.gh-faq-list details,
.gh-entry-content details {
	margin: 0;
	border-bottom: 1px solid var(--gh-line);
}

.gh-faq-list summary,
.gh-entry-content details > summary {
	position: relative;
	padding: 20px 46px 20px 0;
	color: var(--gh-navy);
	font-family: "Globe Manrope", sans-serif;
	font-size: 16px;
	font-weight: 720;
	cursor: pointer;
	list-style: none;
}

.gh-faq-list summary::-webkit-details-marker,
.gh-entry-content details > summary::-webkit-details-marker {
	display: none;
}

.gh-faq-list summary::after,
.gh-entry-content details > summary::after {
	position: absolute;
	top: 19px;
	right: 4px;
	color: var(--gh-orange);
	font-size: 22px;
	font-weight: 400;
	content: "+";
}

.gh-faq-list details[open] summary::after,
.gh-entry-content details[open] > summary::after {
	content: "−";
}

.gh-faq-list details > *:not(summary),
.gh-entry-content details > *:not(summary) {
	max-width: 760px;
	padding-right: 44px;
}

.gh-cta-band {
	padding-block: 60px;
	background: var(--gh-navy);
	color: var(--gh-white);
}

.gh-cta-band > .wp-block-group__inner-container,
.gh-cta-band > .gh-container {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) auto;
	align-items: center;
	gap: 32px;
}

.gh-cta-band h2 {
	margin: 0;
	color: var(--gh-white);
	font-size: clamp(1.55rem, 2.2vw, 2rem);
	white-space: nowrap;
}

.gh-cta-band p {
	margin: 0;
	color: #c7d3dd;
	font-size: 15px;
}

.gh-cta-band .wp-block-buttons {
	margin: 0;
	justify-content: flex-end;
}

.gh-entry-content .wp-block-image {
	overflow: hidden;
	border-radius: var(--gh-radius);
}

.gh-entry-content .wp-block-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* Contact form */
.gh-contact-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	align-items: start;
	gap: 70px;
}

.gh-contact-layout > * {
	min-width: 0;
}

.gh-contact-details {
	padding: 28px;
	border: 1px solid var(--gh-line);
	background: var(--gh-warm);
}

.gh-contact-details a {
	font-weight: 650;
}

.gh-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.gh-form__field {
	display: grid;
	gap: 7px;
}

.gh-form__field--wide,
.gh-form__notice,
.gh-form__consent,
.gh-form__actions,
.gh-honeypot,
.gh-form > input[type="hidden"] {
	grid-column: 1 / -1;
}

.gh-form label {
	color: var(--gh-navy);
	font-family: "Globe Manrope", sans-serif;
	font-size: 13px;
	font-weight: 720;
}

.gh-form input,
.gh-form select,
.gh-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #bdc9d2;
	border-radius: 6px;
	background: var(--gh-white);
	color: var(--gh-ink);
}

.gh-form textarea {
	min-height: 130px;
	resize: vertical;
}

.gh-form input:focus,
.gh-form select:focus,
.gh-form textarea:focus {
	border-color: var(--gh-blue);
	outline: 3px solid rgba(20, 153, 205, 0.15);
}

.gh-honeypot {
	position: absolute !important;
	left: -9999px !important;
}

.gh-form__consent {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: start;
	gap: 10px;
	color: var(--gh-copy);
	font-size: 13px;
	font-weight: 450 !important;
}

.gh-form__consent input {
	width: 18px;
	min-height: 18px;
	margin: 2px 0 0;
}

.gh-form__actions {
	display: flex;
	align-items: center;
	gap: 17px;
}

.gh-form__actions small {
	color: var(--gh-muted);
}

.gh-form__notice {
	padding: 14px 16px;
	border-left: 3px solid currentColor;
	background: var(--gh-surface);
}

.gh-form__notice--success {
	color: var(--gh-success);
}

.gh-form__notice--error {
	color: var(--gh-error);
}

/* Knowledge */
.gh-knowledge-index {
	padding-block: 76px;
	border-top: 1px solid var(--gh-line);
	background: var(--gh-surface);
}

.gh-knowledge-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.gh-knowledge-card {
	overflow: hidden;
	border: 1px solid var(--gh-line);
	border-radius: 8px;
	background: var(--gh-white);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.gh-knowledge-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--gh-shadow);
}

.gh-knowledge-card__link {
	display: block;
	height: 100%;
	text-decoration: none;
}

.gh-knowledge-card figure {
	aspect-ratio: 1.55;
	background: var(--gh-blue-soft);
}

.gh-knowledge-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gh-knowledge-card__body {
	padding: 24px;
}

.gh-knowledge-card__meta {
	margin-bottom: 10px;
	color: var(--gh-orange);
	font-size: 11px;
	font-weight: 760;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gh-knowledge-card h3 {
	margin-bottom: 11px;
	font-size: 19px;
}

.gh-knowledge-card__body > p:not(.gh-knowledge-card__meta) {
	color: var(--gh-copy);
	font-size: 14px;
}

.gh-knowledge-card__body > span {
	color: var(--gh-navy);
	font-size: 13px;
	font-weight: 720;
}

.gh-knowledge-card__body > span span {
	margin-left: 7px;
	color: var(--gh-orange);
}

.gh-pagination {
	margin-top: 36px;
}

.gh-pagination ul {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gh-pagination a,
.gh-pagination span {
	display: grid;
	min-width: 38px;
	height: 38px;
	align-items: center;
	justify-items: center;
	border: 1px solid var(--gh-line);
	border-radius: 5px;
	background: var(--gh-white);
	text-decoration: none;
}

.gh-pagination .current {
	border-color: var(--gh-orange);
	background: var(--gh-orange);
	color: var(--gh-white);
}

/* Articles and legal pages */
.gh-legal-content,
.gh-article-content {
	padding-block: 68px;
}

.gh-legal-content > *,
.gh-article-content > * {
	max-width: var(--gh-content);
}

.gh-legal-content h2,
.gh-article-content h2 {
	margin-top: 1.8em;
}

/* Footer */
.gh-site-footer {
	padding-top: 62px;
	background: var(--gh-navy);
	color: #c6d2dc;
}

.gh-footer-main {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.75fr) minmax(250px, 0.9fr);
	gap: 72px;
	padding-bottom: 50px;
}

.gh-footer-brand img {
	width: 180px;
	height: auto;
	margin-bottom: 20px;
	filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.16));
}

.gh-footer-brand p {
	max-width: 390px;
}

.gh-footer-portal {
	color: var(--gh-white);
	font-family: "Globe Manrope", sans-serif;
	font-size: 14px;
	font-weight: 720;
	text-decoration: none;
}

.gh-footer-main h2 {
	margin-bottom: 17px;
	color: var(--gh-white);
	font-size: 15px;
	letter-spacing: -0.01em;
}

.gh-footer-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gh-footer-menu a,
.gh-footer-contact a {
	color: #c6d2dc;
	font-size: 14px;
	text-decoration: none;
}

.gh-footer-menu a:hover,
.gh-footer-contact a:hover {
	color: var(--gh-white);
}

.gh-footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.gh-footer-contact address {
	margin-top: 13px;
	font-style: normal;
	font-size: 14px;
}

.gh-footer-contact p {
	margin: 8px 0 0;
	font-size: 13px;
}

.gh-footer-bottom {
	display: flex;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 12px;
}

.gh-footer-bottom div {
	display: flex;
	gap: 22px;
}

.gh-footer-bottom a {
	text-decoration: none;
}

/* Generic WordPress templates */
.gh-generic {
	padding-block: 72px;
}

.gh-generic > * {
	width: min(calc(100% - 48px), var(--gh-content));
	margin-inline: auto;
}

/* Responsive */
@media (max-width: 1120px) {
	:root {
		--gh-header: 78px;
	}

	.gh-nav {
		grid-template-columns: 170px minmax(0, 1fr) auto;
		gap: 14px;
	}

	.gh-logo img,
	.gh-logo .custom-logo {
		height: 40px;
	}

	.gh-menu {
		gap: 16px;
	}

	.gh-menu > li > a,
	.gh-menu-group__toggle {
		font-size: 13px;
	}

	.gh-nav-cta {
		min-height: 42px;
		padding-inline: 14px;
		font-size: 13px;
	}

	.gh-page-hero__copy {
		padding-right: 30px;
	}

	.gh-page-hero h1 {
		font-size: clamp(1.78rem, 3vw, 2.1rem);
	}

	.gh-content-split,
	.gh-contact-layout {
		gap: 48px;
	}
}

@media (max-width: 940px) {
	.admin-bar .gh-site-header {
		top: 46px;
	}

	.gh-nav {
		grid-template-columns: 1fr auto;
	}

	.gh-menu-toggle {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 8px 0;
		border: 0;
		background: transparent;
		color: var(--gh-navy);
		font-family: "Globe Manrope", sans-serif;
		font-weight: 720;
		cursor: pointer;
	}

	.gh-nav-cta {
		display: none;
	}

	.gh-primary-navigation {
		position: fixed;
		inset: var(--gh-header) 0 0;
		display: none;
		overflow-y: auto;
		padding: 22px 24px 40px;
		background: var(--gh-white);
	}

	.admin-bar .gh-primary-navigation {
		top: calc(var(--gh-header) + 46px);
	}

	.gh-primary-navigation.is-open {
		display: block;
	}

	.gh-menu {
		display: grid;
		gap: 0;
	}

	.gh-menu > li {
		border-bottom: 1px solid var(--gh-line);
	}

	.gh-menu > li > a,
	.gh-menu-group__toggle {
		width: 100%;
		min-height: 52px;
		justify-content: space-between;
		font-size: 15px;
	}

	.gh-menu > li > a::after,
	.gh-menu-group__toggle::after {
		display: none;
	}

	.gh-menu-panel {
		position: static;
		width: 100%;
		padding: 4px 0 13px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.gh-menu-panel a {
		padding-inline: 4px;
	}

	.gh-mobile-contact {
		display: grid;
		gap: 10px;
		margin-top: 28px;
	}

	.gh-mobile-contact a {
		font-weight: 700;
		text-decoration: none;
	}

	.gh-page-hero__grid {
		height: auto;
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.gh-page-hero__copy {
		padding: 54px 0 46px;
	}

	.gh-page-hero h1 {
		font-size: clamp(1.85rem, 6vw, 2.45rem);
	}

	.gh-page-hero__media {
		width: 100%;
		height: clamp(350px, 50vw, 460px);
		min-height: 0;
	}

	.gh-page-hero__image,
	.gh-hero__image,
	.gh-page-hero__media > img {
		height: 100%;
		min-height: 0;
		max-height: none;
	}

	.gh-benefit-strip .wp-block-columns {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gh-benefit-strip .wp-block-column {
		display: grid;
		padding-inline: 20px;
	}

	.gh-benefit-strip .wp-block-column:first-child {
		padding-left: 0;
	}

	.gh-benefit-strip .wp-block-column:last-child {
		padding-right: 0;
	}

	.gh-content-split,
	.gh-contact-layout {
		grid-template-columns: 1fr;
	}

	.gh-cta-band > .wp-block-group__inner-container,
	.gh-cta-band > .gh-container {
		grid-template-columns: 1fr auto;
	}

	.gh-cta-band p {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.gh-cta-band .wp-block-buttons {
		grid-column: 2;
		grid-row: 1;
	}

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

	.gh-footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.gh-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	:root {
		--gh-header: 70px;
	}

	body {
		font-size: 15px;
	}

	.gh-container,
	.alignwide,
	.gh-entry-content > *:not(.alignfull):not(.alignwide),
	.gh-entry-content .wp-block-group__inner-container,
	.gh-entry-content .gh-section > .wp-block-group__inner-container,
	.gh-entry-content .gh-benefit-strip > .wp-block-group__inner-container,
	.gh-entry-content .gh-cta-band > .wp-block-group__inner-container,
	.gh-entry-content .gh-cta-band > .gh-container,
	.gh-generic > * {
		width: min(calc(100% - 32px), var(--gh-container));
	}

	.gh-logo img,
	.gh-logo .custom-logo {
		height: 36px;
	}

	.gh-breadcrumbs {
		padding-block: 12px;
	}

	.gh-page-hero__copy {
		padding-block: 42px 38px;
	}

	.gh-eyebrow {
		margin-bottom: 15px;
		font-size: 10px;
	}

	.gh-page-hero h1 {
		font-size: clamp(1.28rem, 5.85vw, 1.72rem);
		letter-spacing: -0.04em;
	}

	.gh-page-hero__lead {
		font-size: 15px;
		line-height: 1.65;
	}

	.gh-actions {
		margin-top: 23px;
	}

	.gh-button,
	.wp-block-button__link,
	button[type="submit"] {
		min-height: 44px;
		padding: 11px 15px;
		font-size: 13px;
	}

	.gh-page-hero__media {
		height: clamp(250px, 66vw, 350px);
	}

	.gh-entry-content .gh-section,
	.gh-knowledge-index {
		padding-block: 54px;
	}

	.gh-section-heading {
		margin-bottom: 28px;
	}

	.gh-section-heading h2,
	.gh-entry-content h2,
	.gh-cta-band h2 {
		font-size: clamp(1.25rem, 5.7vw, 1.65rem);
		letter-spacing: -0.035em;
	}

	.gh-benefit-strip {
		padding-block: 10px;
	}

	.gh-benefit-strip .wp-block-columns {
		display: grid;
		grid-template-columns: 1fr;
	}

	.gh-benefit-strip .wp-block-column,
	.gh-benefit-strip .wp-block-column:first-child,
	.gh-benefit-strip .wp-block-column:last-child {
		min-height: 76px;
		padding: 12px 0;
	}

	.gh-benefit-strip .wp-block-column + .wp-block-column {
		border-top: 1px solid var(--gh-line);
		border-left: 0;
	}

	.gh-service-list {
		grid-template-columns: 1fr;
	}

	.gh-process {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.gh-process > .wp-block-group,
	.gh-step {
		min-height: 54px;
		padding: 3px 0 0 62px;
	}

	.gh-process > .wp-block-group:not(:last-child)::after,
	.gh-step:not(:last-child)::after {
		top: 50px;
		bottom: -28px;
		left: 21px;
		width: 1px;
		height: auto;
	}

	.gh-cta-band {
		padding-block: 48px;
	}

	.gh-cta-band > .wp-block-group__inner-container,
	.gh-cta-band > .gh-container {
		grid-template-columns: 1fr;
	}

	.gh-cta-band p,
	.gh-cta-band .wp-block-buttons {
		grid-column: 1;
		grid-row: auto;
	}

	.gh-cta-band .wp-block-buttons {
		justify-content: flex-start;
	}

	.gh-form {
		grid-template-columns: 1fr;
	}

	.gh-form__field,
	.gh-form__notice,
	.gh-form__consent,
	.gh-form__actions {
		grid-column: 1;
	}

	.gh-form__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.gh-knowledge-grid {
		grid-template-columns: 1fr;
	}

	.gh-footer-main {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.gh-footer-brand {
		grid-column: 1;
	}

	.gh-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
