:root {
	--ghx-ink: #071110;
	--ghx-night: #0d1716;
	--ghx-teal: #0f4f4a;
	--ghx-teal-soft: #173f3b;
	--ghx-gold: #c9a227;
	--ghx-gold-soft: #f2d989;
	--ghx-paper: #f8f4ea;
	--ghx-text: #f5f2e8;
	--ghx-muted: #aebbb7;
	--ghx-line: rgba(242, 217, 137, .2);
	--ghx-card: rgba(18, 31, 30, .88);
	--ghx-radius: 8px;
	--ghx-container: min(1180px, calc(100vw - 40px));
	--ghx-sans: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	--ghx-serif: Georgia, "Times New Roman", serif;
}

.ghx-header,
.ghx-footer,
.ghx-home-hero,
.ghx-section,
.ghx-post-hero,
.ghx-single-grid {
	box-sizing: border-box;
	direction: ltr;
	font-family: var(--ghx-sans);
}

.ghx-header *,
.ghx-footer *,
.ghx-home-hero *,
.ghx-section *,
.ghx-post-hero *,
.ghx-single-grid * {
	box-sizing: border-box;
}

.ghx-header {
	background: rgba(7, 17, 16, .9);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(16px);
	position: sticky;
	top: 0;
	z-index: 50;
}

.ghx-header__inner {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 78px;
	margin-inline: auto;
	width: var(--ghx-container);
}

.ghx-header__brand,
.ghx-header__nav a,
.ghx-header__search,
.ghx-footer a,
.ghx-card a,
.ghx-pill,
.ghx-toc a,
.ghx-smart-rail a {
	text-decoration: none;
}

.ghx-header__brand {
	align-items: center;
	color: var(--ghx-text);
	display: inline-flex;
	gap: 12px;
}

.ghx-header__mark {
	align-items: center;
	background: linear-gradient(145deg, var(--ghx-teal), #10211f);
	border: 1px solid var(--ghx-line);
	border-radius: 50%;
	color: var(--ghx-gold-soft);
	display: inline-flex;
	font-family: var(--ghx-serif);
	font-size: 22px;
	font-weight: 700;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.ghx-header__copy {
	display: grid;
	gap: 1px;
}

.ghx-header__copy strong {
	color: #fff;
	font-size: 1.05rem;
	line-height: 1.15;
}

.ghx-header__copy span {
	color: var(--ghx-muted);
	font-size: .78rem;
	line-height: 1.3;
}

.ghx-header__nav {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
}

.ghx-header__nav a,
.ghx-header__search {
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--ghx-muted);
	font-size: .78rem;
	font-weight: 850;
	letter-spacing: .04em;
	padding: 9px 12px;
	text-transform: uppercase;
}

.ghx-header__nav a:hover,
.ghx-header__search:hover {
	background: rgba(201, 162, 39, .12);
	border-color: var(--ghx-line);
	color: var(--ghx-gold-soft);
}

.ghx-home-hero {
	background:
		radial-gradient(circle at 18% 0%, rgba(201, 162, 39, .18), transparent 32%),
		linear-gradient(135deg, var(--ghx-ink), var(--ghx-night) 54%, #071110);
	color: var(--ghx-text);
	padding-block: clamp(52px, 8vw, 112px);
}

.ghx-home-hero__inner,
.ghx-section,
.ghx-post-hero__inner,
.ghx-single-grid,
.ghx-footer__inner {
	margin-inline: auto;
	width: var(--ghx-container);
}

.ghx-home-hero__inner,
.ghx-post-hero__layout {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 62px);
	grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}

.ghx-kicker {
	align-items: center;
	color: var(--ghx-gold-soft);
	display: inline-flex;
	font-size: .78rem;
	font-weight: 900;
	gap: 10px;
	letter-spacing: .08em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.ghx-kicker::before {
	background: currentColor;
	content: "";
	height: 1px;
	width: 34px;
}

.ghx-home-hero h1,
.ghx-post-hero h1,
.ghx-section__head h2,
.ghx-footer h2 {
	color: #fff;
	font-family: var(--ghx-serif);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	text-wrap: balance;
}

.ghx-home-hero h1,
.ghx-post-hero h1 {
	font-size: clamp(3rem, 6.2vw, 6rem);
}

.ghx-home-hero p,
.ghx-post-hero__copy > p {
	color: var(--ghx-muted);
	font-size: clamp(1rem, 1.4vw, 1.22rem);
	line-height: 1.86;
	margin: 22px 0 0;
	max-width: 680px;
}

.ghx-home-hero__story,
.ghx-post-hero__image {
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--ghx-line);
	border-radius: var(--ghx-radius);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.ghx-home-hero__story img,
.ghx-post-hero__image img,
.ghx-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ghx-home-hero__story {
	aspect-ratio: 16 / 11;
	display: block;
}

.ghx-home-hero__story::after {
	background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 16, .92));
	content: "";
	inset: 0;
	position: absolute;
}

.ghx-home-hero__story span,
.ghx-home-hero__story strong {
	inset-inline: 26px;
	position: absolute;
	z-index: 2;
}

.ghx-home-hero__story span {
	bottom: 92px;
	color: var(--ghx-gold-soft);
	font-size: .76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.ghx-home-hero__story strong {
	bottom: 26px;
	font-family: var(--ghx-serif);
	font-size: clamp(1.5rem, 2.8vw, 2.4rem);
	line-height: 1.12;
}

.ghx-section {
	padding-block: clamp(48px, 8vw, 90px);
}

.ghx-section__head {
	margin-block-end: 26px;
}

.ghx-section__head h2 {
	font-size: clamp(2rem, 3.8vw, 3.4rem);
}

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

.ghx-card {
	background: var(--ghx-card);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--ghx-radius);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
}

.ghx-card__media {
	aspect-ratio: 16 / 11;
	background: var(--ghx-teal-soft);
	display: block;
}

.ghx-card__body {
	display: grid;
	gap: 12px;
	padding: 20px;
}

.ghx-card__meta {
	align-items: center;
	color: var(--ghx-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: .76rem;
	font-weight: 850;
	gap: 8px 12px;
	text-transform: uppercase;
}

.ghx-card__meta a,
.ghx-pill {
	color: var(--ghx-gold-soft);
}

.ghx-card h3 {
	font-family: var(--ghx-serif);
	font-size: 1.38rem;
	line-height: 1.22;
	margin: 0;
}

.ghx-card h3 a {
	color: #fff;
}

.ghx-card p {
	color: var(--ghx-muted);
	line-height: 1.72;
	margin: 0;
}

.ghx-post-hero {
	background:
		radial-gradient(circle at 80% 0%, rgba(15, 79, 74, .46), transparent 34%),
		linear-gradient(180deg, var(--ghx-ink), var(--ghx-night));
	color: var(--ghx-text);
	padding-block: clamp(42px, 7vw, 92px);
}

.ghx-breadcrumbs {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-block-end: 24px;
}

.ghx-breadcrumbs a {
	color: var(--ghx-muted);
	font-size: .86rem;
	text-decoration: none;
}

.ghx-breadcrumbs a + a::before {
	color: var(--ghx-gold);
	content: "/";
	margin-inline-end: 8px;
}

.ghx-pill {
	background: rgba(201, 162, 39, .12);
	border: 1px solid var(--ghx-line);
	border-radius: 999px;
	display: inline-flex;
	font-size: .78rem;
	font-weight: 900;
	margin-block-end: 16px;
	padding: 8px 13px;
	text-transform: uppercase;
}

.ghx-post-hero__meta {
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: var(--ghx-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin-block-start: 26px;
	padding-block-start: 16px;
}

.ghx-post-hero__meta a {
	color: #fff;
	font-weight: 900;
}

.ghx-post-hero__image {
	aspect-ratio: 16 / 11;
	margin: 0;
}

.ghx-single-grid {
	align-items: start;
	display: grid;
	gap: clamp(24px, 4vw, 48px);
	grid-template-columns: minmax(0, 820px) 300px;
	justify-content: center;
	padding-block: clamp(36px, 6vw, 72px);
}

.ghx-article,
.ghx-toc,
.ghx-smart-rail {
	background: var(--ghx-card);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--ghx-radius);
	box-shadow: 0 16px 46px rgba(0, 0, 0, .22);
}

.ghx-article__content {
	color: #dfe8e4;
	font-size: clamp(1.03rem, 1.1vw, 1.12rem);
	line-height: 1.95;
	padding: clamp(30px, 5vw, 56px);
}

.ghx-article__content > p:first-child {
	color: #fff;
	font-size: clamp(1.14rem, 1.6vw, 1.32rem);
	line-height: 1.82;
}

.ghx-article__content h2,
.ghx-article__content h3 {
	color: #fff;
	font-family: var(--ghx-serif);
	line-height: 1.18;
	margin-block: 1.7em .55em;
	scroll-margin-top: 110px;
}

.ghx-article__content h2 {
	border-left: 4px solid var(--ghx-gold);
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	padding-left: 14px;
}

.ghx-article__content h3 {
	color: var(--ghx-gold-soft);
	font-size: clamp(1.28rem, 2vw, 1.66rem);
}

.ghx-tags {
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 clamp(30px, 5vw, 56px) clamp(28px, 4vw, 42px);
}

.ghx-tags span {
	color: var(--ghx-muted);
	font-size: .8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.ghx-tags a,
.ghx-toc a,
.ghx-smart-rail a {
	border-radius: 999px;
	color: var(--ghx-text);
	display: inline-flex;
	font-size: .88rem;
	line-height: 1.32;
}

.ghx-tags a {
	background: rgba(201, 162, 39, .1);
	border: 1px solid var(--ghx-line);
	color: var(--ghx-gold-soft);
	padding: 6px 11px;
}

.ghx-rail {
	display: grid;
	gap: 14px;
	position: sticky;
	top: 104px;
}

.ghx-toc,
.ghx-smart-rail {
	display: grid;
	gap: 9px;
	padding: 18px;
}

.ghx-toc h2,
.ghx-smart-rail h2 {
	color: #fff;
	font-family: var(--ghx-serif);
	font-size: 1.1rem;
	margin: 0 0 6px;
}

.ghx-toc a,
.ghx-smart-rail a {
	background: rgba(255, 255, 255, .045);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 8px 10px;
}

.ghx-toc__level-3 {
	margin-left: 14px;
	opacity: .8;
}

.ghx-footer {
	background: #060b0a;
	border-top: 1px solid rgba(255, 255, 255, .09);
	color: var(--ghx-muted);
	padding-block: 54px;
}

.ghx-footer__inner {
	display: grid;
	gap: 30px;
	grid-template-columns: 1.4fr repeat(3, minmax(140px, .65fr));
}

.ghx-footer h2 {
	font-size: 1.42rem;
	margin-block-end: 10px;
}

.ghx-footer p {
	line-height: 1.78;
	margin: 0;
	max-width: 520px;
}

.ghx-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-block-start: 16px;
}

.ghx-footer__links {
	display: grid;
	gap: 8px;
}

.ghx-footer a {
	color: var(--ghx-muted);
}

.ghx-footer a:hover {
	color: var(--ghx-gold-soft);
}

body.gulfhowto-hello-child {
	background: var(--ghx-night);
	color: var(--ghx-text);
	margin: 0;
}

body.gulfhowto-hello-child .site-main {
	background:
		radial-gradient(circle at 82% 0%, rgba(201, 162, 39, .12), transparent 28%),
		linear-gradient(180deg, var(--ghx-ink), var(--ghx-night) 48%, #0a1110);
	min-height: 70vh;
}

@media (max-width: 1024px) {
	.ghx-header__inner,
	.ghx-home-hero__inner,
	.ghx-post-hero__layout,
	.ghx-single-grid,
	.ghx-footer__inner {
		grid-template-columns: 1fr;
	}

	.ghx-rail {
		position: static;
	}
}

@media (max-width: 680px) {
	:root {
		--ghx-container: calc(100vw - 28px);
	}

	body.gulfhowto-hello-child {
		overflow-x: hidden;
	}

	body.gulfhowto-hello-child .site-main,
	.ghx-header,
	.ghx-footer,
	.ghx-home-hero,
	.ghx-section,
	.ghx-post-hero,
	.ghx-single-grid {
		max-width: 100%;
		overflow-x: hidden;
	}

	.ghx-header__inner {
		gap: 12px;
		grid-template-columns: 1fr;
		min-height: auto;
		padding-block: 12px;
		width: calc(100vw - 28px);
	}

	.ghx-header__nav {
		flex-wrap: wrap;
		justify-content: flex-start;
		max-width: 100%;
		overflow: visible;
		width: 100%;
	}

	.ghx-header__nav a {
		white-space: nowrap;
	}

	.ghx-header__search {
		justify-self: start;
	}

	.ghx-home-hero,
	.ghx-post-hero {
		padding-block: 28px 38px;
	}

	.ghx-home-hero__inner,
	.ghx-section,
	.ghx-post-hero__inner,
	.ghx-single-grid,
	.ghx-footer__inner {
		margin-left: 22px;
		margin-right: auto;
		max-width: 346px;
		width: min(346px, calc(100vw - 44px));
	}

	.ghx-home-hero__copy,
	.ghx-post-hero__copy,
	.ghx-article,
	.ghx-rail,
	.ghx-card,
	.ghx-toc,
	.ghx-smart-rail {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.ghx-home-hero h1,
	.ghx-post-hero h1 {
		font-size: clamp(1.86rem, 8.4vw, 2.25rem);
		line-height: 1.1;
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.ghx-home-hero__story,
	.ghx-post-hero__image {
		border-radius: 18px;
		width: 100%;
	}

	.ghx-card-grid {
		grid-template-columns: 1fr;
	}

	.ghx-breadcrumbs {
		display: none;
	}

	.ghx-post-hero__layout {
		display: flex;
		flex-direction: column-reverse;
	}

	.ghx-post-hero__meta {
		display: grid;
		gap: 8px;
		max-width: 100%;
	}

	.ghx-post-hero__meta > * {
		background: rgba(255, 255, 255, .055);
		border: 1px solid rgba(255, 255, 255, .08);
		border-radius: 999px;
		padding: 8px 12px;
	}

	.ghx-single-grid {
		padding-block: 0 48px;
	}

	.ghx-article__content {
		font-size: 1rem;
		line-height: 1.84;
		padding: 24px 20px;
		overflow-wrap: break-word;
	}

	.ghx-article__content p,
	.ghx-article__content li,
	.ghx-article__content h2,
	.ghx-article__content h3 {
		max-width: 100%;
		overflow-wrap: break-word;
	}

	.ghx-article__content h2 {
		font-size: 1.55rem;
	}

	.ghx-tags {
		padding: 0 20px 24px;
	}

	.ghx-rail {
		order: -1;
	}

	.ghx-toc {
		box-shadow: none;
	}

	.ghx-toc a {
		width: fit-content;
	}
}

body.gulfhowto-hello-child {
	--ghx-page-bg: #f3fbf8;
	--ghx-panel: #ffffff;
	--ghx-panel-soft: #eefaf6;
	--ghx-green: #00875a;
	--ghx-green-deep: #005b43;
	--ghx-green-dark: #004431;
	--ghx-text-dark: #1c2b2d;
	--ghx-text-soft: #657a7d;
	--ghx-border-light: #dcefea;
	--ghx-shadow-light: 0 14px 38px rgba(6, 70, 55, .09);
	background: var(--ghx-page-bg);
	color: var(--ghx-text-dark);
}

body.gulfhowto-hello-child .site-main {
	background:
		linear-gradient(180deg, rgba(0, 135, 90, .05), transparent 420px),
		var(--ghx-page-bg);
}

.ghx-header {
	background: #fff;
	border-bottom: 1px solid var(--ghx-border-light);
	box-shadow: 0 8px 30px rgba(8, 57, 47, .05);
	color: var(--ghx-text-dark);
}

.ghx-header__topbar {
	background: #f5fbf9;
	border-bottom: 1px solid var(--ghx-border-light);
	color: #64807d;
	font-size: .82rem;
}

.ghx-header__top-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 32px;
	margin-inline: auto;
	width: var(--ghx-container);
}

.ghx-header__top-inner nav {
	display: flex;
	gap: 18px;
}

.ghx-header__top-inner a {
	color: #486460;
	text-decoration: none;
}

.ghx-header__inner {
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	min-height: 70px;
}

.ghx-header__consult {
	background: linear-gradient(135deg, #07a66d, #00764f);
	border-radius: 9px;
	box-shadow: 0 8px 18px rgba(0, 135, 90, .22);
	color: #fff;
	font-size: .88rem;
	font-weight: 900;
	padding: 12px 18px;
	text-decoration: none;
	white-space: nowrap;
}

.ghx-header__brand {
	color: var(--ghx-green-deep);
	order: 4;
}

.ghx-header__mark {
	background: transparent;
	border: 0;
	color: var(--ghx-green);
	font-size: 32px;
	height: 48px;
	width: 38px;
}

.ghx-header__copy strong {
	color: var(--ghx-green-deep);
	font-size: 1.5rem;
	font-weight: 950;
}

.ghx-header__copy span {
	color: var(--ghx-text-soft);
	font-size: .72rem;
	font-weight: 800;
}

.ghx-header__nav {
	justify-content: flex-end;
	order: 3;
}

.ghx-header__nav a,
.ghx-header__search {
	color: #1c2b2d;
	font-size: .9rem;
	letter-spacing: 0;
	padding: 8px 10px;
	text-transform: none;
}

.ghx-header__nav a:hover,
.ghx-header__search:hover {
	background: rgba(0, 135, 90, .08);
	border-color: transparent;
	color: var(--ghx-green);
}

.ghx-header__search {
	background: #f2f7f6;
	border: 1px solid var(--ghx-border-light);
	color: #728886;
	min-width: 210px;
	order: 2;
	padding-inline: 18px;
	text-align: left;
}

.ghx-header__search::before {
	content: "Search articles...";
	font-weight: 500;
}

.ghx-header__search {
	font-size: 0;
}

.ghx-header__search::before {
	font-size: .85rem;
}

.ghx-post-hero {
	background-image:
		linear-gradient(90deg, rgba(0, 79, 59, .88), rgba(0, 79, 59, .66), rgba(0, 79, 59, .24)),
		var(--ghx-post-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	min-height: 330px;
	padding-block: 28px 0;
}

.ghx-post-hero__inner {
	align-items: end;
	display: grid;
	min-height: 302px;
}

.ghx-post-hero__layout {
	display: block;
	max-width: 720px;
	padding-block-end: 34px;
}

.ghx-breadcrumbs {
	justify-content: flex-end;
	margin: 0 0 28px;
}

.ghx-breadcrumbs a {
	color: rgba(255, 255, 255, .82);
}

.ghx-pill {
	background: #079d68;
	border: 0;
	color: #fff;
	font-weight: 900;
}

.ghx-post-hero h1 {
	font-family: var(--ghx-sans);
	font-size: clamp(2.15rem, 4vw, 3.5rem);
	font-weight: 950;
	line-height: 1.28;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .18);
}

.ghx-post-hero__copy > p {
	color: rgba(255, 255, 255, .9);
	font-size: 1.08rem;
	line-height: 1.9;
	margin-block-start: 12px;
	max-width: 680px;
}

.ghx-post-hero__meta {
	background: rgba(0, 74, 55, .88);
	border: 0;
	border-radius: 0;
	color: rgba(255, 255, 255, .9);
	gap: 16px;
	margin-block-start: 22px;
	padding: 10px 18px;
	width: fit-content;
}

.ghx-post-hero__meta > *::before {
	background: rgba(255, 255, 255, .55);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 6px;
	margin-inline-end: 7px;
	width: 6px;
}

.ghx-post-hero__meta a {
	color: #fff;
}

.ghx-single-grid {
	align-items: start;
	direction: ltr;
	gap: 28px;
	grid-template-columns: 304px minmax(0, 780px);
	justify-content: center;
	margin-block-start: -28px;
	padding-block: 0 36px;
	position: relative;
	z-index: 2;
}

.ghx-article,
.ghx-toc,
.ghx-smart-rail,
.ghx-side-card,
.ghx-side-cta {
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(216, 238, 232, .95);
	border-radius: 12px;
	box-shadow: var(--ghx-shadow-light);
	color: var(--ghx-text-dark);
}

.ghx-article {
	overflow: hidden;
}

.ghx-share-row {
	align-items: center;
	display: flex;
	flex-direction: row-reverse;
	gap: 9px;
	justify-content: flex-start;
	padding: 18px 24px 0;
}

.ghx-share-row span {
	color: var(--ghx-text-dark);
	font-size: .86rem;
	font-weight: 900;
}

.ghx-share-row a {
	align-items: center;
	background: #edf7f4;
	border: 1px solid var(--ghx-border-light);
	border-radius: 50%;
	color: var(--ghx-green-deep);
	display: inline-flex;
	font-size: .74rem;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	text-decoration: none;
	width: 34px;
}

.ghx-share-row a:nth-child(2) {
	background: #0ca66d;
	color: #fff;
}

.ghx-article__content {
	color: #334346;
	font-size: 1.06rem;
	line-height: 2.05;
	padding: 26px 34px 18px;
	text-align: left;
}

.ghx-article__content > p:first-child {
	color: #334346;
	font-size: 1.08rem;
	line-height: 2.05;
}

.ghx-article__content h2,
.ghx-article__content h3 {
	color: #172728;
	font-family: var(--ghx-sans);
	font-weight: 950;
	line-height: 1.45;
	margin-block: 1.35em .7em;
	text-align: right;
}

.ghx-article__content h2 {
	border-left: 0;
	border-right: 4px solid var(--ghx-green);
	font-size: 1.55rem;
	padding-left: 0;
	padding-right: 14px;
}

.ghx-article__feature {
	margin: 30px auto 8px;
}

.ghx-article__feature img {
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(7, 58, 48, .11);
	width: 100%;
}

.ghx-quote {
	background: linear-gradient(135deg, #e7faf3, #f3fffb);
	border: 0;
	border-radius: 10px;
	color: var(--ghx-green-deep);
	font-size: 1.18rem;
	font-weight: 950;
	line-height: 1.75;
	margin: 14px 0 28px;
	padding: 20px 72px 20px 24px;
	position: relative;
	text-align: center;
}

.ghx-quote::after {
	color: var(--ghx-green);
	content: "”";
	font-family: Georgia, serif;
	font-size: 4rem;
	line-height: 1;
	position: absolute;
	right: 26px;
	top: 8px;
}

.ghx-check-panel ul {
	background: transparent;
	border: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ghx-check-panel li {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin: 0 0 8px;
}

.ghx-check-panel li::before {
	align-items: center;
	background: var(--ghx-green);
	border-radius: 50%;
	color: #fff;
	content: "✓";
	display: inline-flex;
	flex: 0 0 18px;
	font-size: .78rem;
	height: 18px;
	justify-content: center;
	order: 2;
	width: 18px;
}

.ghx-note-box {
	align-items: center;
	background: linear-gradient(135deg, #e4faf2, #f7fffc);
	border-radius: 10px;
	color: #284443;
	display: grid;
	gap: 5px;
	grid-template-columns: 1fr auto;
	margin-block: 28px;
	padding: 18px 22px;
	text-align: right;
}

.ghx-note-box strong {
	color: var(--ghx-green-deep);
	font-size: 1rem;
}

.ghx-note-box p {
	grid-column: 1 / -1;
	margin: 0;
}

.ghx-tags {
	border-top: 1px solid var(--ghx-border-light);
	padding: 0 34px 28px;
}

.ghx-tags span {
	color: var(--ghx-green-deep);
}

.ghx-tags a,
.ghx-tag-card a {
	background: #f5fbf9;
	border: 1px solid var(--ghx-border-light);
	color: #486460;
}

.ghx-rail {
	display: grid;
	gap: 14px;
	position: static;
}

.ghx-toc,
.ghx-smart-rail {
	box-shadow: none;
}

.ghx-toc h2,
.ghx-smart-rail h2,
.ghx-side-card h2,
.ghx-side-cta h2 {
	color: #172728;
	font-family: var(--ghx-sans);
	font-size: 1.24rem;
	font-weight: 950;
	margin: 0 0 12px;
	text-align: right;
}

.ghx-toc h2::after,
.ghx-smart-rail h2::after,
.ghx-side-card h2::after {
	background: var(--ghx-green);
	content: "";
	display: block;
	height: 3px;
	margin-block-start: 7px;
	margin-left: auto;
	width: 56px;
}

.ghx-side-card,
.ghx-side-cta {
	padding: 18px;
}

.ghx-side-post {
	align-items: center;
	border-bottom: 1px solid var(--ghx-border-light);
	color: #253638;
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 86px;
	padding: 10px 0;
	text-decoration: none;
}

.ghx-side-post:first-of-type {
	padding-top: 0;
}

.ghx-side-post:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ghx-side-post strong {
	display: block;
	font-size: .9rem;
	font-weight: 900;
	line-height: 1.55;
	text-align: right;
}

.ghx-side-post small {
	color: #90a3a1;
	display: block;
	font-size: .76rem;
	margin-block-start: 4px;
	text-align: right;
}

.ghx-side-post img {
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	object-fit: cover;
	width: 86px;
}

.ghx-news-card {
	background: linear-gradient(145deg, #f2fbf8, #ffffff);
}

.ghx-news-card p {
	color: var(--ghx-text-soft);
	line-height: 1.75;
	margin: 0 0 12px;
	text-align: right;
}

.ghx-news-card form {
	display: grid;
	gap: 9px;
}

.ghx-news-card input {
	background: #fff;
	border: 1px solid var(--ghx-border-light);
	border-radius: 8px;
	min-height: 42px;
	padding: 10px 12px;
	width: 100%;
}

.ghx-news-card button,
.ghx-side-cta a {
	background: linear-gradient(135deg, #079d68, #006d4e);
	border: 0;
	border-radius: 8px;
	color: #fff;
	font-weight: 900;
	min-height: 42px;
	padding: 10px 14px;
	text-align: center;
	text-decoration: none;
}

.ghx-side-list {
	display: grid;
	gap: 0;
}

.ghx-side-list a {
	align-items: center;
	border-bottom: 1px solid var(--ghx-border-light);
	color: #43595a;
	display: flex;
	justify-content: space-between;
	padding: 9px 0;
	text-decoration: none;
}

.ghx-side-list a:last-child {
	border-bottom: 0;
}

.ghx-side-list small {
	color: #8ca09d;
}

.ghx-tag-card div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ghx-tag-card a {
	border-radius: 8px;
	font-size: .82rem;
	padding: 7px 10px;
	text-decoration: none;
}

.ghx-side-cta {
	overflow: hidden;
	padding: 0;
}

.ghx-side-cta img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
}

.ghx-side-cta div {
	padding: 18px;
}

.ghx-side-cta p {
	color: var(--ghx-text-soft);
	line-height: 1.75;
	margin: 0 0 14px;
	text-align: right;
}

.ghx-side-cta a {
	display: inline-flex;
}

.ghx-related--single {
	background: transparent;
	padding-block: 10px 48px;
}

.ghx-related--single .ghx-section__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.ghx-related--single .ghx-section__head h2 {
	color: #172728;
	font-family: var(--ghx-sans);
	font-size: 1.35rem;
	font-weight: 950;
	text-align: right;
}

.ghx-related--single .ghx-kicker {
	color: var(--ghx-green);
}

.ghx-related--single .ghx-card-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ghx-related--single .ghx-card {
	background: #fff;
	border-color: var(--ghx-border-light);
	box-shadow: var(--ghx-shadow-light);
}

.ghx-related--single .ghx-card h3 a,
.ghx-related--single .ghx-card__body,
.ghx-related--single .ghx-card p {
	color: var(--ghx-text-dark);
}

.ghx-related--single .ghx-card__meta,
.ghx-related--single .ghx-card__meta a {
	color: var(--ghx-text-soft);
}

.ghx-footer {
	background:
		radial-gradient(circle at 25% 0%, rgba(0, 135, 90, .32), transparent 34%),
		linear-gradient(135deg, #00523d, #003a2c);
	color: rgba(255, 255, 255, .82);
}

.ghx-footer h2,
.ghx-footer a {
	color: #fff;
}

.ghx-footer p {
	color: rgba(255, 255, 255, .76);
}

body.gulfhowto-hello-child #comments,
body.gulfhowto-hello-child .comments-area {
	background: #fff;
	border: 1px solid var(--ghx-border-light);
	border-radius: 12px;
	box-shadow: var(--ghx-shadow-light);
	color: var(--ghx-text-dark);
	margin: 0 auto 34px;
	max-width: 1112px;
	padding: 22px;
}

@media (max-width: 1024px) {
	.ghx-header__inner {
		grid-template-columns: 1fr auto;
		padding-block: 12px;
	}

	.ghx-header__brand {
		justify-content: flex-start;
		order: 0;
	}

	.ghx-header__consult {
		justify-self: end;
		order: 1;
		width: auto;
	}

	.ghx-header__nav {
		grid-column: 1 / -1;
		justify-content: center;
		order: 2;
	}

	.ghx-header__search {
		grid-column: 1 / -1;
		order: 3;
		width: 100%;
	}

	.ghx-header__top-inner,
	.ghx-header__inner,
	.ghx-post-hero__inner,
	.ghx-single-grid,
	.ghx-section,
	.ghx-footer__inner {
		width: min(100% - 28px, 760px);
	}

	.ghx-single-grid {
		grid-template-columns: 1fr;
	}

	.ghx-rail {
		order: 2;
	}
}

@media (max-width: 680px) {
	.ghx-header__topbar {
		display: none;
	}

	.ghx-header__inner,
	.ghx-post-hero__inner,
	.ghx-single-grid,
	.ghx-section,
	.ghx-footer__inner {
		margin-inline: auto;
		max-width: none;
		width: min(100% - 24px, 540px);
	}

	.ghx-header__inner {
		grid-template-columns: 1fr;
	}

	.ghx-header__brand,
	.ghx-header__consult {
		justify-self: stretch;
	}

	.ghx-header__consult,
	.ghx-header__search {
		min-width: 0;
		width: 100%;
	}

	.ghx-header__consult {
		text-align: center;
	}

	.ghx-header__nav {
		gap: 6px;
	}

	.ghx-header__nav a {
		background: #f5fbf9;
		border: 1px solid var(--ghx-border-light);
		font-size: .78rem;
		padding: 8px 10px;
	}

	.ghx-post-hero {
		min-height: 0;
		padding-block: 24px 42px;
	}

	.ghx-post-hero__inner {
		min-height: 0;
	}

	.ghx-post-hero__layout {
		max-width: 100%;
		padding-block-end: 0;
	}

	.ghx-post-hero h1 {
		font-size: clamp(1.85rem, 8vw, 2.35rem);
		line-height: 1.32;
	}

	.ghx-post-hero__copy > p {
		font-size: .96rem;
		line-height: 1.8;
	}

	.ghx-post-hero__meta {
		display: grid;
		width: 100%;
	}

	.ghx-single-grid {
		margin-block-start: -22px;
	}

	.ghx-rail {
		order: 2;
	}

	.ghx-article__content {
		font-size: 1rem;
		line-height: 1.86;
		padding: 22px 18px 14px;
	}

	.ghx-article__content h2 {
		font-size: 1.28rem;
	}

	.ghx-share-row {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		padding: 16px 18px 0;
	}

	.ghx-quote {
		font-size: 1rem;
		padding: 18px;
	}

	.ghx-quote::after {
		display: none;
	}

	.ghx-check-panel li {
		justify-content: flex-start;
	}

	.ghx-check-panel li::before {
		order: 0;
	}

	.ghx-note-box {
		text-align: left;
	}

	.ghx-tags {
		padding: 0 18px 22px;
	}

	.ghx-related--single .ghx-card-grid {
		grid-template-columns: 1fr;
	}
}

/*
 * GulfHowTo single post design layer.
 * Tailwind-inspired tokens: fixed spacing scale, component primitives, and predictable breakpoints.
 */
body.gulfhowto-hello-child {
	--ghx-font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ghx-fw-container: min(100% - 48px, 1320px);
	--ghx-fw-article: 850px;
	--ghx-fw-rail: 330px;
	--ghx-fw-green-50: #effaf6;
	--ghx-fw-green-100: #dff5ee;
	--ghx-fw-green-600: #07835b;
	--ghx-fw-green-700: #006a4a;
	--ghx-fw-green-900: #003d2f;
	--ghx-fw-ink: #142326;
	--ghx-fw-muted: #697f80;
	--ghx-fw-border: #dcece8;
	--ghx-fw-card: rgba(255, 255, 255, .96);
	--ghx-fw-shadow: 0 20px 50px rgba(7, 62, 48, .11);
	--ghx-fw-shadow-sm: 0 10px 28px rgba(7, 62, 48, .08);
	background: #f4fbf8;
	color: var(--ghx-fw-ink);
	font-family: var(--ghx-font-ui);
}

.ghx-icon {
	display: inline-block;
	flex: 0 0 auto;
	height: 1em;
	vertical-align: -.14em;
	width: 1em;
}

.ghx-header {
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--ghx-fw-border);
	box-shadow: 0 8px 34px rgba(9, 66, 53, .06);
	position: relative;
	z-index: 20;
}

.ghx-header__topbar {
	background: #f7fcfa;
	border-bottom: 1px solid #e6f1ee;
	color: #5c7572;
}

.ghx-header__top-inner,
.ghx-header__inner,
.ghx-post-hero__inner,
.ghx-single-grid,
.ghx-related--single,
.ghx-footer__inner {
	margin-inline: auto;
	width: var(--ghx-fw-container);
}

.ghx-header__top-inner {
	align-items: center;
	display: flex;
	font-size: 13px;
	font-weight: 600;
	gap: 20px;
	height: 34px;
	justify-content: space-between;
}

.ghx-header__top-inner nav {
	align-items: center;
	display: flex;
	gap: 22px;
}

.ghx-header__top-inner a {
	color: #405b57;
	font-weight: 700;
	text-decoration: none;
}

.ghx-header__inner {
	align-items: center;
	display: flex !important;
	gap: 18px;
	min-height: 78px;
	padding-block: 14px;
}

.ghx-header__consult {
	align-items: center;
	background: linear-gradient(135deg, #0aa36d, #00744f);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 10px;
	box-shadow: 0 14px 24px rgba(0, 117, 79, .2);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	height: 48px;
	justify-content: center;
	order: 0;
	padding-inline: 22px;
	text-decoration: none;
	white-space: nowrap;
}

.ghx-header__search {
	align-items: center;
	background: #f4f8f7;
	border: 1px solid #dcebe8;
	border-radius: 999px;
	color: #7b908f;
	display: inline-flex;
	font-size: 14px;
	gap: 10px;
	height: 48px;
	min-width: 320px;
	order: 1;
	padding-inline: 18px 22px;
	text-align: left;
	text-decoration: none;
}

.ghx-header__search::before {
	content: none;
}

.ghx-header__search .ghx-icon {
	color: var(--ghx-fw-green-700);
	font-size: 18px;
}

.ghx-header__search span {
	display: inline;
	font-size: 14px;
	font-weight: 600;
}

.ghx-header__nav {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: flex-end;
	order: 2;
}

.ghx-header__nav a {
	border-radius: 999px;
	color: #1e3033;
	font-size: 14px;
	font-weight: 850;
	line-height: 1;
	padding: 12px 12px;
	text-decoration: none;
	white-space: nowrap;
}

.ghx-header__nav a:hover {
	background: var(--ghx-fw-green-50);
	color: var(--ghx-fw-green-700);
}

.ghx-header__brand {
	align-items: center;
	color: var(--ghx-fw-green-700);
	display: inline-flex;
	flex: 0 0 auto;
	gap: 10px;
	order: 3;
	text-decoration: none;
}

.ghx-header__mark {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ghx-fw-green-700);
	display: inline-flex;
	font-size: 42px;
	height: 52px;
	justify-content: center;
	width: 42px;
}

.ghx-header__copy strong {
	color: var(--ghx-fw-green-700);
	display: block;
	font-size: 28px;
	font-weight: 950;
	line-height: .95;
}

.ghx-header__copy span {
	color: #55726e;
	display: block;
	font-size: 10px;
	font-weight: 850;
	line-height: 1.2;
	margin-top: 6px;
}

.ghx-post-hero {
	background-image:
		linear-gradient(90deg, rgba(0, 64, 48, .92) 0%, rgba(0, 87, 63, .72) 48%, rgba(0, 87, 63, .26) 100%),
		var(--ghx-post-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	min-height: 388px;
	padding: 0;
	position: relative;
}

.ghx-post-hero__inner {
	align-content: end;
	display: grid;
	min-height: 388px;
	padding-block: 34px 42px;
}

.ghx-breadcrumbs {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin: 0 0 28px;
}

.ghx-breadcrumbs .ghx-icon {
	background: rgba(255, 255, 255, .12);
	border-radius: 999px;
	box-sizing: content-box;
	color: #fff;
	font-size: 16px;
	padding: 7px;
}

.ghx-breadcrumbs a {
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.ghx-breadcrumbs a + a::before {
	color: rgba(255, 255, 255, .48);
	content: "/";
	margin-inline-end: 10px;
}

.ghx-post-hero__layout {
	display: block;
	max-width: 760px;
	padding: 0;
}

.ghx-pill {
	background: #0aa36d;
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 20px rgba(0, 91, 63, .22);
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	padding: 10px 16px;
	text-decoration: none;
}

.ghx-post-hero h1 {
	color: #fff;
	font-size: clamp(34px, 4.2vw, 56px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 24px 0 16px;
	max-width: 760px;
	text-shadow: 0 3px 20px rgba(0, 0, 0, .24);
}

.ghx-post-hero__copy > p {
	color: rgba(255, 255, 255, .92);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.9;
	margin: 0;
	max-width: 760px;
}

.ghx-post-hero__meta {
	align-items: center;
	background: rgba(0, 61, 47, .78);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 0;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
	color: rgba(255, 255, 255, .9);
	display: flex;
	flex-wrap: wrap;
	gap: 16px 22px;
	margin-block-start: 24px;
	padding: 12px 18px;
	width: fit-content;
}

.ghx-post-hero__meta > * {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.ghx-post-hero__meta > *::before {
	content: none;
}

.ghx-post-hero__meta .ghx-icon {
	color: #b7ead9;
	font-size: 16px;
}

.ghx-post-hero__meta,
.ghx-post-hero__meta a {
	font-size: 14px;
	font-weight: 800;
}

.ghx-post-hero__meta a {
	color: #fff;
	text-decoration: none;
}

.ghx-single-grid {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(280px, var(--ghx-fw-rail)) minmax(0, var(--ghx-fw-article));
	justify-content: center;
	margin-block-start: -34px;
	padding-block: 0 42px;
	position: relative;
	z-index: 4;
}

.ghx-article,
.ghx-side-card,
.ghx-side-cta {
	background: var(--ghx-fw-card);
	border: 1px solid var(--ghx-fw-border);
	border-radius: 14px;
	box-shadow: var(--ghx-fw-shadow-sm);
	color: var(--ghx-fw-ink);
}

.ghx-article {
	box-shadow: var(--ghx-fw-shadow);
	overflow: hidden;
}

.ghx-share-row {
	align-items: center;
	background: rgba(255, 255, 255, .86);
	border-bottom: 1px solid #edf5f2;
	display: flex;
	flex-direction: row-reverse;
	gap: 10px;
	justify-content: flex-start;
	padding: 18px 28px;
}

.ghx-share-row span {
	color: #1d3132;
	font-size: 14px;
	font-weight: 950;
}

.ghx-share-row a {
	align-items: center;
	background: #f2faf7;
	border: 1px solid #d9ede7;
	border-radius: 999px;
	color: var(--ghx-fw-green-700);
	display: inline-flex;
	font-size: 17px;
	height: 40px;
	justify-content: center;
	text-decoration: none;
	transition: transform .18s ease, background .18s ease, color .18s ease;
	width: 40px;
}

.ghx-share-row a:hover {
	background: var(--ghx-fw-green-700);
	color: #fff;
	transform: translateY(-2px);
}

.ghx-share-row a:first-of-type {
	background: #0b84ee;
	border-color: #0b84ee;
	color: #fff;
}

.ghx-article__content {
	color: #324547;
	font-size: 18px;
	line-height: 2;
	padding: 34px 46px 22px;
	text-align: left;
}

.ghx-article__content > p {
	margin: 0 0 22px;
}

.ghx-article__content > p:first-child {
	color: #34484a;
	font-size: 18px;
	line-height: 2.05;
}

.ghx-article__content h2,
.ghx-article__content h3 {
	align-items: center;
	color: #102224;
	display: flex;
	font-family: var(--ghx-font-ui);
	font-weight: 950;
	gap: 12px;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 36px 0 16px;
	text-align: left;
}

.ghx-article__content h2 {
	border: 0;
	font-size: 28px;
	padding: 0;
}

.ghx-article__content h2::before,
.ghx-related--single .ghx-section__head h2::before {
	background: var(--ghx-fw-green-600);
	border-radius: 999px;
	content: "";
	display: inline-block;
	flex: 0 0 38px;
	height: 4px;
}

.ghx-article__content h3 {
	font-size: 23px;
}

.ghx-article__feature {
	margin: 34px 0 18px;
}

.ghx-article__feature img {
	aspect-ratio: 16 / 8.2;
	border-radius: 14px;
	box-shadow: 0 18px 36px rgba(0, 61, 47, .12);
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.ghx-quote {
	background: linear-gradient(135deg, #e4f8f1, #f5fffb);
	border: 1px solid #ceeee4;
	border-radius: 12px;
	color: var(--ghx-fw-green-700);
	font-size: 20px;
	font-weight: 950;
	line-height: 1.75;
	margin: 20px 0 34px;
	padding: 24px 82px 24px 30px;
	position: relative;
	text-align: center;
}

.ghx-quote::after {
	color: #0aa36d;
	content: "”";
	font-family: Georgia, serif;
	font-size: 70px;
	line-height: 1;
	position: absolute;
	right: 28px;
	top: 12px;
}

.ghx-check-panel {
	margin-block: 30px;
}

.ghx-check-panel ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ghx-check-panel li {
	align-items: center;
	color: #263c3e;
	display: flex;
	font-size: 16px;
	font-weight: 760;
	gap: 10px;
	justify-content: flex-start;
	margin: 0;
}

.ghx-check-panel li::before {
	content: none;
}

.ghx-check-panel li > span {
	align-items: center;
	background: var(--ghx-fw-green-600);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 24px;
	font-size: 15px;
	height: 24px;
	justify-content: center;
	width: 24px;
}

.ghx-note-box {
	align-items: center;
	background: linear-gradient(135deg, #e4f8f1, #f8fffc);
	border: 1px solid #d2f0e7;
	border-radius: 14px;
	color: #264143;
	display: grid;
	gap: 4px 16px;
	grid-template-columns: 48px 1fr;
	margin-block: 34px 18px;
	padding: 22px 24px;
	text-align: left;
}

.ghx-note-box > span {
	align-items: center;
	background: #c9f0e2;
	border-radius: 12px;
	color: var(--ghx-fw-green-700);
	display: inline-flex;
	font-size: 28px;
	grid-row: span 2;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.ghx-note-box strong {
	color: var(--ghx-fw-green-700);
	font-size: 17px;
	font-weight: 950;
}

.ghx-note-box p {
	color: #385052;
	font-size: 15px;
	grid-column: auto;
	line-height: 1.8;
	margin: 0;
}

.ghx-tags {
	align-items: center;
	border-top: 1px solid #edf5f2;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 22px 46px 30px;
}

.ghx-tags span {
	color: var(--ghx-fw-green-700);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.ghx-tags a,
.ghx-tag-card a {
	background: #f6fbf9;
	border: 1px solid #dfeeea;
	border-radius: 9px;
	color: #456260;
	font-size: 13px;
	font-weight: 750;
	padding: 8px 12px;
	text-decoration: none;
}

.ghx-rail {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 18px;
}

.ghx-side-card,
.ghx-side-cta {
	padding: 20px;
}

.ghx-side-card h2,
.ghx-side-cta h2 {
	align-items: center;
	color: #132729;
	display: flex;
	font-size: 21px;
	font-weight: 950;
	gap: 10px;
	justify-content: flex-start;
	letter-spacing: 0;
	margin: 0 0 16px;
	text-align: left;
}

.ghx-side-card h2 .ghx-icon {
	color: var(--ghx-fw-green-600);
	font-size: 22px;
}

.ghx-side-card h2::after,
.ghx-side-cta h2::after {
	background: var(--ghx-fw-green-600);
	border-radius: 999px;
	content: "";
	flex: 1 1 auto;
	height: 3px;
	margin-left: 4px;
	width: auto;
}

.ghx-side-post {
	align-items: center;
	border-bottom: 1px solid #e7f1ee;
	color: #203537;
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(0, 1fr) 96px;
	padding: 12px 0;
	text-decoration: none;
}

.ghx-side-post strong {
	display: block;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	text-align: left;
}

.ghx-side-post small {
	color: #8ca09d;
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-top: 8px;
	text-align: left;
}

.ghx-side-post img {
	aspect-ratio: 4 / 3;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(5, 52, 41, .08);
	height: auto;
	object-fit: cover;
	width: 96px;
}

.ghx-news-card {
	background: linear-gradient(145deg, #eefaf5, #fff);
}

.ghx-news-card p,
.ghx-side-cta p {
	color: var(--ghx-fw-muted);
	font-size: 14px;
	font-weight: 550;
	line-height: 1.75;
	margin: 0 0 14px;
	text-align: left;
}

.ghx-news-card form {
	display: grid;
	gap: 10px;
}

.ghx-news-card input {
	background: #fff;
	border: 1px solid #d9e9e5;
	border-radius: 10px;
	color: var(--ghx-fw-ink);
	font: inherit;
	height: 44px;
	padding: 0 14px;
	width: 100%;
}

.ghx-news-card button,
.ghx-side-cta a {
	align-items: center;
	background: linear-gradient(135deg, #0aa36d, #00744f);
	border: 0;
	border-radius: 10px;
	box-shadow: 0 10px 22px rgba(0, 117, 79, .18);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 950;
	gap: 8px;
	height: 44px;
	justify-content: center;
	padding-inline: 16px;
	text-align: center;
	text-decoration: none;
}

.ghx-side-list {
	display: block;
}

.ghx-side-list a {
	align-items: center;
	border-bottom: 1px solid #e7f1ee;
	color: #405b5d;
	display: flex;
	font-size: 14px;
	font-weight: 780;
	justify-content: space-between;
	padding: 11px 0;
	text-decoration: none;
}

.ghx-side-list small {
	background: #f1faf6;
	border: 1px solid #dceee8;
	border-radius: 999px;
	color: var(--ghx-fw-green-700);
	font-size: 12px;
	font-weight: 900;
	min-width: 32px;
	padding: 4px 8px;
	text-align: center;
}

.ghx-tag-card div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ghx-side-cta {
	overflow: hidden;
	padding: 0;
}

.ghx-side-cta img {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.ghx-side-cta div {
	padding: 20px;
}

.ghx-side-cta a .ghx-icon {
	font-size: 18px;
}

.ghx-related--single {
	background: transparent;
	padding-block: 0 56px;
}

.ghx-related--single .ghx-section__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

.ghx-related--single .ghx-section__head h2 {
	align-items: center;
	color: #132729;
	display: flex;
	font-size: 24px;
	font-weight: 950;
	gap: 12px;
	margin: 0;
	text-align: left;
}

.ghx-related--single .ghx-kicker {
	color: var(--ghx-fw-green-700);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0;
	margin: 0;
	text-transform: uppercase;
}

.ghx-related--single .ghx-card-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ghx-related--single .ghx-card {
	background: #fff;
	border: 1px solid var(--ghx-fw-border);
	border-radius: 14px;
	box-shadow: var(--ghx-fw-shadow-sm);
	overflow: hidden;
}

.ghx-related--single .ghx-card__media img {
	aspect-ratio: 16 / 10;
	display: block;
	object-fit: cover;
	width: 100%;
}

.ghx-related--single .ghx-card__body {
	color: var(--ghx-fw-ink);
	padding: 18px;
}

.ghx-related--single .ghx-card h3 {
	font-size: 18px;
	line-height: 1.4;
	margin: 10px 0 8px;
}

.ghx-related--single .ghx-card h3 a {
	color: #132729;
	text-decoration: none;
}

.ghx-related--single .ghx-card p,
.ghx-related--single .ghx-card__meta,
.ghx-related--single .ghx-card__meta a {
	color: var(--ghx-fw-muted);
	font-size: 13px;
}

body.gulfhowto-hello-child #comments,
body.gulfhowto-hello-child .comments-area {
	background: #fff;
	border: 1px solid var(--ghx-fw-border);
	border-radius: 14px;
	box-shadow: var(--ghx-fw-shadow-sm);
	color: var(--ghx-fw-ink);
	margin: 0 auto 40px;
	max-width: 1180px;
	padding: 24px;
	width: var(--ghx-fw-container);
}

@media (max-width: 1180px) {
	.ghx-header__inner {
		align-items: stretch;
		display: grid !important;
		grid-template-columns: 1fr auto;
	}

	.ghx-header__brand {
		justify-content: flex-start;
		order: 0;
	}

	.ghx-header__consult {
		order: 1;
	}

	.ghx-header__search,
	.ghx-header__nav {
		grid-column: 1 / -1;
	}

	.ghx-header__nav {
		justify-content: center;
		order: 2;
	}

	.ghx-header__search {
		order: 3;
		width: 100%;
	}

	.ghx-single-grid {
		grid-template-columns: minmax(0, 820px);
	}

	.ghx-rail {
		order: 2;
		position: static;
	}
}

@media (max-width: 720px) {
	body.gulfhowto-hello-child {
		--ghx-fw-container: min(100% - 24px, 540px);
	}

	.ghx-header__topbar {
		display: none;
	}

	.ghx-header__inner {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-block: 14px;
	}

	.ghx-header__brand,
	.ghx-header__consult {
		justify-content: center;
		justify-self: stretch;
		width: 100%;
	}

	.ghx-header__copy strong {
		font-size: 24px;
	}

	.ghx-header__nav {
		gap: 8px;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
	}

	.ghx-header__nav a {
		background: #f6fbf9;
		border: 1px solid #dfeeea;
		font-size: 13px;
		padding: 10px 12px;
	}

	.ghx-header__search {
		height: 46px;
		min-width: 0;
	}

	.ghx-post-hero,
	.ghx-post-hero__inner {
		min-height: 420px;
	}

	.ghx-post-hero {
		background-image:
			linear-gradient(180deg, rgba(0, 61, 47, .88), rgba(0, 75, 55, .76)),
			var(--ghx-post-image);
	}

	.ghx-post-hero__inner {
		padding-block: 28px 52px;
	}

	.ghx-breadcrumbs {
		justify-content: flex-start;
		margin-bottom: 26px;
	}

	.ghx-post-hero h1 {
		font-size: clamp(32px, 10vw, 44px);
		line-height: 1.15;
		margin-block: 20px 14px;
	}

	.ghx-post-hero__copy > p {
		font-size: 16px;
		line-height: 1.8;
	}

	.ghx-post-hero__meta {
		align-items: flex-start;
		display: grid;
		gap: 10px;
		width: 100%;
	}

	.ghx-single-grid {
		gap: 20px;
		margin-block-start: -30px;
		padding-bottom: 30px;
	}

	.ghx-share-row {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		padding: 16px;
	}

	.ghx-share-row a {
		height: 38px;
		width: 38px;
	}

	.ghx-article,
	.ghx-side-card,
	.ghx-side-cta,
	body.gulfhowto-hello-child #comments,
	body.gulfhowto-hello-child .comments-area {
		border-radius: 12px;
	}

	.ghx-article__content {
		font-size: 16px;
		line-height: 1.9;
		padding: 24px 18px 16px;
	}

	.ghx-article__content > p:first-child {
		font-size: 16px;
		line-height: 1.9;
	}

	.ghx-article__content h2 {
		font-size: 24px;
		margin-top: 30px;
	}

	.ghx-article__content h2::before,
	.ghx-related--single .ghx-section__head h2::before {
		flex-basis: 28px;
	}

	.ghx-quote {
		font-size: 17px;
		padding: 22px 20px;
	}

	.ghx-quote::after {
		display: none;
	}

	.ghx-note-box {
		grid-template-columns: 42px 1fr;
		padding: 18px;
	}

	.ghx-note-box > span {
		font-size: 24px;
		height: 42px;
		width: 42px;
	}

	.ghx-tags {
		padding: 18px;
	}

	.ghx-side-post {
		grid-template-columns: minmax(0, 1fr) 84px;
	}

	.ghx-side-post img {
		width: 84px;
	}

	.ghx-related--single .ghx-section__head {
		align-items: flex-start;
		display: grid;
		gap: 8px;
	}

	.ghx-related--single .ghx-card-grid {
		grid-template-columns: 1fr;
	}
}

/* GulfHowTo editorial single v3: clean, wide, LTR component system. */
body.gulfhowto-hello-child {
	--ghx-v3-container: min(calc(100% - 48px), 1560px);
	--ghx-v3-reading: 1040px;
	--ghx-v3-rail: 320px;
	--ghx-v3-green: #087a59;
	--ghx-v3-green-dark: #075b45;
	--ghx-v3-mint: #ecf8f4;
	--ghx-v3-ink: #172625;
	--ghx-v3-copy: #415250;
	--ghx-v3-muted: #73827f;
	--ghx-v3-line: #dfe9e6;
	--ghx-v3-soft: #f6f9f8;
	background: #fff;
	color: var(--ghx-v3-ink);
	direction: ltr;
	font-family: var(--ghx-font-ui, "Nunito Sans", "Segoe UI", Arial, sans-serif);
	letter-spacing: 0;
}

body.gulfhowto-hello-child .site-main {
	background: #fff !important;
	margin: 0 !important;
	max-width: none !important;
	overflow: visible;
	padding: 0 !important;
	width: 100% !important;
}

body.gulfhowto-hello-child :where(button, input, textarea, select) {
	font-family: inherit;
}

.ghx-icon {
	display: block;
	flex: 0 0 auto;
	height: 1em;
	width: 1em;
}

.ghx-icon__fill {
	fill: currentColor;
	stroke: none;
}

body.gulfhowto-hello-child .ghx-header {
	background: rgba(255, 255, 255, .98);
	border-bottom: 1px solid var(--ghx-v3-line);
	box-shadow: 0 5px 24px rgba(20, 51, 44, .05);
	position: relative;
	z-index: 20;
}

body.gulfhowto-hello-child .ghx-header__topbar,
body.gulfhowto-hello-child .ghx-header__consult,
body.gulfhowto-hello-child .ghx-header__nav {
	display: none !important;
}

body.gulfhowto-hello-child .ghx-header__inner {
	align-items: center;
	display: flex !important;
	gap: 40px;
	justify-content: space-between;
	margin-inline: auto;
	min-height: 86px;
	padding: 14px 0;
	width: var(--ghx-v3-container);
}

body.gulfhowto-hello-child .ghx-header__brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	order: 0;
	text-decoration: none;
}

body.gulfhowto-hello-child .ghx-header__logo,
body.gulfhowto-hello-child .ghx-header__brand > img {
	display: block;
	height: 58px;
	max-width: 280px;
	object-fit: contain;
	object-position: left center;
	width: auto;
}

body.gulfhowto-hello-child .ghx-header__search {
	align-items: center;
	background: var(--ghx-v3-soft);
	border: 1px solid var(--ghx-v3-line);
	border-radius: 8px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px;
	height: 48px;
	margin: 0;
	max-width: 510px;
	min-width: 380px;
	order: 1;
	overflow: hidden;
	padding: 0;
	width: 42vw;
}

body.gulfhowto-hello-child .ghx-header__search::before {
	content: none;
}

body.gulfhowto-hello-child .ghx-header__search input {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: var(--ghx-v3-ink);
	font-size: 14px;
	height: 100%;
	min-width: 0;
	outline: 0;
	padding: 0 16px;
}

body.gulfhowto-hello-child .ghx-header__search input::placeholder {
	color: #8a9895;
	opacity: 1;
}

body.gulfhowto-hello-child .ghx-header__search button {
	align-items: center;
	align-self: stretch;
	background: var(--ghx-v3-green);
	border: 0;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 19px;
	justify-content: center;
	padding: 0;
}

body.gulfhowto-hello-child .ghx-post-hero {
	background-image: linear-gradient(90deg, rgba(7, 49, 40, .9) 0%, rgba(7, 62, 48, .68) 48%, rgba(7, 62, 48, .08) 100%), var(--ghx-post-image);
	background-position: center 47%;
	background-size: cover;
	color: #fff;
	min-height: 430px;
	padding: 0;
}

body.gulfhowto-hello-child .ghx-post-hero__inner {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-inline: auto;
	min-height: 430px;
	padding: 34px 0 38px;
	width: var(--ghx-v3-container);
}

body.gulfhowto-hello-child .ghx-breadcrumbs {
	align-items: center;
	display: flex;
	gap: 9px;
	justify-content: flex-start;
	margin: 0 0 28px;
	order: 0;
}

body.gulfhowto-hello-child .ghx-breadcrumbs span {
	display: inline-flex;
}

body.gulfhowto-hello-child .ghx-breadcrumbs .ghx-icon {
	background: transparent;
	border-radius: 0;
	box-sizing: border-box;
	font-size: 14px;
	padding: 0;
}

body.gulfhowto-hello-child .ghx-breadcrumbs a {
	color: rgba(255, 255, 255, .82);
	font-size: 12px;
	font-weight: 700;
}

body.gulfhowto-hello-child .ghx-breadcrumbs a + a::before {
	content: "/";
	margin: 0 9px 0 0;
}

body.gulfhowto-hello-child .ghx-post-hero__layout,
body.gulfhowto-hello-child .ghx-post-hero__copy {
	max-width: 790px;
	padding: 0;
	width: 100%;
}

body.gulfhowto-hello-child .ghx-pill {
	background: #0a9469;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	box-shadow: none;
	font-size: 12px;
	font-weight: 800;
	padding: 7px 13px;
}

body.gulfhowto-hello-child .ghx-post-hero h1 {
	color: #fff;
	font-family: var(--ghx-font-heading, var(--ghx-font-ui, "Nunito Sans", "Segoe UI", Arial, sans-serif));
	font-size: clamp(40px, 4vw, 58px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 18px 0 14px;
	max-width: 790px;
	text-shadow: 0 3px 20px rgba(0, 0, 0, .2);
}

body.gulfhowto-hello-child .ghx-post-hero__copy > p {
	color: rgba(255, 255, 255, .9);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.65;
	max-width: 690px;
}

body.gulfhowto-hello-child .ghx-post-hero__meta {
	align-items: center;
	background: transparent;
	border: 0;
	box-shadow: none;
	display: flex;
	gap: 12px 24px;
	margin-top: 22px;
	padding: 0;
	width: auto;
}

body.gulfhowto-hello-child .ghx-post-hero__meta > * {
	gap: 7px;
}

body.gulfhowto-hello-child .ghx-post-author__avatar {
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 50%;
	display: inline-flex;
	height: 34px;
	overflow: hidden;
	width: 34px;
}

body.gulfhowto-hello-child .ghx-post-author__avatar img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

body.gulfhowto-hello-child .ghx-post-hero__meta,
body.gulfhowto-hello-child .ghx-post-hero__meta a {
	font-size: 13px;
	font-weight: 700;
}

body.gulfhowto-hello-child .ghx-single-grid {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, var(--ghx-v3-reading)) var(--ghx-v3-rail);
	justify-content: center;
	margin: 0 auto;
	padding: 42px 0 60px;
	position: relative;
	width: var(--ghx-v3-container);
	z-index: 2;
}

body.gulfhowto-hello-child .ghx-single-grid--no-rail {
	grid-template-columns: minmax(0, var(--ghx-v3-reading));
}

body.gulfhowto-hello-child .ghx-article {
	background: #fff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	min-width: 0;
	overflow: visible;
}

body.gulfhowto-hello-child .ghx-article > [itemprop="author"] {
	display: none;
}

body.gulfhowto-hello-child .ghx-share-row {
	align-items: center;
	background: #fff;
	border: 0;
	border-bottom: 1px solid var(--ghx-v3-line);
	display: flex;
	flex-direction: row;
	gap: 9px;
	justify-content: flex-start;
	margin-bottom: 26px;
	padding: 0 0 18px;
}

body.gulfhowto-hello-child .ghx-share-row span {
	color: var(--ghx-v3-muted);
	font-size: 13px;
	font-weight: 800;
	margin-right: 4px;
}

body.gulfhowto-hello-child .ghx-share-row a,
body.gulfhowto-hello-child .ghx-share-row a:first-of-type {
	align-items: center;
	background: #fff;
	border: 1px solid #ccdcd7;
	border-radius: 50%;
	color: var(--ghx-v3-green-dark);
	display: inline-flex;
	font-size: 16px;
	height: 36px;
	justify-content: center;
	width: 36px;
}

body.gulfhowto-hello-child .ghx-share-row a:hover {
	background: var(--ghx-v3-green);
	border-color: var(--ghx-v3-green);
	color: #fff;
	transform: translateY(-1px);
}

body.gulfhowto-hello-child .ghx-article__content {
	color: var(--ghx-v3-copy);
	font-family: var(--ghx-font-ui, "Nunito Sans", "Segoe UI", Arial, sans-serif);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.82;
	padding: 0;
	text-align: left;
}

body.gulfhowto-hello-child .ghx-article__content > p,
body.gulfhowto-hello-child .ghx-article__content > p:first-child {
	color: var(--ghx-v3-copy);
	font-size: 17px;
	line-height: 1.82;
	margin: 0 0 22px;
}

body.gulfhowto-hello-child .ghx-article__content h2,
body.gulfhowto-hello-child .ghx-article__content h3 {
	color: var(--ghx-v3-ink);
	font-family: var(--ghx-font-heading, var(--ghx-font-ui, "Nunito Sans", "Segoe UI", Arial, sans-serif));
	font-weight: 900;
	justify-content: flex-start;
	letter-spacing: 0;
	text-align: left;
}

body.gulfhowto-hello-child .ghx-article__content h2 {
	font-size: 27px;
	gap: 12px;
	line-height: 1.25;
	margin: 34px 0 13px;
}

body.gulfhowto-hello-child .ghx-article__content h2::before,
body.gulfhowto-hello-child .ghx-related--single .ghx-section__head h2::before {
	background: var(--ghx-v3-green);
	border-radius: 99px;
	content: "";
	display: inline-block;
	flex: 0 0 28px;
	height: 3px;
}

body.gulfhowto-hello-child .ghx-article__feature {
	margin: 28px 0 16px;
}

body.gulfhowto-hello-child .ghx-article__feature img {
	aspect-ratio: 16 / 8.5;
	border-radius: 7px;
	box-shadow: none;
	object-fit: cover;
}

body.gulfhowto-hello-child .ghx-quote {
	background: var(--ghx-v3-mint);
	border: 0;
	border-radius: 6px;
	color: var(--ghx-v3-green-dark);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.55;
	margin: 16px 0 30px;
	padding: 22px 62px 22px 26px;
	text-align: left;
}

body.gulfhowto-hello-child .ghx-quote::after {
	color: var(--ghx-v3-green);
	font-size: 54px;
	right: 22px;
	top: 12px;
}

body.gulfhowto-hello-child .ghx-check-panel li {
	font-size: 16px;
	font-weight: 600;
}

body.gulfhowto-hello-child .ghx-check-panel li > span {
	background: var(--ghx-v3-green);
	height: 21px;
	width: 21px;
}

body.gulfhowto-hello-child .ghx-note-box {
	background: var(--ghx-v3-mint);
	border: 0;
	border-radius: 6px;
	grid-template-columns: 44px 1fr;
	padding: 19px 21px;
}

body.gulfhowto-hello-child .ghx-note-box > span {
	background: #d6f0e7;
	border-radius: 6px;
	font-size: 23px;
	height: 44px;
	width: 44px;
}

body.gulfhowto-hello-child .ghx-tags {
	border-top: 1px solid var(--ghx-v3-line);
	gap: 8px;
	margin-top: 30px;
	padding: 18px 0 0;
}

body.gulfhowto-hello-child .ghx-tags a,
body.gulfhowto-hello-child .ghx-tag-card a {
	background: var(--ghx-v3-soft);
	border: 1px solid var(--ghx-v3-line);
	border-radius: 5px;
	color: #536663;
	padding: 7px 10px;
}

body.gulfhowto-hello-child .ghx-rail {
	display: grid;
	gap: 16px;
	order: 2;
	position: sticky;
	top: 18px;
}

body.gulfhowto-hello-child .ghx-side-card,
body.gulfhowto-hello-child .ghx-side-cta {
	background: #fff;
	border: 1px solid var(--ghx-v3-line);
	border-radius: 7px;
	box-shadow: 0 8px 25px rgba(24, 62, 53, .055);
	padding: 18px;
}

body.gulfhowto-hello-child .ghx-side-card h2,
body.gulfhowto-hello-child .ghx-side-cta h2 {
	color: var(--ghx-v3-ink);
	font-size: 18px;
	gap: 8px;
	justify-content: flex-start;
	margin: 0 0 13px;
}

body.gulfhowto-hello-child .ghx-side-card h2 .ghx-icon {
	color: var(--ghx-v3-green);
	font-size: 18px;
}

body.gulfhowto-hello-child .ghx-side-card h2::after,
body.gulfhowto-hello-child .ghx-side-cta h2::after {
	display: none;
}

body.gulfhowto-hello-child .ghx-side-post {
	border-bottom: 1px solid var(--ghx-v3-line);
	gap: 12px;
	grid-template-columns: 82px minmax(0, 1fr);
	padding: 12px 0;
}

body.gulfhowto-hello-child .ghx-side-post > span {
	grid-column: 2;
	grid-row: 1;
}

body.gulfhowto-hello-child .ghx-side-post img {
	border-radius: 5px;
	grid-column: 1;
	grid-row: 1;
	height: 68px;
	width: 82px;
}

body.gulfhowto-hello-child .ghx-side-post strong {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

body.gulfhowto-hello-child .ghx-side-post small {
	font-size: 11px;
	margin-top: 5px;
}

body.gulfhowto-hello-child .ghx-news-card {
	background: #f8fbfa;
}

body.gulfhowto-hello-child .ghx-news-card input,
body.gulfhowto-hello-child .ghx-news-card button,
body.gulfhowto-hello-child .ghx-side-cta a {
	border-radius: 5px;
}

body.gulfhowto-hello-child .ghx-news-card button,
body.gulfhowto-hello-child .ghx-side-cta a {
	background: var(--ghx-v3-green);
	box-shadow: none;
}

body.gulfhowto-hello-child .ghx-side-list a {
	font-size: 13px;
	padding: 9px 0;
}

body.gulfhowto-hello-child .ghx-side-cta {
	overflow: hidden;
	padding: 0;
}

body.gulfhowto-hello-child .ghx-side-cta img {
	aspect-ratio: 16 / 8;
}

body.gulfhowto-hello-child .ghx-related--single,
body.gulfhowto-hello-child #comments,
body.gulfhowto-hello-child .comments-area {
	width: var(--ghx-v3-container);
}

body.gulfhowto-hello-child .ghx-footer,
body.gulfhowto-hello-child .ghx-footer *,
body.gulfhowto-hello-child #comments,
body.gulfhowto-hello-child #comments * {
	font-family: var(--ghx-font-ui, "Nunito Sans", "Segoe UI", Arial, sans-serif);
	letter-spacing: 0;
}

@media (max-width: 1120px) {
	body.gulfhowto-hello-child .ghx-single-grid {
		grid-template-columns: minmax(0, 820px) minmax(270px, 310px);
		gap: 28px;
	}
}

@media (max-width: 960px) {
	body.gulfhowto-hello-child .ghx-single-grid {
		grid-template-columns: minmax(0, 820px);
	}

	body.gulfhowto-hello-child .ghx-rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		position: static;
	}
}

@media (max-width: 680px) {
	body.gulfhowto-hello-child {
		--ghx-v3-container: min(calc(100% - 28px), 560px);
	}

	body.gulfhowto-hello-child .ghx-header__inner {
		align-items: stretch;
		display: grid !important;
		gap: 12px;
		grid-template-columns: 1fr;
		padding: 12px 0 14px;
	}

	body.gulfhowto-hello-child .ghx-header__brand {
		justify-self: start;
	}

	body.gulfhowto-hello-child .ghx-header__logo,
	body.gulfhowto-hello-child .ghx-header__brand > img {
		height: 48px;
		max-width: 225px;
	}

	body.gulfhowto-hello-child .ghx-header__search {
		height: 44px;
		max-width: none;
		min-width: 0;
		width: 100%;
	}

	body.gulfhowto-hello-child .ghx-post-hero,
	body.gulfhowto-hello-child .ghx-post-hero__inner {
		min-height: 440px;
	}

	body.gulfhowto-hello-child .ghx-post-hero {
		background-image: linear-gradient(180deg, rgba(7, 49, 40, .68), rgba(7, 49, 40, .9)), var(--ghx-post-image);
	}

	body.gulfhowto-hello-child .ghx-post-hero__inner {
		justify-content: flex-end;
		padding: 28px 0 34px;
	}

	body.gulfhowto-hello-child .ghx-breadcrumbs {
		margin-bottom: 20px;
		overflow: hidden;
		white-space: nowrap;
	}

	body.gulfhowto-hello-child .ghx-post-hero h1 {
		font-size: 36px;
		line-height: 1.08;
	}

	body.gulfhowto-hello-child .ghx-post-hero__copy > p {
		font-size: 15px;
		line-height: 1.55;
	}

	body.gulfhowto-hello-child .ghx-post-hero__meta {
		align-items: flex-start;
		display: grid;
		gap: 8px;
	}

	body.gulfhowto-hello-child .ghx-single-grid {
		gap: 28px;
		padding: 28px 0 42px;
	}

	body.gulfhowto-hello-child .ghx-share-row {
		flex-wrap: wrap;
		margin-bottom: 22px;
	}

	body.gulfhowto-hello-child .ghx-share-row a,
	body.gulfhowto-hello-child .ghx-share-row a:first-of-type {
		height: 34px;
		width: 34px;
	}

	body.gulfhowto-hello-child .ghx-article__content,
	body.gulfhowto-hello-child .ghx-article__content > p,
	body.gulfhowto-hello-child .ghx-article__content > p:first-child {
		font-size: 16px;
		line-height: 1.75;
	}

	body.gulfhowto-hello-child .ghx-article__content h2 {
		font-size: 23px;
	}

	body.gulfhowto-hello-child .ghx-quote {
		font-size: 17px;
		padding: 20px;
	}

	body.gulfhowto-hello-child .ghx-quote::after {
		display: none;
	}

	body.gulfhowto-hello-child .ghx-note-box {
		grid-template-columns: 40px minmax(0, 1fr);
		padding: 16px;
	}

	body.gulfhowto-hello-child .ghx-note-box > span {
		height: 40px;
		width: 40px;
	}

	body.gulfhowto-hello-child .ghx-rail {
		grid-template-columns: 1fr;
	}
}

/* Header navigation, search polish, and dynamic article introduction. */
body.gulfhowto-hello-child .ghx-header__topbar,
body.gulfhowto-hello-child .ghx-header__consult {
	display: none !important;
}

body.gulfhowto-hello-child .ghx-header__nav {
	background: #fff;
	border-top: 1px solid #edf2f0;
	display: block !important;
	margin: 0;
	order: initial;
	padding: 0;
	width: 100%;
}

body.gulfhowto-hello-child .ghx-header__nav-inner {
	align-items: center;
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-inline: auto;
	min-height: 48px;
	width: var(--ghx-v3-container);
}

body.gulfhowto-hello-child .ghx-header__nav a {
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	color: #334744;
	font-size: 13px;
	font-weight: 800;
	line-height: 46px;
	padding: 0 15px;
	text-decoration: none;
	white-space: nowrap;
}

body.gulfhowto-hello-child .ghx-header__nav a:hover,
body.gulfhowto-hello-child .ghx-header__nav a:focus-visible {
	background: #f5faf8;
	border-bottom-color: var(--ghx-v3-green);
	color: var(--ghx-v3-green-dark);
	outline: 0;
}

body.gulfhowto-hello-child .ghx-header__search {
	background: #f7faf9;
	border: 1px solid #d9e5e1;
	border-radius: 999px;
	box-shadow: inset 0 1px 2px rgba(16, 58, 48, .025), 0 8px 22px rgba(16, 58, 48, .06);
	grid-template-columns: minmax(0, 1fr) 44px;
	height: 48px;
	padding: 3px;
	transition: border-color .18s ease, box-shadow .18s ease;
}

body.gulfhowto-hello-child .ghx-header__search:focus-within {
	border-color: #8bc5b3;
	box-shadow: 0 0 0 4px rgba(8, 122, 89, .1), 0 10px 26px rgba(16, 58, 48, .08);
}

body.gulfhowto-hello-child .ghx-header__search input {
	font-size: 14px;
	font-weight: 600;
	padding: 0 17px;
}

body.gulfhowto-hello-child .ghx-header__search button {
	align-self: center;
	background: var(--ghx-v3-green);
	border-radius: 50%;
	height: 38px;
	width: 38px;
}

body.gulfhowto-hello-child .ghx-header__search button .ghx-icon {
	color: #fff !important;
	font-size: 18px;
	stroke: #fff;
}

body.gulfhowto-hello-child .ghx-article-intro {
	align-items: center;
	background: #fff;
	border-bottom: 1px solid var(--ghx-v3-line);
	display: grid;
	gap: 14px;
	grid-template-columns: 64px 170px minmax(0, 1fr);
	margin-bottom: 18px;
	padding: 0 0 22px;
}

body.gulfhowto-hello-child .ghx-author-card__avatar {
	border-radius: 50%;
	display: block;
	height: 64px;
	overflow: hidden;
	width: 64px;
}

body.gulfhowto-hello-child .ghx-author-card__image {
	border: 2px solid #dce9e5;
	border-radius: 50%;
	display: block;
	height: 64px;
	object-fit: cover;
	width: 64px;
}

body.gulfhowto-hello-child .ghx-author-card__copy {
	display: grid;
	gap: 2px;
}

body.gulfhowto-hello-child .ghx-author-card__copy > span,
body.gulfhowto-hello-child .ghx-author-card__copy small {
	color: var(--ghx-v3-muted);
	font-size: 11px;
	font-weight: 700;
}

body.gulfhowto-hello-child .ghx-author-card__copy > a {
	color: var(--ghx-v3-ink);
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
}

body.gulfhowto-hello-child .ghx-author-card__copy > a:hover {
	color: var(--ghx-v3-green);
}

body.gulfhowto-hello-child .ghx-article-summary {
	background: #f4faf7;
	border-left: 3px solid var(--ghx-v3-green);
	border-radius: 0 6px 6px 0;
	min-width: 0;
	padding: 13px 16px;
}

body.gulfhowto-hello-child .ghx-article-summary strong {
	color: var(--ghx-v3-green-dark);
	display: block;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 3px;
	text-transform: uppercase;
}

body.gulfhowto-hello-child .ghx-article-summary p {
	color: #536663;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
	margin: 0;
}

@media (max-width: 820px) {
	body.gulfhowto-hello-child .ghx-header__nav-inner {
		justify-content: flex-start;
		overflow-x: auto;
		scrollbar-width: none;
	}

	body.gulfhowto-hello-child .ghx-header__nav-inner::-webkit-scrollbar {
		display: none;
	}

	body.gulfhowto-hello-child .ghx-header__nav a {
		font-size: 12px;
		padding-inline: 13px;
	}

	body.gulfhowto-hello-child .ghx-article-intro {
		grid-template-columns: 56px minmax(0, 1fr);
	}

	body.gulfhowto-hello-child .ghx-author-card__avatar,
	body.gulfhowto-hello-child .ghx-author-card__image {
		height: 56px;
		width: 56px;
	}

	body.gulfhowto-hello-child .ghx-article-summary {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	body.gulfhowto-hello-child .ghx-header__nav-inner {
		width: 100%;
	}

	body.gulfhowto-hello-child .ghx-header__nav a:first-child {
		margin-left: 7px;
	}

	body.gulfhowto-hello-child .ghx-header__search {
		height: 46px;
	}
}

/* Floating luxury header and a more immersive article hero. */
body.gulfhowto-hello-child .ghx-header {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	background: transparent;
	border: 0;
	box-shadow: none;
	filter: none;
	padding-top: 10px;
	position: sticky;
	top: 0;
	z-index: 1000;
}

body.admin-bar.gulfhowto-hello-child .ghx-header {
	top: 32px;
}

body.gulfhowto-hello-child .ghx-header__inner {
	background: rgba(255, 255, 255, .94);
	border: 1px solid rgba(203, 221, 215, .9);
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
	min-height: 84px;
	padding: 13px 18px;
}

body.gulfhowto-hello-child .ghx-header__nav {
	background: rgba(255, 255, 255, .94);
	border: 1px solid rgba(203, 221, 215, .9);
	border-radius: 0 0 14px 14px;
	margin: 0 auto 10px;
	overflow: hidden;
	width: var(--ghx-v3-container);
}

body.gulfhowto-hello-child .ghx-header__nav-inner {
	width: 100%;
}

body.gulfhowto-hello-child .ghx-header__brand {
	transition: opacity .2s ease, transform .2s ease;
}

body.gulfhowto-hello-child .ghx-header__brand:hover {
	opacity: .88;
	transform: translateY(-1px);
}

body.gulfhowto-hello-child .ghx-header__search {
	background: rgba(247, 250, 249, .94);
	border-color: #d5e4df;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, .9), 0 10px 25px rgba(17, 67, 55, .07);
}

body.gulfhowto-hello-child .ghx-header__search button {
	box-shadow: 0 7px 16px rgba(8, 122, 89, .24);
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

body.gulfhowto-hello-child .ghx-header__search button:hover {
	background: #096c51;
	box-shadow: 0 9px 20px rgba(8, 122, 89, .3);
	transform: scale(1.04);
}

body.gulfhowto-hello-child .ghx-post-hero,
body.gulfhowto-hello-child .ghx-post-hero__inner {
	min-height: 510px;
}

body.gulfhowto-hello-child .ghx-post-hero {
	background-image: linear-gradient(90deg, rgba(5, 43, 34, .92) 0%, rgba(7, 64, 49, .72) 47%, rgba(7, 62, 48, .08) 100%), var(--ghx-post-image);
}

body.gulfhowto-hello-child .ghx-post-hero__inner {
	padding-bottom: 52px;
	padding-top: 48px;
}

body.gulfhowto-hello-child .ghx-post-hero__layout,
body.gulfhowto-hello-child .ghx-post-hero__copy,
body.gulfhowto-hello-child .ghx-post-hero h1 {
	max-width: 850px;
}

body.gulfhowto-hello-child .ghx-post-hero h1 {
	font-size: clamp(44px, 4.35vw, 64px);
	line-height: 1.04;
	margin-bottom: 18px;
}

body.gulfhowto-hello-child .ghx-post-hero__copy > p {
	font-size: 18px;
	line-height: 1.72;
	max-width: 760px;
}

@media (max-width: 782px) {
	body.admin-bar.gulfhowto-hello-child .ghx-header {
		top: 46px;
	}
}

@media (max-width: 680px) {
	body.gulfhowto-hello-child .ghx-header {
		padding-top: 7px;
	}

	body.gulfhowto-hello-child .ghx-header__inner {
		border-radius: 11px 11px 0 0;
		gap: 7px;
		min-height: 0;
		padding: 8px 12px;
		width: var(--ghx-v3-container);
	}

	body.gulfhowto-hello-child .ghx-header__logo,
	body.gulfhowto-hello-child .ghx-header__brand > img {
		height: 40px;
		max-width: 205px;
	}

	body.gulfhowto-hello-child .ghx-header__search {
		height: 40px;
	}

	body.gulfhowto-hello-child .ghx-header__search button {
		height: 34px;
		width: 34px;
	}

	body.gulfhowto-hello-child .ghx-header__nav {
		border-radius: 0 0 11px 11px;
		margin-bottom: 7px;
		width: var(--ghx-v3-container);
	}

	body.gulfhowto-hello-child .ghx-header__nav-inner {
		min-height: 42px;
		width: 100%;
	}

	body.gulfhowto-hello-child .ghx-header__nav a {
		line-height: 40px;
	}

	body.gulfhowto-hello-child .ghx-post-hero,
	body.gulfhowto-hello-child .ghx-post-hero__inner {
		min-height: 520px;
	}

	body.gulfhowto-hello-child .ghx-post-hero__inner {
		padding-bottom: 38px;
		padding-top: 34px;
	}

	body.gulfhowto-hello-child .ghx-post-hero h1 {
		font-size: 38px;
	}

	body.gulfhowto-hello-child .ghx-post-hero__copy > p {
		font-size: 16px;
		line-height: 1.65;
	}
}

/* Footer follows the floating header language while retaining its green background. */
body.gulfhowto-hello-child .ghx-footer {
	background: #f4f9f7;
	border: 0;
	color: rgba(255, 255, 255, .82);
	padding: 24px;
}

body.gulfhowto-hello-child .ghx-footer__inner {
	background: linear-gradient(135deg, #075f49 0%, #064536 100%);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 14px;
	box-shadow: 0 20px 45px rgba(9, 65, 51, .18);
	display: grid;
	gap: 34px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-inline: auto;
	max-width: none;
	overflow: hidden;
	padding: 46px 48px;
	position: relative;
	width: min(100%, 1560px);
}

body.gulfhowto-hello-child .ghx-footer__inner::before {
	background: linear-gradient(90deg, #55c6a2, rgba(255, 255, 255, .18), transparent);
	content: "";
	height: 2px;
	left: 48px;
	position: absolute;
	top: 0;
	width: 180px;
}

body.gulfhowto-hello-child .ghx-footer__about {
	grid-column: span 2;
}

body.gulfhowto-hello-child .ghx-footer h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
	margin: 0 0 13px;
}

body.gulfhowto-hello-child .ghx-footer__about h2 {
	font-size: 26px;
}

body.gulfhowto-hello-child .ghx-footer p {
	color: rgba(255, 255, 255, .73);
	font-size: 15px;
	line-height: 1.75;
	margin: 0;
	max-width: 560px;
}

body.gulfhowto-hello-child .ghx-footer__links {
	align-content: start;
	display: grid;
	gap: 3px;
}

body.gulfhowto-hello-child .ghx-footer__links a {
	align-items: center;
	border-radius: 6px;
	color: rgba(255, 255, 255, .8);
	display: inline-flex;
	font-size: 14px;
	font-weight: 650;
	min-height: 32px;
	padding: 5px 8px;
	text-decoration: none;
	transition: background .18s ease, color .18s ease, transform .18s ease;
	width: fit-content;
}

body.gulfhowto-hello-child .ghx-footer__links a:hover {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	transform: translateX(3px);
}

body.gulfhowto-hello-child .ghx-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

body.gulfhowto-hello-child .ghx-footer__socials a {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 8px 13px;
	text-decoration: none;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

body.gulfhowto-hello-child .ghx-footer__socials a:hover {
	background: rgba(255, 255, 255, .16);
	border-color: rgba(255, 255, 255, .3);
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	body.gulfhowto-hello-child .ghx-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 38px;
	}
}

@media (max-width: 560px) {
	body.gulfhowto-hello-child .ghx-footer {
		padding: 14px;
	}

	body.gulfhowto-hello-child .ghx-footer__inner {
		border-radius: 11px;
		gap: 28px;
		grid-template-columns: 1fr;
		padding: 34px 24px;
		width: 100%;
	}

	body.gulfhowto-hello-child .ghx-footer__inner::before {
		left: 24px;
		width: 120px;
	}

	body.gulfhowto-hello-child .ghx-footer__about {
		grid-column: auto;
	}
}

/* Configurable 400 x 400 sidebar advertising slot. */
body.gulfhowto-hello-child .ghx-side-ad {
	aspect-ratio: 1 / 1;
	background-image: linear-gradient(180deg, rgba(4, 40, 31, .08) 16%, rgba(4, 40, 31, .92) 100%), var(--ghx-ad-image);
	background-position: center;
	background-size: cover;
	border: 1px solid rgba(8, 122, 89, .18);
	border-radius: 8px;
	box-shadow: 0 14px 30px rgba(18, 65, 54, .12);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 400px;
	overflow: hidden;
	padding: 17px;
	position: relative;
	text-decoration: none;
	transition: box-shadow .22s ease, transform .22s ease;
	width: 100%;
}

body.gulfhowto-hello-child .ghx-side-ad:hover {
	box-shadow: 0 18px 38px rgba(18, 65, 54, .2);
	color: #fff;
	transform: translateY(-2px);
}

body.gulfhowto-hello-child .ghx-side-ad__label {
	align-self: flex-start;
	background: rgba(255, 255, 255, .9);
	border-radius: 999px;
	color: #52635f;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
	padding: 6px 10px;
	text-transform: uppercase;
}

body.gulfhowto-hello-child .ghx-side-ad__content {
	display: grid;
	gap: 8px;
}

body.gulfhowto-hello-child .ghx-side-ad__content strong {
	color: #fff;
	font-size: 25px;
	font-weight: 900;
	line-height: 1.12;
}

body.gulfhowto-hello-child .ghx-side-ad__content small {
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

body.gulfhowto-hello-child .ghx-side-ad__content b {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	gap: 5px;
	margin-top: 5px;
}

body.gulfhowto-hello-child .ghx-side-ad__content b .ghx-icon {
	font-size: 15px;
}

/* Homepage and 404 presentation layer. Rendering and content remain in Core. */
body.gulfhowto-hello-child .ghx-home-hero {
	background: linear-gradient(90deg, rgba(5, 38, 31, .98) 0%, rgba(5, 38, 31, .88) 37%, rgba(5, 38, 31, .28) 100%), var(--ghx-home-image), #063d31;
	background-position: center;
	background-size: cover;
	min-height: 570px;
	padding-block: clamp(74px, 9vw, 128px);
	position: relative;
}

body.gulfhowto-hello-child .ghx-home-hero::before {
	border: 1px solid rgba(242, 217, 137, .2);
	content: "";
	inset: 22px;
	pointer-events: none;
	position: absolute;
}

body.gulfhowto-hello-child .ghx-home-hero__inner {
	position: relative;
	z-index: 1;
}

body.gulfhowto-hello-child .ghx-home-hero__copy {
	max-width: 720px;
}

body.gulfhowto-hello-child .ghx-home-hero__copy > p:not(.ghx-kicker) {
	max-width: 590px;
}

body.gulfhowto-hello-child .ghx-home-hero__actions,
body.gulfhowto-hello-child .ghx-404__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}

body.gulfhowto-hello-child .ghx-button {
	align-items: center;
	display: inline-flex;
	font-size: 13px;
	font-weight: 850;
	gap: 12px;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

body.gulfhowto-hello-child .ghx-button:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
	transform: translateY(-2px);
}

body.gulfhowto-hello-child .ghx-button--gold {
	background: var(--ghx-gold-soft);
	border: 1px solid var(--ghx-gold-soft);
	border-radius: 999px;
	color: #18352c;
}

body.gulfhowto-hello-child .ghx-button--dark {
	background: #075f49;
	border: 1px solid #075f49;
	border-radius: 999px;
	color: #fff;
}

body.gulfhowto-hello-child .ghx-text-link {
	color: #fff;
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

body.gulfhowto-hello-child .ghx-text-link:hover {
	color: var(--ghx-gold-soft);
}

body.gulfhowto-hello-child .ghx-text-link--dark {
	color: #075f49;
}

body.gulfhowto-hello-child .ghx-topic-strip {
	background: #fff;
	border-bottom: 1px solid rgba(7, 95, 73, .1);
	border-top: 1px solid rgba(7, 95, 73, .1);
}

body.gulfhowto-hello-child .ghx-topic-strip__inner {
	align-items: center;
	display: flex;
	gap: 12px 28px;
	margin-inline: auto;
	max-width: var(--ghx-v3-container, 1392px);
	min-height: 72px;
	overflow-x: auto;
	padding-block: 12px;
	width: calc(100% - 40px);
}

body.gulfhowto-hello-child .ghx-topic-strip__label {
	color: #0b5f4b;
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

body.gulfhowto-hello-child .ghx-topic-strip a {
	align-items: center;
	border-left: 1px solid rgba(7, 95, 73, .13);
	color: #28433b;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 750;
	gap: 11px;
	padding-left: 28px;
	text-decoration: none;
}

body.gulfhowto-hello-child .ghx-topic-strip a span {
	color: #0b8b68;
	font-size: 18px;
}

body.gulfhowto-hello-child .ghx-topic-strip a:hover {
	color: #0b8b68;
}

body.gulfhowto-hello-child .ghx-section__intro {
	color: #64736e;
	font-size: 16px;
	line-height: 1.7;
	margin: 12px 0 0;
	max-width: 600px;
}

body.gulfhowto-hello-child .ghx-home-latest {
	background: #f6faf8;
}

body.gulfhowto-hello-child .ghx-404 {
	background: #f6faf8;
	border-bottom: 1px solid rgba(7, 95, 73, .12);
	padding: clamp(76px, 10vw, 140px) 20px;
	text-align: center;
}

body.gulfhowto-hello-child .ghx-404__inner {
	margin-inline: auto;
	max-width: 760px;
}

body.gulfhowto-hello-child .ghx-404 .ghx-kicker {
	justify-content: center;
}

body.gulfhowto-hello-child .ghx-404__mark {
	align-items: center;
	background: #e2f2ec;
	border: 1px solid rgba(7, 95, 73, .13);
	border-radius: 50%;
	color: #0b8b68;
	display: flex;
	height: 76px;
	justify-content: center;
	margin: 0 auto 26px;
	width: 76px;
}

body.gulfhowto-hello-child .ghx-404__mark .ghx-icon {
	height: 36px;
	width: 36px;
}

body.gulfhowto-hello-child .ghx-404 h1 {
	color: #12352d;
	font-family: var(--ghx-serif);
	font-size: clamp(2.8rem, 6vw, 5.7rem);
	line-height: 1;
	margin: 0;
	text-wrap: balance;
}

body.gulfhowto-hello-child .ghx-404__lead {
	color: #64736e;
	font-size: 17px;
	line-height: 1.8;
	margin: 22px auto 0;
	max-width: 600px;
}

body.gulfhowto-hello-child .ghx-404__search {
	background: #fff;
	border: 1px solid rgba(7, 95, 73, .14);
	border-radius: 999px;
	box-shadow: 0 18px 48px rgba(20, 64, 52, .1);
	display: flex;
	gap: 8px;
	margin: 34px auto 0;
	max-width: 650px;
	padding: 7px;
}

body.gulfhowto-hello-child .ghx-404__search input {
	background: transparent;
	border: 0;
	color: #173d33;
	font: inherit;
	min-width: 0;
	padding: 12px 16px;
	width: 100%;
}

body.gulfhowto-hello-child .ghx-404__search input:focus {
	outline: 0;
}

body.gulfhowto-hello-child .ghx-404__search button {
	background: #075f49;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 850;
	padding: 0 22px;
	white-space: nowrap;
}

body.gulfhowto-hello-child .ghx-404__actions {
	justify-content: center;
}

body.gulfhowto-hello-child .ghx-404-latest {
	background: #fff;
}

@media (max-width: 900px) {
	body.gulfhowto-hello-child .ghx-home-hero {
	min-height: 540px;
	}

	body.gulfhowto-hello-child .ghx-home-hero__inner {
	grid-template-columns: 1fr;
	}

	body.gulfhowto-hello-child .ghx-home-hero__story {
	margin-left: auto;
	max-width: 620px;
	width: 100%;
	}
}

@media (max-width: 560px) {
	body.gulfhowto-hello-child .ghx-home-hero {
	background: linear-gradient(180deg, rgba(5, 38, 31, .72), rgba(5, 38, 31, .98)), var(--ghx-home-image), #063d31;
	min-height: auto;
	padding-block: 58px 42px;
	}

	body.gulfhowto-hello-child .ghx-home-hero::before {
	 inset: 12px;
	}

	body.gulfhowto-hello-child .ghx-home-hero h1 {
	font-size: clamp(2.7rem, 13vw, 4.4rem);
	}

	body.gulfhowto-hello-child .ghx-home-hero__story {
	margin-top: 8px;
	}

	body.gulfhowto-hello-child .ghx-topic-strip__inner {
	width: calc(100% - 28px);
	}

	body.gulfhowto-hello-child .ghx-404 {
	padding-inline: 14px;
	}

	body.gulfhowto-hello-child .ghx-404 h1 {
	font-size: clamp(2.6rem, 14vw, 4rem);
	}

	body.gulfhowto-hello-child .ghx-404__search {
	border-radius: 16px;
	flex-direction: column;
	padding: 8px;
	}

	body.gulfhowto-hello-child .ghx-404__search button {
	min-height: 46px;
	}
}
