:root {
	--navy-950: #041b31;
	--navy-900: #082a4c;
	--navy-800: #0a3b67;
	--blue-700: #0a63ad;
	--blue-600: #0876cf;
	--blue-500: #1593e8;
	--blue-100: #dff1fd;
	--blue-50: #f0f8fd;
	--gold-600: #d69d24;
	--gold-500: #f2b84b;
	--gold-400: #ffc965;
	--green-700: #087a54;
	--green-600: #0c9d68;
	--green-100: #dff8ed;
	--red-600: #d64343;
	--red-100: #ffebeb;
	--ink: #183149;
	--muted: #64788b;
	--border: #dce6ee;
	--surface: #ffffff;
	--surface-soft: #f4f8fb;
	--shadow-sm: 0 8px 24px rgba(6, 42, 76, 0.07);
	--shadow-md: 0 18px 50px rgba(6, 42, 76, 0.12);
	--shadow-lg: 0 30px 80px rgba(3, 27, 50, 0.22);
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--container: 1240px;
}

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

html {
	overflow-x: clip;
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	background: var(--surface);
	color: var(--ink);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	overflow-x: hidden;
	overflow-x: clip;
	text-rendering: optimizeLegibility;
}

body.drawer-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

a {
	color: var(--blue-700);
	text-decoration: none;
	transition: color 180ms ease, opacity 180ms ease;
}

a:hover {
	color: var(--blue-500);
}

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	color: var(--navy-900);
	font-weight: 750;
	letter-spacing: -0.035em;
	line-height: 1.15;
	margin: 0 0 0.65em;
}

h1 {
	font-size: clamp(2.4rem, 5vw, 4.7rem);
}

h2 {
	font-size: clamp(2rem, 3.5vw, 3.05rem);
}

h3 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1rem;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

.container {
	margin-inline: auto;
	max-width: var(--container);
	padding-inline: 24px;
	width: 100%;
}

.narrow-content {
	max-width: 840px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.skip-link:focus {
	background: #fff;
	clip: auto !important;
	clip-path: none;
	color: var(--navy-900);
	display: block;
	font-weight: 700;
	height: auto;
	left: 12px;
	padding: 12px 18px;
	top: 12px;
	width: auto;
	z-index: 100000;
}

:focus-visible {
	border-radius: 4px;
	outline: 3px solid var(--gold-400);
	outline-offset: 3px;
}

.ijp-icon {
	flex: 0 0 auto;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-weight: 750;
	gap: 9px;
	justify-content: center;
	line-height: 1;
	min-height: 50px;
	padding: 0 24px;
	position: relative;
	text-align: center;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--blue-700);
	box-shadow: 0 8px 18px rgba(10, 99, 173, 0.2);
	color: #fff;
}

.button--primary:hover {
	background: var(--navy-800);
	color: #fff;
}

.button--gold {
	background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
	box-shadow: 0 10px 24px rgba(242, 184, 75, 0.28);
	color: var(--navy-950);
}

.button--gold:hover {
	background: linear-gradient(135deg, #ffd585, var(--gold-400));
	color: var(--navy-950);
}

.button--secondary {
	background: #fff;
	border-color: #b9ccda;
	color: var(--navy-900);
}

.button--secondary:hover {
	border-color: var(--blue-600);
	box-shadow: var(--shadow-sm);
	color: var(--blue-700);
}

.button--ghost {
	background: transparent;
	border-color: var(--border);
	color: var(--ink);
}

.button--glass {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px);
	color: #fff;
}

.button--glass:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.button--whatsapp {
	background: #0b9f63;
	color: #fff;
}

.button--whatsapp:hover {
	background: #087d4e;
	color: #fff;
}

.button--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.button--small {
	font-size: 0.88rem;
	min-height: 42px;
	padding-inline: 19px;
}

.button--large {
	min-height: 58px;
	padding-inline: 30px;
}

.button--block {
	width: 100%;
}

.button-link {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--blue-700);
	display: inline-flex;
	font-weight: 750;
	gap: 7px;
	padding: 0;
}

.button-link:hover {
	color: var(--blue-500);
}

.button-link--light {
	color: #fff;
}

.button-link--arrow:hover .ijp-icon {
	transform: translateX(4px);
}

.button-link .ijp-icon {
	transition: transform 180ms ease;
}

.eyebrow {
	align-items: center;
	color: var(--blue-700);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin-bottom: 13px;
	text-transform: uppercase;
}

.eyebrow--light {
	color: var(--gold-400);
}

.section {
	padding-block: 96px;
}

.section--soft {
	background: var(--surface-soft);
}

.section--navy {
	background: var(--navy-950);
	color: #dce9f4;
}

.section-heading {
	align-items: end;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: 42px;
}

.section-heading > div:first-child {
	max-width: 720px;
}

.section-heading h2 {
	margin-bottom: 12px;
}

.section-heading p {
	color: var(--muted);
	font-size: 1.05rem;
	margin: 0;
}

.section-heading--center {
	justify-content: center;
	text-align: center;
}

.section-heading--center > div {
	max-width: 760px;
}

/* Header */
.site-topbar {
	background: var(--navy-950);
	color: #c9d9e7;
	font-size: 0.78rem;
}

.site-topbar__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 36px;
}

.site-topbar__contacts,
.site-topbar__extras {
	align-items: center;
	display: flex;
	gap: 21px;
}

.site-topbar a,
.site-topbar__contacts > span {
	align-items: center;
	color: inherit;
	display: inline-flex;
	gap: 7px;
}

.site-topbar a:hover {
	color: #fff;
}

.language-select {
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 0.78rem;
	padding: 3px;
}

.language-select option {
	color: var(--ink);
}

.site-header {
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(220, 230, 238, 0.7);
	height: 78px;
	position: sticky;
	top: 0;
	transition: box-shadow 180ms ease, height 180ms ease;
	z-index: 1000;
}

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

.site-header.is-scrolled {
	box-shadow: 0 10px 36px rgba(4, 27, 49, 0.1);
	height: 70px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 18px;
	height: 100%;
	justify-content: space-between;
	max-width: 1540px;
}

.site-brand,
.custom-logo-link {
	align-items: center;
	color: var(--navy-900);
	display: inline-flex;
	flex: 0 0 auto;
	gap: 11px;
}

.custom-logo {
	max-height: 52px;
	width: auto;
}

.site-brand:hover {
	color: var(--navy-900);
}

.site-brand__mark {
	align-items: center;
	background: linear-gradient(145deg, var(--blue-700), var(--navy-900));
	border-radius: 13px;
	box-shadow: 0 7px 16px rgba(10, 99, 173, 0.22);
	color: var(--gold-400);
	display: inline-flex;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.site-brand__text {
	display: inline-block;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: 0.015em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.desktop-nav {
	align-items: center;
	display: flex;
	height: 100%;
	margin-left: auto;
	margin-right: 10px;
	min-width: 0;
}

.primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 2px;
	list-style: none;
	white-space: nowrap;
}

.primary-menu li {
	flex: 0 0 auto;
	position: relative;
}

.primary-menu > li > a {
	color: var(--ink);
	display: block;
	font-size: 0.86rem;
	font-weight: 650;
	padding: 12px 11px;
}

.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a {
	color: var(--blue-700);
}

.primary-menu .sub-menu {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	left: 0;
	list-style: none;
	min-width: 220px;
	opacity: 0;
	padding: 9px;
	pointer-events: none;
	position: absolute;
	top: 100%;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	border-radius: 7px;
	color: var(--ink);
	display: block;
	font-size: 0.85rem;
	padding: 9px 11px;
}

.primary-menu .sub-menu a:hover {
	background: var(--blue-50);
	color: var(--blue-700);
}

.country-mega {
	align-items: center;
	display: flex;
	height: 100%;
	position: relative;
}

.country-mega__toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ink);
	display: flex;
	font-size: 0.86rem;
	font-weight: 650;
	gap: 5px;
	padding: 12px 10px;
	white-space: nowrap;
}

.country-mega__panel {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	padding: 24px;
	pointer-events: none;
	position: absolute;
	right: -160px;
	top: calc(100% - 4px);
	transform: translateY(10px);
	transition: opacity 180ms ease, transform 180ms ease;
	width: min(720px, 86vw);
}

.country-mega:hover .country-mega__panel,
.country-mega:focus-within .country-mega__panel,
.country-mega.is-open .country-mega__panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.country-mega__heading {
	align-items: center;
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-bottom: 17px;
	padding-bottom: 16px;
}

.country-mega__heading .eyebrow {
	margin: 0 0 5px;
}

.country-mega__heading strong {
	display: block;
	font-size: 1.18rem;
}

.country-mega__heading > a {
	font-size: 0.83rem;
	font-weight: 750;
}

.country-mega__grid {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, 1fr);
}

.country-mega__grid > a {
	align-items: center;
	border-radius: 10px;
	color: var(--ink);
	display: flex;
	gap: 10px;
	padding: 9px;
}

.country-mega__grid > a:hover {
	background: var(--blue-50);
}

.country-mega__grid img {
	border-radius: 4px;
	height: 24px;
	object-fit: cover;
	width: 36px;
}

.country-mega__grid span {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.country-mega__grid strong {
	font-size: 0.85rem;
}

.country-mega__grid small {
	color: var(--muted);
	font-size: 0.7rem;
}

.site-header__actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
}

@media (min-width: 1181px) and (max-width: 1420px) {
	.site-header__inner {
		gap: 10px;
	}

	.site-brand__text {
		display: inline-block;
		font-size: 0.86rem;
	}

	.desktop-nav {
		margin-right: 4px;
	}

	.primary-menu {
		gap: 0;
	}

	.primary-menu > li > a,
	.country-mega__toggle {
		font-size: 0.8rem;
		padding-inline: 7px;
	}

	.site-header__actions {
		gap: 8px;
	}

	.site-header__actions .button {
		padding-inline: 15px;
	}
}

.header-login {
	align-items: center;
	color: var(--ink);
	display: inline-flex;
	font-size: 0.84rem;
	font-weight: 700;
	gap: 6px;
	white-space: nowrap;
}

.mobile-menu-toggle {
	align-items: center;
	background: var(--blue-50);
	border: 0;
	border-radius: 9px;
	color: var(--navy-900);
	display: none;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.mobile-drawer,
.mobile-drawer-backdrop {
	display: none;
}

/* Hero */
.hero {
	background:
		radial-gradient(circle at 76% 28%, rgba(21, 147, 232, 0.22), transparent 28%),
		linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 54%, #064b7b 100%);
	color: #fff;
	min-height: 690px;
	overflow: visible;
	position: relative;
}

.hero__pattern,
.career-cta__pattern {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 54px 54px;
	inset: 0;
	mask-image: linear-gradient(to right, #000, transparent);
	position: absolute;
}

.hero__inner {
	align-items: center;
	display: grid;
	gap: 60px;
	grid-template-columns: 1.03fr 0.97fr;
	min-height: 600px;
	padding-bottom: 80px;
	padding-top: 64px;
	position: relative;
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero__eyebrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	color: #d9eafa;
	display: inline-flex;
	font-size: 0.77rem;
	font-weight: 750;
	gap: 8px;
	letter-spacing: 0.08em;
	margin-bottom: 21px;
	padding: 7px 13px;
	text-transform: uppercase;
}

.hero__eyebrow span {
	color: var(--gold-400);
}

.hero h1 {
	color: #fff;
	font-size: clamp(3.25rem, 5.5vw, 5.2rem);
	letter-spacing: -0.055em;
	max-width: 760px;
}

.hero__content > p {
	color: #c9dced;
	font-size: clamp(1.08rem, 1.5vw, 1.25rem);
	max-width: 650px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 30px;
}

.hero__proof {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-top: 34px;
}

.avatar-stack {
	display: flex;
	padding-left: 8px;
}

.avatar-stack span {
	align-items: center;
	background: var(--blue-600);
	border: 2px solid var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 0.65rem;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	margin-left: -8px;
	width: 34px;
}

.avatar-stack span:nth-child(2) {
	background: var(--gold-600);
}

.avatar-stack span:nth-child(3) {
	background: var(--green-600);
}

.avatar-stack span:last-child {
	background: #fff;
	color: var(--navy-900);
}

.hero__proof > div:last-child {
	display: flex;
	flex-direction: column;
}

.hero__proof strong {
	font-size: 0.86rem;
}

.hero__proof span {
	color: #a9c2d6;
	font-size: 0.76rem;
}

.hero__visual {
	height: 480px;
	position: relative;
}

.world-globe {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 390px;
}

.world-globe svg circle {
	fill: rgba(8, 118, 207, 0.12);
	stroke: rgba(163, 215, 246, 0.4);
	stroke-width: 1.2;
}

.world-globe svg path {
	fill: rgba(44, 160, 222, 0.23);
	stroke: rgba(190, 227, 249, 0.35);
	stroke-width: 1;
}

.world-globe svg path:last-child {
	fill: none;
	opacity: 0.65;
}

.world-orbit {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.world-orbit--outer {
	height: 455px;
	width: 455px;
}

.world-orbit--inner {
	height: 335px;
	width: 335px;
}

.globe-pin {
	align-items: center;
	animation: pin-pulse 2.2s ease-in-out infinite;
	background: var(--gold-400);
	border: 4px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	color: var(--navy-900);
	display: flex;
	height: 36px;
	justify-content: center;
	position: absolute;
	width: 36px;
}

.globe-pin--one {
	left: 66%;
	top: 25%;
}

.globe-pin--two {
	animation-delay: 0.7s;
	left: 27%;
	top: 39%;
}

.globe-pin--three {
	animation-delay: 1.4s;
	left: 58%;
	top: 66%;
}

.floating-job {
	align-items: center;
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	color: var(--ink);
	display: flex;
	gap: 11px;
	padding: 13px 15px;
	position: absolute;
	z-index: 2;
}

.floating-job--one {
	animation: float-card 5s ease-in-out infinite;
	left: 0;
	top: 72px;
}

.floating-job--two {
	animation: float-card 5s ease-in-out infinite reverse;
	bottom: 55px;
	right: 0;
}

.floating-job__icon,
.floating-job__check {
	align-items: center;
	background: var(--blue-100);
	border-radius: 9px;
	color: var(--blue-700);
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.floating-job__check {
	background: var(--green-100);
	color: var(--green-700);
}

.floating-job div {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.floating-job small,
.floating-job span {
	color: var(--muted);
	font-size: 0.7rem;
}

.floating-job strong {
	font-size: 0.82rem;
}

.hero__search-wrap {
	margin-bottom: -67px;
	position: relative;
	z-index: 5;
}

.hero-search {
	align-items: end;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 18px;
	box-shadow: 0 25px 70px rgba(4, 27, 49, 0.27);
	display: grid;
	gap: 0;
	grid-template-columns: 1.25fr 0.8fr 0.8fr auto;
	padding: 12px;
}

.hero-search__field {
	border-right: 1px solid var(--border);
	padding: 7px 18px 8px 45px;
	position: relative;
}

.hero-search__field label {
	color: var(--navy-900);
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-search__field > span {
	color: var(--blue-600);
	left: 16px;
	position: absolute;
	top: 32px;
}

.hero-search input,
.hero-search select {
	background: transparent;
	border: 0;
	color: var(--ink);
	height: 34px;
	outline: 0;
	padding: 3px 0;
	width: 100%;
}

.hero-search input::placeholder {
	color: #8fa0ae;
}

.hero-search__submit {
	border-radius: 12px;
	height: 58px;
	margin-left: 12px;
}

.hero__popular {
	color: #c4d8e8;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.76rem;
	gap: 13px;
	margin-top: 12px;
	padding-left: 18px;
}

.hero__popular a {
	color: #fff;
	opacity: 0.86;
}

.trust-strip {
	border-bottom: 1px solid var(--border);
	padding-bottom: 23px;
	padding-top: 96px;
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
	align-items: center;
	border-right: 1px solid var(--border);
	display: flex;
	gap: 13px;
	padding: 5px 24px;
}

.trust-strip__grid > div:first-child {
	padding-left: 0;
}

.trust-strip__grid > div:last-child {
	border: 0;
}

.trust-strip__grid > div > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.trust-strip__grid p {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	margin: 0;
}

.trust-strip__grid strong {
	font-size: 0.86rem;
}

.trust-strip__grid small {
	color: var(--muted);
	font-size: 0.68rem;
	margin-top: 3px;
}

/* Country and category cards */
.country-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
}

.country-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 6px 20px rgba(6, 42, 76, 0.04);
	display: flex;
	flex-direction: column;
	min-height: 266px;
	overflow: hidden;
	padding: 21px;
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.country-card:hover {
	border-color: #9bcce9;
	box-shadow: var(--shadow-md);
	transform: translateY(-7px);
}

.country-card__visual {
	align-items: center;
	display: flex;
	height: 62px;
	margin-bottom: 15px;
	position: relative;
}

.country-flag {
	border: 1px solid rgba(4, 27, 49, 0.09);
	border-radius: 5px;
	height: 27px;
	object-fit: cover;
	width: 42px;
}

.country-card__flag {
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(4, 27, 49, 0.15);
	height: 42px;
	position: relative;
	width: 63px;
	z-index: 2;
}

.country-card__orb {
	background: var(--blue-50);
	border-radius: 50%;
	height: 76px;
	left: 28px;
	position: absolute;
	width: 76px;
}

.country-card h3 {
	font-size: 1.18rem;
	margin-bottom: 7px;
}

.country-card p {
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.55;
}

.country-card footer {
	align-items: center;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 14px;
}

.country-card footer strong {
	color: var(--navy-900);
	font-size: 0.76rem;
}

.country-card footer a {
	align-items: center;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 750;
	gap: 5px;
}

.category-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, 1fr);
}

.category-card {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 13px;
	color: var(--ink);
	display: grid;
	gap: 13px;
	grid-template-columns: auto 1fr auto;
	padding: 17px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card:hover {
	border-color: #abd2e9;
	box-shadow: var(--shadow-sm);
	color: var(--ink);
	transform: translateY(-3px);
}

.category-card__icon {
	align-items: center;
	background: linear-gradient(145deg, var(--blue-50), var(--blue-100));
	border-radius: 11px;
	color: var(--blue-700);
	display: flex;
	height: 51px;
	justify-content: center;
	width: 51px;
}

.category-card > span:nth-child(2) {
	display: flex;
	flex-direction: column;
}

.category-card strong {
	font-size: 0.91rem;
}

.category-card small {
	color: var(--muted);
	font-size: 0.72rem;
}

.category-card > .ijp-icon {
	color: #9aacba;
	transition: transform 180ms ease;
}

.category-card:hover > .ijp-icon {
	color: var(--blue-700);
	transform: translateX(4px);
}

/* Job cards */
.job-grid {
	display: grid;
	gap: 21px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.job-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 7px 24px rgba(6, 42, 76, 0.045);
	display: flex;
	flex-direction: column;
	min-height: 405px;
	padding: 21px;
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.job-card:hover {
	border-color: #a9d2e9;
	box-shadow: var(--shadow-md);
	transform: translateY(-6px);
}

.job-card__top,
.job-card__footer {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.job-card__country {
	align-items: center;
	display: flex;
	gap: 10px;
}

.job-card__country span {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.job-card__country strong {
	font-size: 0.83rem;
}

.job-card__country small {
	color: var(--muted);
	font-size: 0.68rem;
}

.save-job,
.share-button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--muted);
	display: inline-flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.save-job:hover,
.save-job.is-saved {
	background: var(--red-100);
	border-color: #f4bcbc;
	color: var(--red-600);
}

.save-job.is-saved svg {
	fill: currentColor;
}

.job-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 16px;
	min-height: 24px;
}

.badge {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.64rem;
	font-weight: 800;
	gap: 4px;
	letter-spacing: 0.04em;
	padding: 4px 9px;
	text-transform: uppercase;
}

.badge--featured {
	background: #fff4d8;
	color: #9b6300;
}

.badge--urgent {
	animation: urgent-glow 2s ease-in-out infinite;
	background: var(--red-100);
	color: #b52b2b;
}

.badge--demo {
	background: #eee9ff;
	color: #6840b7;
}

.badge--active {
	background: var(--green-100);
	color: var(--green-700);
}

.badge--closed {
	background: #e9edf0;
	color: #5c6872;
}

.job-card__title {
	font-size: 1.17rem;
	margin: 9px 0 7px;
	text-transform: uppercase;
}

.job-card__title a {
	color: var(--navy-900);
}

.job-card__title a:hover {
	color: var(--blue-700);
}

.job-card__employer {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.76rem;
	gap: 6px;
	margin-bottom: 17px;
}

.job-card__meta {
	border-bottom: 1px solid var(--border);
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding-block: 8px;
}

.job-card__meta > div {
	align-items: center;
	display: flex;
	gap: 8px;
	min-width: 0;
	padding: 7px 4px;
}

.job-card__meta > div > span {
	color: var(--blue-600);
}

.job-card__meta p {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	margin: 0;
	min-width: 0;
}

.job-card__meta small {
	color: var(--muted);
	font-size: 0.61rem;
}

.job-card__meta strong {
	font-size: 0.75rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.job-card__footer {
	margin-top: auto;
	padding-top: 16px;
}

.job-card__footer > span {
	color: var(--muted);
	font-size: 0.67rem;
}

.job-card__footer > div {
	align-items: center;
	display: flex;
	gap: 13px;
}

.job-card__footer .button-link {
	font-size: 0.78rem;
}

/* Why, process, stats */
.why-section {
	background:
		radial-gradient(circle at 15% 90%, rgba(21, 147, 232, 0.16), transparent 30%),
		var(--navy-950);
}

.why-section__grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 0.8fr 1.2fr;
}

.why-section h2 {
	color: #fff;
}

.why-section__content p {
	color: #afc5d7;
	font-size: 1.04rem;
}

.why-grid {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(2, 1fr);
}

.why-grid article {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	display: flex;
	gap: 13px;
	padding: 19px;
	transition: background 180ms ease, transform 180ms ease;
}

.why-grid article:hover {
	background: rgba(255, 255, 255, 0.09);
	transform: translateY(-3px);
}

.why-grid article > span {
	align-items: center;
	background: rgba(242, 184, 75, 0.15);
	border-radius: 10px;
	color: var(--gold-400);
	display: flex;
	flex: 0 0 43px;
	height: 43px;
	justify-content: center;
}

.why-grid h3 {
	color: #fff;
	font-size: 0.93rem;
	letter-spacing: -0.015em;
	margin-bottom: 5px;
}

.why-grid p {
	color: #a9bdce;
	font-size: 0.75rem;
	line-height: 1.5;
	margin: 0;
}

.process-section .section-heading {
	margin-bottom: 48px;
}

.process-timeline {
	align-items: start;
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	list-style: none;
	position: relative;
	width: 100%;
}

.process-timeline::before {
	background: linear-gradient(90deg, var(--blue-100), var(--blue-600), var(--blue-100));
	content: "";
	height: 2px;
	left: 6.25%;
	position: absolute;
	right: 6.25%;
	top: 15px;
}

.process-timeline li {
	align-items: center;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-inline: 8px;
	position: relative;
	text-align: center;
}

.process-timeline__number {
	align-items: center;
	background: var(--navy-900);
	border: 4px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px var(--blue-100);
	color: #fff;
	display: flex;
	flex: 0 0 32px;
	font-size: 0.7rem;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	margin-bottom: 18px;
	width: 32px;
	z-index: 2;
}

.process-timeline__icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 13px;
	color: var(--blue-700);
	display: flex;
	flex: 0 0 52px;
	height: 52px;
	justify-content: center;
	margin-bottom: 14px;
	width: 52px;
}

.process-timeline strong {
	display: block;
	font-size: 0.76rem;
	line-height: 1.45;
	max-width: 120px;
	min-height: 2.2em;
	width: 100%;
}

.statistics {
	background: linear-gradient(120deg, var(--blue-700), #07558f);
	color: #fff;
	padding-block: 43px;
}

.statistics__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.statistics__grid > div {
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	display: flex;
	flex-direction: column;
	padding: 7px 22px;
	text-align: center;
}

.statistics__grid > div:last-child {
	border: 0;
}

.statistics strong {
	color: #fff;
	font-size: 2rem;
	letter-spacing: -0.04em;
}

.statistics strong::after {
	content: "+";
	font-size: 1rem;
}

.statistics span {
	color: #cae3f5;
	font-size: 0.72rem;
}

.job-tabs {
	background: var(--surface-soft);
	border-radius: 999px;
	display: flex;
	padding: 4px;
}

.job-tabs button {
	background: transparent;
	border: 0;
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	padding: 9px 15px;
}

.job-tabs button.is-active {
	background: #fff;
	box-shadow: 0 4px 13px rgba(4, 27, 49, 0.08);
	color: var(--blue-700);
}

.job-tab-item {
	display: flex;
}

.job-tab-item .job-card {
	width: 100%;
}

.job-tab-item[hidden] {
	display: none;
}

.section-action {
	margin-top: 35px;
	text-align: center;
}

/* Employer, testimonials, offices, blog */
.employer-section {
	background:
		linear-gradient(90deg, var(--blue-50) 0 43%, transparent 43%),
		#fff;
}

.employer-section__inner {
	align-items: center;
	display: grid;
	gap: 90px;
	grid-template-columns: 0.9fr 1.1fr;
}

.employer-section__visual {
	background:
		radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
		linear-gradient(145deg, var(--navy-900), var(--blue-700));
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	min-height: 450px;
	padding: 65px 44px;
	position: relative;
}

.talent-stack {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.talent-stack > div {
	align-items: center;
	background: #fff;
	border-radius: 13px;
	box-shadow: var(--shadow-sm);
	display: flex;
	gap: 12px;
	padding: 13px;
}

.talent-stack > div:nth-child(2) {
	margin-left: 28px;
	margin-right: -28px;
}

.talent-stack > div > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	font-size: 0.72rem;
	font-weight: 800;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.talent-stack p {
	display: flex;
	flex: 1;
	flex-direction: column;
	line-height: 1.35;
	margin: 0;
}

.talent-stack strong {
	font-size: 0.84rem;
}

.talent-stack small {
	color: var(--muted);
	font-size: 0.7rem;
}

.talent-stack b {
	align-items: center;
	background: var(--green-100);
	border-radius: 50%;
	color: var(--green-700);
	display: flex;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.employer-section__label {
	align-items: center;
	background: var(--gold-400);
	border-radius: 999px;
	bottom: 32px;
	box-shadow: var(--shadow-sm);
	color: var(--navy-900);
	display: flex;
	font-size: 0.75rem;
	font-weight: 800;
	gap: 7px;
	left: 50%;
	padding: 9px 14px;
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}

.employer-section__content > p {
	color: var(--muted);
	font-size: 1.05rem;
}

.check-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 24px 0;
}

.check-list li {
	align-items: center;
	display: flex;
	font-weight: 650;
	gap: 9px;
}

.check-list .ijp-icon {
	background: var(--green-100);
	border-radius: 50%;
	color: var(--green-700);
	padding: 2px;
}

.check-list--light li {
	color: #d9e8f4;
}

.employer-section__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.testimonial-slider {
	overflow: hidden;
}

.testimonial-slider__track {
	display: flex;
	gap: 21px;
	transition: transform 350ms ease;
}

.testimonial-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	flex: 0 0 calc((100% - 42px) / 3);
	min-height: 310px;
	padding: 25px;
	position: relative;
}

.testimonial-card__quote {
	color: var(--blue-100);
	font-family: Georgia, serif;
	font-size: 5rem;
	left: 20px;
	line-height: 1;
	position: absolute;
	top: 14px;
}

.testimonial-card__stars {
	color: var(--gold-500);
	font-size: 0.88rem;
	letter-spacing: 0.15em;
	position: relative;
}

.testimonial-card blockquote {
	color: var(--ink);
	font-size: 0.93rem;
	font-style: italic;
	line-height: 1.72;
	margin: 38px 0 28px;
	position: relative;
}

.testimonial-card footer {
	align-items: center;
	display: flex;
	gap: 12px;
}

.testimonial-card footer > span {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 0.8rem;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.testimonial-card footer p {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
	margin: 0;
}

.testimonial-card footer strong {
	font-size: 0.83rem;
}

.testimonial-card footer small {
	color: var(--muted);
	font-size: 0.7rem;
}

.testimonial-slider__controls {
	align-items: center;
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 27px;
}

.testimonial-slider__controls button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--navy-900);
	display: flex;
	height: 39px;
	justify-content: center;
	width: 39px;
}

.testimonial-slider__controls [data-slider-dots] {
	display: flex;
	gap: 6px;
}

.testimonial-slider__controls [data-slider-dots] button {
	background: #bdcbd5;
	border: 0;
	height: 7px;
	width: 7px;
}

.testimonial-slider__controls [data-slider-dots] button.is-active {
	background: var(--blue-600);
	border-radius: 999px;
	width: 24px;
}

.office-grid,
.blog-grid {
	display: grid;
	gap: 21px;
	grid-template-columns: repeat(3, 1fr);
}

.office-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 25px;
}

.office-card__icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 11px;
	color: var(--blue-700);
	display: flex;
	height: 48px;
	justify-content: center;
	margin-bottom: 18px;
	width: 48px;
}

.office-card h3 {
	font-size: 1.08rem;
}

.office-card p {
	color: var(--muted);
	font-size: 0.82rem;
	min-height: 50px;
}

.office-card ul {
	border-bottom: 1px solid var(--border);
	border-top: 1px solid var(--border);
	display: grid;
	gap: 6px;
	list-style: none;
	margin-block: 16px;
	padding-block: 12px;
}

.office-card li {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.76rem;
	gap: 7px;
}

.office-card > a {
	align-items: center;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 750;
	gap: 6px;
}

.blog-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.blog-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.blog-card__image {
	align-items: center;
	background:
		radial-gradient(circle at 70% 20%, rgba(242, 184, 75, 0.5), transparent 24%),
		linear-gradient(135deg, var(--navy-900), var(--blue-600));
	color: #fff;
	display: flex;
	height: 190px;
	justify-content: center;
	overflow: hidden;
}

.blog-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
	width: 100%;
}

.blog-card:hover .blog-card__image img {
	transform: scale(1.04);
}

.blog-card > div {
	padding: 21px;
}

.blog-card__meta {
	color: var(--blue-700);
	font-size: 0.68rem;
	font-weight: 750;
	text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
	font-size: 1.1rem;
	margin: 9px 0;
}

.blog-card h2 a,
.blog-card h3 a {
	color: var(--navy-900);
}

.blog-card p {
	color: var(--muted);
	font-size: 0.79rem;
}

.blog-card .button-link {
	font-size: 0.76rem;
}

.faq-preview__grid {
	align-items: start;
	display: grid;
	gap: 75px;
	grid-template-columns: 0.7fr 1.3fr;
}

.faq-preview__grid > div:first-child > p {
	color: var(--muted);
}

.faq-list {
	display: grid;
	gap: 11px;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.faq-item summary {
	align-items: center;
	color: var(--navy-900);
	cursor: pointer;
	display: flex;
	font-size: 0.9rem;
	font-weight: 750;
	justify-content: space-between;
	list-style: none;
	padding: 17px 19px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary span {
	color: var(--blue-700);
	font-size: 1.3rem;
	transition: transform 180ms ease;
}

.faq-item[open] summary span {
	transform: rotate(45deg);
}

.faq-item > div {
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.84rem;
	padding: 17px 19px;
}

.faq-item > div p:last-child {
	margin: 0;
}

.career-cta {
	background: linear-gradient(125deg, var(--navy-950), var(--blue-700));
	color: #fff;
	overflow: hidden;
	padding-block: 75px;
	position: relative;
}

.career-cta__pattern {
	mask-image: radial-gradient(circle at 80%, #000, transparent 65%);
}

.career-cta__inner {
	align-items: center;
	display: grid;
	gap: 60px;
	grid-template-columns: 1.2fr 0.8fr;
	position: relative;
}

.career-cta h2 {
	color: #fff;
}

.career-cta p {
	color: #c2d8e8;
	max-width: 730px;
}

.career-cta__inner > div:last-child {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

/* Page hero and archive */
.page-hero {
	background:
		radial-gradient(circle at 80% 30%, rgba(21, 147, 232, 0.22), transparent 25%),
		linear-gradient(120deg, var(--navy-950), var(--navy-800));
	color: #fff;
	padding-block: 64px 74px;
	position: relative;
}

.page-hero h1 {
	color: #fff;
	font-size: clamp(2.7rem, 5vw, 4.2rem);
}

.page-hero p {
	color: #c1d5e5;
	font-size: 1.05rem;
	max-width: 760px;
}

.page-hero--compact {
	padding-block: 56px 65px;
}

.page-hero--compact h1 {
	font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.page-hero--jobs {
	padding-bottom: 87px;
}

.breadcrumbs {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.73rem;
	gap: 9px;
	margin-bottom: 23px;
	overflow: hidden;
	white-space: nowrap;
}

.breadcrumbs a {
	color: inherit;
}

.breadcrumbs--light,
.page-hero .breadcrumbs {
	color: #a9c0d3;
}

.page-hero__content {
	align-items: end;
	display: flex;
	gap: 50px;
	justify-content: space-between;
}

.page-hero__stats {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 13px;
	display: flex;
	flex: 0 0 225px;
	flex-direction: column;
	padding: 17px;
}

.page-hero__stats strong {
	color: #fff;
	font-size: 2rem;
	line-height: 1;
}

.page-hero__stats span {
	color: #b9cfe0;
	font-size: 0.72rem;
	margin-top: 7px;
}

.archive-search {
	align-items: end;
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--shadow-md);
	display: grid;
	gap: 9px;
	grid-template-columns: 1.35fr 0.75fr auto;
	margin-bottom: -126px;
	margin-top: 29px;
	padding: 12px;
	position: relative;
	z-index: 2;
}

.archive-search > div {
	padding: 4px 14px 4px 43px;
	position: relative;
}

.archive-search label {
	color: var(--navy-900);
	display: block;
	font-size: 0.66rem;
	font-weight: 800;
	text-transform: uppercase;
}

.archive-search > div > span {
	color: var(--blue-600);
	left: 13px;
	position: absolute;
	top: 28px;
}

.archive-search input,
.archive-search select {
	background: transparent;
	border: 0;
	color: var(--ink);
	height: 34px;
	outline: 0;
	width: 100%;
}

.jobs-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: 260px minmax(0, 1fr);
	padding-bottom: 90px;
	padding-top: 81px;
}

.job-filters {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 19px;
	position: sticky;
	top: 95px;
}

.job-filters__header {
	align-items: center;
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 13px;
}

.job-filters__header > div {
	align-items: center;
	display: flex;
	gap: 8px;
}

.job-filters__header h2 {
	font-size: 0.95rem;
	margin: 0;
}

.job-filters__header span {
	color: var(--blue-700);
}

.job-filters__header button {
	background: transparent;
	border: 0;
	color: var(--blue-700);
	font-size: 0.68rem;
	font-weight: 750;
	padding: 0;
}

.job-filters__mobile-close {
	display: none;
}

.filter-group {
	margin-bottom: 13px;
}

.filter-group label {
	color: var(--navy-900);
	display: block;
	font-size: 0.68rem;
	font-weight: 750;
	margin-bottom: 5px;
}

.filter-group select {
	background-color: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--ink);
	font-size: 0.75rem;
	height: 42px;
	padding-inline: 10px;
	width: 100%;
}

.job-alert-card {
	background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
	border-radius: 12px;
	color: #fff;
	margin-top: 19px;
	padding: 18px;
}

.job-alert-card > span {
	color: var(--gold-400);
}

.job-alert-card h3 {
	color: #fff;
	font-size: 0.94rem;
	margin: 10px 0 6px;
}

.job-alert-card p {
	color: #bed3e3;
	font-size: 0.7rem;
	line-height: 1.5;
}

.job-alert-card .button-link {
	color: var(--gold-400);
	font-size: 0.72rem;
}

.job-results__toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 17px;
}

.job-results__toolbar h2 {
	font-size: 1rem;
	margin: 0;
}

.results-view {
	align-items: center;
	display: flex;
	gap: 10px;
}

.results-view > select {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--ink);
	font-size: 0.73rem;
	height: 39px;
	padding-inline: 10px;
}

.view-toggle {
	background: var(--surface-soft);
	border-radius: 8px;
	display: flex;
	padding: 3px;
}

.view-toggle button {
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--muted);
	height: 32px;
	width: 34px;
}

.view-toggle button.is-active {
	background: #fff;
	box-shadow: 0 3px 8px rgba(4, 27, 49, 0.08);
	color: var(--blue-700);
}

.filter-mobile-toggle {
	display: none;
}

.active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 15px;
}

.active-filter {
	align-items: center;
	background: var(--blue-50);
	border: 1px solid #cce7f7;
	border-radius: 999px;
	color: var(--blue-700);
	display: inline-flex;
	font-size: 0.68rem;
	font-weight: 700;
	gap: 6px;
	padding: 5px 9px;
}

.active-filter.is-active {
	background: var(--blue-700);
	border-color: var(--blue-700);
	color: #fff;
}

.active-filter button {
	background: transparent;
	border: 0;
	color: inherit;
	line-height: 1;
	padding: 0;
}

.notice-card {
	background: #fff8df;
	border: 1px solid #efd68a;
	border-radius: var(--radius-sm);
	color: #66501a;
	margin-top: 28px;
	padding: 16px 18px;
}

.notice-card p {
	margin: 0;
}

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

.job-results__grid.is-list {
	grid-template-columns: 1fr;
}

.job-results__grid.is-list .job-card {
	min-height: auto;
}

.job-results__load {
	margin-top: 28px;
	text-align: center;
}

.empty-state {
	align-items: center;
	background: var(--surface-soft);
	border: 1px dashed #b9cbd8;
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	grid-column: 1 / -1;
	padding: 55px 25px;
	text-align: center;
}

.empty-state > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 50%;
	color: var(--blue-700);
	display: flex;
	height: 68px;
	justify-content: center;
	width: 68px;
}

.empty-state h3,
.empty-state h2 {
	font-size: 1.25rem;
	margin: 17px 0 7px;
}

.empty-state p {
	color: var(--muted);
	font-size: 0.82rem;
	max-width: 490px;
}

.skeleton-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	height: 405px;
	overflow: hidden;
	position: relative;
}

.skeleton-card::before {
	animation: skeleton-shimmer 1.25s linear infinite;
	background: linear-gradient(90deg, #eef3f6 20%, #f8fafb 40%, #eef3f6 60%);
	background-size: 300% 100%;
	content: "";
	inset: 20px;
	mask:
		linear-gradient(#000 0 0) 0 0 / 100% 48px,
		linear-gradient(#000 0 0) 0 76px / 74% 24px,
		linear-gradient(#000 0 0) 0 116px / 100% 145px,
		linear-gradient(#000 0 0) 0 290px / 100% 50px;
	mask-repeat: no-repeat;
	position: absolute;
}

.portal-dialog {
	border: 0;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 480px;
	padding: 32px;
	width: calc(100% - 32px);
}

.portal-dialog::backdrop {
	background: rgba(4, 27, 49, 0.65);
	backdrop-filter: blur(4px);
}

.portal-dialog__close {
	align-items: center;
	background: var(--surface-soft);
	border: 0;
	border-radius: 50%;
	display: flex;
	height: 36px;
	justify-content: center;
	position: absolute;
	right: 16px;
	top: 16px;
	width: 36px;
}

.portal-dialog__icon {
	align-items: center;
	background: var(--blue-100);
	border-radius: 12px;
	color: var(--blue-700);
	display: flex;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.portal-dialog h2 {
	font-size: 1.45rem;
	margin: 17px 0 8px;
}

.portal-dialog > p {
	color: var(--muted);
	font-size: 0.84rem;
}

.stacked-alert-form {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.stacked-alert-form label {
	color: var(--navy-900);
	font-size: 0.75rem;
	font-weight: 700;
}

.stacked-alert-form input,
.stacked-alert-form select {
	border: 1px solid var(--border);
	border-radius: 9px;
	display: block;
	height: 46px;
	margin-top: 5px;
	padding-inline: 12px;
	width: 100%;
}

/* Single job */
.job-hero {
	background:
		radial-gradient(circle at 82% 25%, rgba(21, 147, 232, 0.2), transparent 25%),
		linear-gradient(125deg, var(--navy-950), var(--navy-800));
	color: #fff;
	padding: 38px 0 0;
}

.job-hero__grid {
	align-items: start;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	padding-bottom: 35px;
}

.job-hero__main {
	display: flex;
	gap: 19px;
}

.job-hero__brand {
	align-items: center;
	background: #fff;
	border-radius: 14px;
	color: var(--blue-700);
	display: flex;
	flex: 0 0 76px;
	height: 76px;
	justify-content: center;
	overflow: hidden;
	width: 76px;
}

.job-hero__brand img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.job-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 10px;
}

.job-hero h1 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin-bottom: 11px;
	text-transform: uppercase;
}

.job-hero__sub {
	align-items: center;
	color: #bfd3e3;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.79rem;
	gap: 16px;
}

.job-hero__sub > span {
	align-items: center;
	display: inline-flex;
	gap: 7px;
}

.job-hero__sub .country-flag {
	height: 20px;
	width: 30px;
}

.job-hero__actions {
	display: flex;
	gap: 9px;
}

.save-job--text,
.share-button {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	color: #fff;
	font-size: 0.76rem;
	gap: 7px;
	height: 42px;
	padding-inline: 15px;
	width: auto;
}

.share-button:hover,
.save-job--text:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.job-hero__facts {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 0;
	border-radius: 15px 15px 0 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.job-hero__facts > div {
	align-items: center;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 11px;
	padding: 17px 21px;
}

.job-hero__facts > div:last-child {
	border: 0;
}

.job-hero__facts > div > span {
	color: var(--gold-400);
}

.job-hero__facts p {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
	margin: 0;
}

.job-hero__facts small {
	color: #a9c3d7;
	font-size: 0.63rem;
}

.job-hero__facts strong {
	color: #fff;
	font-size: 0.78rem;
}

.job-detail-layout {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1fr) 390px;
	padding-block: 55px 90px;
}

.job-detail {
	display: grid;
	gap: 20px;
}

.job-content-section,
.recruitment-mini-process {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 27px;
}

.job-content-section__heading {
	align-items: center;
	border-bottom: 1px solid var(--border);
	display: flex;
	gap: 11px;
	margin-bottom: 20px;
	padding-bottom: 15px;
}

.job-content-section__heading > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 9px;
	color: var(--blue-700);
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.job-content-section h2 {
	font-size: 1.2rem;
	margin: 0;
}

.entry-content {
	color: #40556a;
}

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

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2 {
	font-size: 1.7rem;
	margin-top: 1.5em;
}

.entry-content h3 {
	font-size: 1.25rem;
	margin-top: 1.4em;
}

.entry-content ul,
.entry-content ol {
	margin: 1em 0 1em 1.3em;
}

.entry-content li {
	margin-bottom: 0.45em;
}

.entry-content img {
	border-radius: var(--radius);
}

.demo-notice,
.safety-notice {
	align-items: flex-start;
	background: #f5f0ff;
	border: 1px solid #d9c9f5;
	border-radius: var(--radius);
	color: #56378e;
	display: flex;
	gap: 13px;
	padding: 18px;
}

.demo-notice p,
.safety-notice p {
	font-size: 0.79rem;
	margin: 2px 0 0;
}

.detail-table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.detail-table > div {
	border-bottom: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	padding: 12px 5px;
}

.detail-table > div:nth-last-child(-n+2) {
	border-bottom: 0;
}

.detail-table span {
	color: var(--muted);
	font-size: 0.68rem;
}

.detail-table strong {
	font-size: 0.84rem;
}

.skill-tags {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 15px;
}

.skill-tags strong {
	font-size: 0.75rem;
}

.skill-tags span {
	background: var(--blue-50);
	border-radius: 999px;
	color: var(--blue-700);
	font-size: 0.68rem;
	font-weight: 650;
	padding: 5px 9px;
}

.recruitment-mini-process h2 {
	font-size: 1.16rem;
	text-align: center;
}

.recruitment-mini-process > div {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}

.recruitment-mini-process span {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 0.68rem;
	font-weight: 700;
	gap: 8px;
	text-align: center;
}

.recruitment-mini-process b {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 33px;
	justify-content: center;
	width: 33px;
}

.recruitment-mini-process i {
	background: var(--blue-100);
	height: 2px;
	width: 11%;
}

.safety-notice {
	background: #fff8e8;
	border-color: #f1dca4;
	color: #72510c;
}

.safety-notice h2 {
	color: #66470b;
	font-size: 0.95rem;
	margin: 0;
}

.application-sidebar {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 95px;
}

.application-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: 23px;
}

.application-card__heading {
	align-items: flex-start;
	display: flex;
	gap: 11px;
	margin-bottom: 19px;
}

.application-card__heading > span {
	align-items: center;
	background: #fff4da;
	border-radius: 9px;
	color: #a36a00;
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.application-card h2 {
	font-size: 1.1rem;
	margin: 0 0 3px;
}

.application-card__heading p {
	color: var(--muted);
	font-size: 0.72rem;
	margin: 0;
}

.application-form {
	display: grid;
	gap: 11px;
}

.form-row {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}

.application-form label {
	color: var(--navy-900);
	font-size: 0.68rem;
	font-weight: 700;
}

.application-form label > span,
.form-field > b {
	color: var(--red-600);
}

.application-form input,
.application-form select,
.application-form textarea {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 8px;
	display: block;
	font-size: 0.76rem;
	margin-top: 4px;
	min-height: 41px;
	padding: 9px 10px;
	resize: vertical;
	width: 100%;
}

.application-form__more {
	border: 1px solid var(--border);
	border-radius: 9px;
}

.application-form__more summary {
	align-items: center;
	color: var(--blue-700);
	cursor: pointer;
	display: flex;
	font-size: 0.73rem;
	font-weight: 700;
	justify-content: space-between;
	list-style: none;
	padding: 10px;
}

.application-form__more > div {
	border-top: 1px solid var(--border);
	display: grid;
	gap: 10px;
	padding: 10px;
}

.file-drop {
	align-items: center;
	background: var(--blue-50);
	border: 1px dashed #97c7e2;
	border-radius: 10px;
	cursor: pointer;
	display: flex !important;
	flex-direction: column;
	padding: 15px;
	text-align: center;
}

.file-drop > span {
	color: var(--blue-700) !important;
}

.file-drop strong {
	font-size: 0.75rem;
}

.file-drop small {
	color: var(--muted);
	font-size: 0.62rem;
}

.file-drop input {
	height: 1px !important;
	margin: 0 !important;
	min-height: 1px !important;
	opacity: 0;
	padding: 0 !important;
	position: absolute;
	width: 1px !important;
}

.file-drop em {
	color: var(--blue-700);
	font-size: 0.65rem;
	font-style: normal;
	font-weight: 750;
	margin-top: 3px;
}

.consent-field {
	align-items: flex-start;
	display: flex !important;
	gap: 8px;
	line-height: 1.45;
}

.consent-field input {
	flex: 0 0 auto;
	height: 15px;
	margin: 2px 0 0;
	min-height: auto;
	width: 15px;
}

.application-card__divider {
	border-top: 1px solid var(--border);
	margin: 19px 0;
	position: relative;
	text-align: center;
}

.application-card__divider span {
	background: #fff;
	color: var(--muted);
	font-size: 0.65rem;
	padding-inline: 8px;
	position: relative;
	top: -13px;
}

.application-card__privacy {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.62rem;
	gap: 6px;
	justify-content: center;
	margin: 15px 0 0;
	text-align: center;
}

.recruiter-help {
	align-items: center;
	background: var(--blue-50);
	border: 1px solid #cae4f4;
	border-radius: 13px;
	display: flex;
	gap: 11px;
	padding: 15px;
}

.recruiter-help > span {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex: 0 0 43px;
	font-size: 0.72rem;
	font-weight: 800;
	height: 43px;
	justify-content: center;
}

.recruiter-help div {
	display: flex;
	flex-direction: column;
}

.recruiter-help strong {
	font-size: 0.76rem;
}

.recruiter-help p,
.recruiter-help a {
	font-size: 0.66rem;
	margin: 2px 0 0;
}

.mobile-apply-bar {
	display: none;
}

/* Forms and account pages */
.page-hero__split {
	align-items: center;
	display: grid;
	gap: 65px;
	grid-template-columns: 1.2fr 0.8fr;
}

.page-hero__assurance,
.employer-benefit-grid {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius);
	display: grid;
	gap: 0;
}

.page-hero__assurance > div {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 12px;
	padding: 15px;
}

.page-hero__assurance > div:last-child {
	border: 0;
}

.page-hero__assurance > div > span {
	color: var(--gold-400);
}

.page-hero__assurance p {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	margin: 0;
}

.page-hero__assurance strong {
	color: #fff;
	font-size: 0.81rem;
}

.page-hero__assurance small {
	color: #abc4d7;
	font-size: 0.68rem;
}

.registration-form-section {
	background: var(--surface-soft);
}

.form-shell {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 34px;
}

.form-progress {
	margin-bottom: 38px;
}

.form-progress__bar {
	background: var(--border);
	border-radius: 999px;
	height: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}

.form-progress__bar span {
	background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
	display: block;
	height: 100%;
	transition: width 350ms ease;
	width: 25%;
}

.form-progress ol {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	list-style: none;
}

.form-progress li {
	align-items: center;
	color: var(--muted);
	display: flex;
	gap: 9px;
}

.form-progress li > span {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	font-size: 0.72rem;
	font-weight: 750;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.form-progress li > div {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.form-progress li strong {
	font-size: 0.75rem;
}

.form-progress li small {
	font-size: 0.62rem;
}

.form-progress li.is-active,
.form-progress li.is-complete {
	color: var(--blue-700);
}

.form-progress li.is-active > span,
.form-progress li.is-complete > span {
	background: var(--blue-700);
	border-color: var(--blue-700);
	color: #fff;
}

.form-step {
	animation: form-step-in 280ms ease;
}

.form-step__heading,
.form-section__heading {
	align-items: flex-start;
	border-bottom: 1px solid var(--border);
	display: flex;
	gap: 13px;
	margin-bottom: 24px;
	padding-bottom: 17px;
}

.form-step__heading > span,
.form-section__heading > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.form-step__heading h2,
.form-section__heading h2 {
	font-size: 1.25rem;
	margin: 0 0 4px;
}

.form-step__heading p,
.form-section__heading p {
	color: var(--muted);
	font-size: 0.75rem;
	margin: 0;
}

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

.form-field {
	color: var(--navy-900);
	font-size: 0.75rem;
	font-weight: 700;
}

.form-field--wide {
	grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 9px;
	color: var(--ink);
	display: block;
	font-size: 0.83rem;
	font-weight: 400;
	margin-top: 6px;
	min-height: 47px;
	padding: 11px 12px;
	resize: vertical;
	width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
	background: #fff;
	border-color: var(--blue-600);
	box-shadow: 0 0 0 3px rgba(21, 147, 232, 0.1);
	outline: 0;
}

.form-field input[readonly] {
	background: #eef2f5;
	color: var(--muted);
}

.form-step__actions {
	align-items: center;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 22px;
}

.upload-security-note,
.registration-summary {
	align-items: center;
	background: var(--green-100);
	border: 1px solid #bce8d4;
	border-radius: 11px;
	color: var(--green-700);
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	padding: 14px;
}

.upload-security-note p,
.registration-summary > div {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.upload-security-note strong,
.registration-summary strong {
	font-size: 0.78rem;
}

.upload-security-note span,
.registration-summary p {
	font-size: 0.69rem;
	margin: 0;
}

.document-grid {
	display: grid;
	gap: 11px;
	grid-template-columns: repeat(2, 1fr);
}

.document-upload {
	align-items: center;
	background: var(--surface-soft);
	border: 1px dashed #b8cad7;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	gap: 12px;
	min-height: 78px;
	padding: 13px;
	position: relative;
	transition: background 180ms ease, border-color 180ms ease;
}

.document-upload:hover {
	background: var(--blue-50);
	border-color: var(--blue-600);
}

.document-upload > span {
	color: var(--blue-700);
}

.document-upload > div {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
	min-width: 0;
}

.document-upload strong {
	font-size: 0.76rem;
}

.document-upload small {
	color: var(--muted);
	font-size: 0.65rem;
}

.document-upload em {
	color: var(--blue-700);
	font-size: 0.65rem;
	font-style: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.document-upload input {
	inset: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
}

.consent-panel {
	display: grid;
	gap: 12px;
}

.consent-panel label {
	align-items: flex-start;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	font-size: 0.77rem;
	gap: 10px;
	line-height: 1.55;
	padding: 14px;
}

.consent-panel input {
	flex: 0 0 auto;
	height: 17px;
	margin-top: 2px;
	width: 17px;
}

.consent-panel b {
	color: var(--red-600);
}

.registration-summary {
	background: var(--blue-50);
	border-color: #c7e4f5;
	color: var(--blue-700);
	margin: 22px 0 0;
}

.form-help-strip {
	align-items: center;
	background: var(--navy-900);
	border-radius: var(--radius);
	color: #fff;
	display: flex;
	justify-content: space-between;
	margin-top: 18px;
	padding: 18px 23px;
}

.form-help-strip > div {
	align-items: center;
	display: flex;
	gap: 12px;
}

.form-help-strip p {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.form-help-strip strong {
	font-size: 0.83rem;
}

.form-help-strip span {
	color: #a9c0d3;
	font-size: 0.7rem;
}

.form-status {
	border-radius: 8px;
	display: none;
	font-size: 0.73rem;
	line-height: 1.5;
	padding: 10px;
}

.form-status.is-visible {
	display: block;
}

.form-status.is-success {
	background: var(--green-100);
	color: var(--green-700);
}

.form-status.is-error {
	background: var(--red-100);
	color: #a82929;
}

.form-status--global {
	margin-top: 15px;
}

.js-ajax-form.is-submitting {
	opacity: 0.7;
	pointer-events: none;
}

.employer-benefit-grid {
	grid-template-columns: repeat(2, 1fr);
}

.employer-benefit-grid > div {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 22px;
	text-align: center;
}

.employer-benefit-grid > div:nth-child(even) {
	border-right: 0;
}

.employer-benefit-grid > div:nth-last-child(-n+2) {
	border-bottom: 0;
}

.employer-benefit-grid span {
	color: var(--gold-400);
}

.employer-benefit-grid strong {
	color: #fff;
	font-size: 0.78rem;
}

.employer-form-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 310px;
}

.employer-form {
	display: grid;
	gap: 35px;
}

.employer-form-aside {
	display: grid;
	gap: 17px;
	position: sticky;
	top: 95px;
}

.employer-form-aside > div {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 23px;
}

.employer-form-aside > div > span {
	color: var(--blue-700);
}

.employer-form-aside h2 {
	font-size: 1.08rem;
	margin: 12px 0 20px;
}

.employer-form-aside ol {
	display: grid;
	gap: 18px;
	list-style: none;
}

.employer-form-aside li {
	display: flex;
	gap: 10px;
}

.employer-form-aside li b {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex: 0 0 28px;
	font-size: 0.65rem;
	height: 28px;
	justify-content: center;
}

.employer-form-aside li span {
	display: flex;
	flex-direction: column;
}

.employer-form-aside li strong {
	font-size: 0.77rem;
}

.employer-form-aside li small {
	color: var(--muted);
	font-size: 0.67rem;
}

.aside-contact h3 {
	font-size: 0.92rem;
	margin: 10px 0 5px;
}

.aside-contact a {
	display: block;
	font-size: 0.75rem;
	margin-top: 4px;
}

.login-page {
	background: linear-gradient(110deg, var(--navy-950) 0 50%, var(--surface-soft) 50%);
	min-height: 720px;
}

.login-layout {
	align-items: center;
	display: grid;
	gap: 120px;
	grid-template-columns: 1fr 0.8fr;
	min-height: 720px;
	padding-block: 60px;
}

.login-story {
	color: #fff;
}

.login-story h1 {
	color: #fff;
	font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.login-story > p {
	color: #b7cede;
	font-size: 1.05rem;
	max-width: 590px;
}

.login-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 34px;
}

.login-card__icon {
	align-items: center;
	background: var(--blue-100);
	border-radius: 12px;
	color: var(--blue-700);
	display: flex;
	height: 52px;
	justify-content: center;
	width: 52px;
}

.login-card h2 {
	font-size: 1.6rem;
	margin: 18px 0 7px;
}

.login-card > p {
	color: var(--muted);
	font-size: 0.8rem;
}

.login-card form p {
	margin-bottom: 14px;
}

.login-card form label {
	color: var(--navy-900);
	display: block;
	font-size: 0.73rem;
	font-weight: 700;
}

.login-card .input {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 9px;
	display: block;
	height: 48px;
	margin-top: 5px;
	padding-inline: 12px;
	width: 100%;
}

.login-card .login-remember label {
	align-items: center;
	display: flex;
	gap: 7px;
}

.login-card .button-primary {
	background: var(--blue-700);
	border: 0;
	border-radius: 999px;
	color: #fff;
	font-weight: 750;
	height: 50px;
	width: 100%;
}

.login-card__links {
	display: flex;
	font-size: 0.72rem;
	justify-content: space-between;
	margin-top: 17px;
}

.login-card__secure {
	align-items: center;
	border-top: 1px solid var(--border);
	display: flex;
	gap: 6px;
	justify-content: center;
	margin: 20px 0 0 !important;
	padding-top: 16px;
}

/* Candidate dashboard */
.dashboard-page {
	background: var(--surface-soft);
	min-height: 700px;
}

.dashboard-page__header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding-top: 22px;
}

.dashboard-page__header .breadcrumbs {
	margin-bottom: 18px;
}

.dashboard-page__body {
	padding-block: 30px 75px;
}

.candidate-dashboard {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: 225px minmax(0, 1fr);
}

.dashboard-sidebar {
	background: var(--navy-950);
	border-radius: var(--radius);
	color: #fff;
	overflow: hidden;
	padding: 20px 13px 13px;
	position: sticky;
	top: 95px;
}

.dashboard-profile {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 10px;
	margin: 0 7px 14px;
	padding-bottom: 17px;
}

.dashboard-profile__avatar {
	align-items: center;
	background: linear-gradient(145deg, var(--gold-400), var(--gold-600));
	border-radius: 11px;
	color: var(--navy-950);
	display: flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.dashboard-profile > div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.dashboard-profile strong {
	font-size: 0.79rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dashboard-profile small {
	color: #92adc2;
	font-size: 0.61rem;
}

.dashboard-sidebar nav {
	display: grid;
	gap: 4px;
}

.dashboard-sidebar nav button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: #b8ccdc;
	display: flex;
	font-size: 0.72rem;
	font-weight: 650;
	gap: 9px;
	padding: 10px;
	text-align: left;
}

.dashboard-sidebar nav button > span {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	font-size: 0.6rem;
	margin-left: auto;
	padding: 2px 6px;
}

.dashboard-sidebar nav button:hover,
.dashboard-sidebar nav button.is-active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.dashboard-logout {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #e4b5b5;
	display: flex;
	font-size: 0.7rem;
	gap: 8px;
	margin: 14px 7px 0;
	padding: 15px 3px 4px;
}

.dashboard-content {
	min-width: 0;
}

.dashboard-panel {
	animation: form-step-in 220ms ease;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
}

.dashboard-welcome,
.dashboard-section-heading {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.dashboard-welcome h2,
.dashboard-section-heading h2 {
	font-size: 1.55rem;
	margin: 0 0 5px;
}

.dashboard-welcome p,
.dashboard-section-heading p {
	color: var(--muted);
	font-size: 0.77rem;
	margin: 0;
}

.dashboard-stat-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
}

.dashboard-stat-grid article {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 11px;
	display: grid;
	gap: 4px 11px;
	grid-template-columns: auto 1fr;
	padding: 15px;
}

.dashboard-stat-grid article > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 9px;
	color: var(--blue-700);
	display: flex;
	grid-row: 1 / 3;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.dashboard-stat-grid strong {
	font-size: 1.2rem;
	line-height: 1;
}

.dashboard-stat-grid small {
	color: var(--muted);
	font-size: 0.66rem;
}

.profile-completion {
	align-items: center;
	background: linear-gradient(120deg, var(--blue-50), #fff9e9);
	border: 1px solid #cfe4f1;
	border-radius: 13px;
	display: flex;
	gap: 20px;
	margin: 18px 0 27px;
	padding: 18px;
}

.profile-ring {
	align-items: center;
	background: conic-gradient(var(--blue-600) calc(var(--progress) * 1%), #dce8ef 0);
	border-radius: 50%;
	display: flex;
	flex: 0 0 78px;
	height: 78px;
	justify-content: center;
	position: relative;
	width: 78px;
}

.profile-ring::before {
	background: #fff;
	border-radius: 50%;
	content: "";
	inset: 7px;
	position: absolute;
}

.profile-ring span {
	color: var(--navy-900);
	font-size: 0.86rem;
	font-weight: 800;
	position: relative;
}

.profile-completion h3 {
	font-size: 0.94rem;
	margin: 0 0 4px;
}

.profile-completion p {
	color: var(--muted);
	font-size: 0.7rem;
	margin: 0 0 5px;
}

.dashboard-section-heading h3 {
	font-size: 1rem;
	margin: 0;
}

.application-list {
	display: grid;
	gap: 9px;
}

.application-list article {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	gap: 12px;
	padding: 13px;
}

.application-list article > span:first-child {
	align-items: center;
	background: var(--blue-100);
	border-radius: 8px;
	color: var(--blue-700);
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.application-list .country-flag {
	height: 31px !important;
	object-fit: cover;
	width: 45px !important;
}

.application-list article > div {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.application-list strong {
	font-size: 0.77rem;
}

.application-list strong a {
	color: var(--navy-900);
}

.application-list small {
	color: var(--muted);
	font-size: 0.63rem;
}

.status-pill {
	background: var(--blue-100);
	border-radius: 999px;
	color: var(--blue-700);
	font-size: 0.59rem;
	padding: 5px 8px;
}

.status-pill--selected,
.status-pill--placed,
.status-pill--shortlisted {
	background: var(--green-100);
	color: var(--green-700);
}

.status-pill--rejected {
	background: var(--red-100);
	color: var(--red-600);
}

.dashboard-empty {
	align-items: center;
	background: var(--surface-soft);
	border-radius: 11px;
	display: flex;
	flex-direction: column;
	padding: 32px;
	text-align: center;
}

.dashboard-empty > span {
	color: var(--blue-700);
}

.dashboard-empty p {
	color: var(--muted);
	font-size: 0.76rem;
	margin: 10px 0 3px;
}

.dashboard-empty a {
	font-size: 0.73rem;
	font-weight: 700;
}

.dashboard-panel .job-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-documents {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}

.dashboard-documents article {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	gap: 11px;
	padding: 14px;
}

.dashboard-documents article > span {
	color: var(--muted);
}

.dashboard-documents article.is-uploaded > span {
	color: var(--green-700);
}

.dashboard-documents article > div {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.dashboard-documents strong {
	font-size: 0.73rem;
}

.dashboard-documents small,
.dashboard-documents a {
	color: var(--muted);
	font-size: 0.62rem;
}

.dashboard-documents a {
	color: var(--blue-700);
	font-weight: 700;
}

.dashboard-profile-form .button {
	margin-top: 22px;
}

.dashboard-password-link {
	font-size: 0.74rem;
	margin-left: 15px;
}

.dashboard-locked {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	padding: 70px 25px;
	text-align: center;
}

.dashboard-locked > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 50%;
	color: var(--blue-700);
	display: flex;
	height: 74px;
	justify-content: center;
	width: 74px;
}

.dashboard-locked h2 {
	font-size: 1.5rem;
	margin: 20px 0 8px;
}

.dashboard-locked p {
	color: var(--muted);
	max-width: 560px;
}

.dashboard-locked > div {
	display: flex;
	gap: 10px;
}

/* Standard content, directories, contact, article */
.content-shell {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	max-width: 940px;
	padding: clamp(25px, 5vw, 55px);
}

.directory-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 27px;
}

.directory-toolbar h2 {
	font-size: 1.2rem;
	margin: 0;
}

.directory-toolbar label {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 999px;
	display: flex;
	gap: 7px;
	padding-inline: 13px;
}

.directory-toolbar label > span {
	color: var(--blue-700);
}

.directory-toolbar input {
	border: 0;
	height: 42px;
	outline: 0;
	width: 220px;
}

.category-grid--directory {
	grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
	align-items: stretch;
	display: grid;
	gap: 25px;
	grid-template-columns: 1.4fr 0.6fr;
}

.contact-methods {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(3, 1fr);
}

.contact-methods > a {
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--ink);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 23px;
}

.contact-methods > a > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.contact-methods > a > div {
	display: flex;
	flex-direction: column;
}

.contact-methods strong {
	font-size: 0.82rem;
}

.contact-methods small {
	color: var(--muted);
	font-size: 0.7rem;
}

.contact-safety {
	background: #fff8e8;
	border: 1px solid #eed797;
	border-radius: var(--radius);
	color: #72510c;
	padding: 24px;
}

.contact-safety > span {
	color: #9a6b09;
}

.contact-safety h2 {
	color: #654706;
	font-size: 1.05rem;
	margin: 12px 0 7px;
}

.contact-safety p,
.contact-safety a {
	font-size: 0.73rem;
}

.article-hero {
	background:
		radial-gradient(circle at 70% 25%, rgba(21, 147, 232, 0.25), transparent 26%),
		var(--navy-950);
	color: #fff;
	padding-block: 65px 90px;
}

.article-hero h1 {
	color: #fff;
	font-size: clamp(2.5rem, 5vw, 4rem);
}

.article-meta {
	color: #abc2d4;
	font-size: 0.75rem;
}

.article-featured {
	margin-top: -45px;
	position: relative;
}

.article-featured img {
	border: 5px solid #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	width: 100%;
}

.article-body {
	padding-block: 55px 90px;
}

.article-safety-cta {
	align-items: flex-start;
	background: #fff8e8;
	border: 1px solid #efd998;
	border-radius: 12px;
	color: #73520d;
	display: flex;
	gap: 12px;
	margin-top: 38px;
	padding: 18px;
}

.article-safety-cta p {
	font-size: 0.76rem;
	margin: 2px 0 0;
}

.pagination {
	display: flex;
	gap: 7px;
	justify-content: center;
	margin-top: 35px;
}

.pagination .page-numbers {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 7px;
	color: var(--ink);
	display: flex;
	font-size: 0.75rem;
	height: 39px;
	justify-content: center;
	min-width: 39px;
	padding-inline: 10px;
}

.pagination .current {
	background: var(--blue-700);
	border-color: var(--blue-700);
	color: #fff;
}

.not-found-page {
	align-items: center;
	background: var(--surface-soft);
	display: flex;
	min-height: 650px;
	text-align: center;
}

.not-found-page .container {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.not-found-page__code {
	color: #dfeaf1;
	font-size: 9rem;
	font-weight: 850;
	line-height: 0.8;
}

.not-found-page__icon {
	align-items: center;
	background: var(--blue-700);
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 78px;
	justify-content: center;
	margin-top: -25px;
	width: 78px;
}

.not-found-page h1 {
	font-size: 2rem;
	margin: 25px 0 7px;
}

.not-found-page p {
	color: var(--muted);
	max-width: 560px;
}

.not-found-page > div > div {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}

/* Footer */
.site-footer {
	background: var(--navy-950);
	color: #a9c0d3;
}

.site-footer__newsletter {
	background: var(--navy-900);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-block: 37px;
}

.newsletter-band {
	align-items: center;
	display: grid;
	gap: 50px;
	grid-template-columns: 1fr 0.9fr;
}

.newsletter-band h2 {
	color: #fff;
	font-size: 1.55rem;
	margin: 0 0 5px;
}

.newsletter-band p {
	color: #9db6c9;
	font-size: 0.78rem;
	margin: 0;
}

.inline-alert-form {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	display: flex;
	padding: 5px;
	position: relative;
}

.inline-alert-form input {
	background: transparent;
	border: 0;
	color: #fff;
	flex: 1;
	height: 43px;
	outline: 0;
	padding-inline: 17px;
}

.inline-alert-form input::placeholder {
	color: #829eb4;
}

.inline-alert-form .form-status {
	left: 0;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
}

.site-footer__grid {
	display: grid;
	gap: 35px;
	grid-template-columns: 1.35fr 0.85fr 1fr 1fr 1.05fr;
	padding-bottom: 55px;
	padding-top: 58px;
}

.footer-logo {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	gap: 10px;
	letter-spacing: 0.015em;
	white-space: nowrap;
}

.footer-logo:hover {
	color: #fff;
}

.footer-logo__mark {
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: var(--gold-400);
	display: inline-flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.footer-about > p {
	font-size: 0.75rem;
	line-height: 1.7;
	margin-top: 19px;
}

.footer-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 16px;
}

.footer-trust span {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	color: #c7d7e3;
	display: flex;
	font-size: 0.64rem;
	gap: 5px;
	padding: 6px 9px;
}

.footer-trust .ijp-icon {
	color: var(--gold-400);
}

.site-footer h2 {
	color: #fff;
	font-size: 0.84rem;
	letter-spacing: 0;
	margin: 5px 0 18px;
}

.site-footer ul {
	display: grid;
	gap: 9px;
	list-style: none;
}

.site-footer li,
.site-footer li a {
	color: #9db4c6;
	font-size: 0.7rem;
}

.site-footer li a:hover {
	color: #fff;
}

.footer-country-links {
	grid-template-columns: repeat(2, 1fr);
}

.footer-country-links a {
	align-items: center;
	display: flex;
	gap: 6px;
}

.footer-country-links .country-flag {
	border-radius: 2px;
	height: 13px;
	width: 20px;
}

.footer-contact {
	display: flex;
	flex-direction: column;
}

.footer-contact > a:not(.button) {
	align-items: flex-start;
	color: #9db4c6;
	display: flex;
	font-size: 0.7rem;
	gap: 7px;
	margin-bottom: 10px;
	word-break: break-word;
}

.footer-contact .button {
	margin-top: 6px;
}

.site-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	display: flex;
	font-size: 0.65rem;
	justify-content: space-between;
	min-height: 66px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom nav {
	align-items: center;
	display: flex;
	gap: 14px;
}

.site-footer__bottom nav a {
	color: #9db4c6;
}

.legal-menu {
	display: flex !important;
	gap: 14px !important;
}

.floating-whatsapp {
	align-items: center;
	background: #0b9f63;
	border-radius: 999px;
	bottom: 24px;
	box-shadow: 0 12px 30px rgba(11, 159, 99, 0.35);
	color: #fff;
	display: flex;
	font-size: 0.72rem;
	font-weight: 800;
	gap: 8px;
	padding: 10px 16px 10px 10px;
	position: fixed;
	right: 23px;
	z-index: 999;
}

.floating-whatsapp:hover {
	background: #088452;
	color: #fff;
	transform: translateY(-2px);
}

.floating-whatsapp > span:first-child {
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	height: 37px;
	justify-content: center;
	width: 37px;
}

.mobile-bottom-nav {
	display: none;
}

.hp-field {
	height: 0 !important;
	left: -99999px !important;
	opacity: 0 !important;
	position: absolute !important;
	width: 0 !important;
}

/* Motion */
[data-aos] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 500ms ease, transform 500ms ease;
}

[data-aos].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes pin-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(242, 184, 75, 0.4); transform: scale(1); }
	50% { box-shadow: 0 0 0 13px rgba(242, 184, 75, 0); transform: scale(1.06); }
}

@keyframes float-card {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes urgent-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(214, 67, 67, 0); }
	50% { box-shadow: 0 0 0 4px rgba(214, 67, 67, 0.1); }
}

@keyframes skeleton-shimmer {
	to { background-position: -300% 0; }
}

@keyframes form-step-in {
	from { opacity: 0; transform: translateX(12px); }
	to { opacity: 1; transform: translateX(0); }
}

/* Tablet */
@media (max-width: 1180px) {
	.desktop-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.header-login {
		display: none;
	}

	.mobile-drawer-backdrop {
		background: rgba(4, 27, 49, 0.6);
		display: block;
		inset: 0;
		opacity: 0;
		position: fixed;
		pointer-events: none;
		transition: opacity 200ms ease;
		visibility: hidden;
		z-index: 1090;
	}

	.mobile-drawer {
		background: #fff;
		bottom: 0;
		display: flex;
		flex-direction: column;
		height: 100vh;
		height: 100dvh;
		max-width: 390px;
		overscroll-behavior: contain;
		overflow-y: auto;
		padding: 20px 20px max(20px, env(safe-area-inset-bottom));
		position: fixed;
		right: 0;
		top: 0;
		transform: translateX(100%);
		transition: transform 240ms ease, visibility 0s linear 240ms;
		visibility: hidden;
		width: 90vw;
		z-index: 1100;
	}

	.drawer-open .mobile-drawer {
		transform: translateX(0);
		transition-delay: 0s;
		visibility: visible;
	}

	.drawer-open .mobile-drawer-backdrop {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}

	.admin-bar .mobile-drawer {
		height: calc(100dvh - 32px);
		top: 32px;
	}

	.mobile-drawer__header {
		align-items: center;
		border-bottom: 1px solid var(--border);
		display: flex;
		justify-content: space-between;
		padding-bottom: 15px;
	}

	.mobile-drawer__header > button {
		align-items: center;
		background: var(--surface-soft);
		border: 0;
		border-radius: 50%;
		display: flex;
		height: 38px;
		justify-content: center;
		width: 38px;
	}

	.mobile-menu {
		display: grid;
		list-style: none;
		margin-top: 15px;
	}

	.mobile-menu a {
		border-bottom: 1px solid var(--border);
		color: var(--ink);
		display: block;
		font-size: 0.86rem;
		font-weight: 650;
		padding: 12px 5px;
	}

	.mobile-menu .sub-menu {
		list-style: none;
		padding-left: 15px;
	}

	.mobile-country-list {
		margin-top: 22px;
	}

	.mobile-country-list > strong {
		font-size: 0.78rem;
	}

	.mobile-country-list > div {
		display: grid;
		gap: 8px;
		grid-template-columns: repeat(2, 1fr);
		margin-top: 11px;
	}

	.mobile-country-list a {
		align-items: center;
		background: var(--surface-soft);
		border-radius: 8px;
		color: var(--ink);
		display: flex;
		font-size: 0.7rem;
		gap: 7px;
		padding: 8px;
	}

	.mobile-country-list .country-flag {
		height: 18px;
		width: 27px;
	}

	.mobile-drawer__actions {
		display: grid;
		gap: 9px;
		margin-top: auto;
		padding-top: 25px;
	}

	.hero__inner {
		grid-template-columns: 1fr 0.85fr;
	}

	.world-globe {
		width: 330px;
	}

	.world-orbit--outer {
		height: 380px;
		width: 380px;
	}

	.world-orbit--inner {
		height: 280px;
		width: 280px;
	}

	.floating-job--one {
		left: -20px;
	}

	.country-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.process-timeline {
		gap: 34px 14px;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.process-timeline::before {
		display: none;
	}

	.statistics__grid {
		gap: 20px 0;
		grid-template-columns: repeat(3, 1fr);
	}

	.statistics__grid > div:nth-child(3) {
		border-right: 0;
	}

	.employer-section__inner {
		gap: 55px;
	}

	.site-footer__grid {
		grid-template-columns: 1.3fr repeat(2, 1fr);
	}

	.footer-about {
		grid-row: span 2;
	}
}

@media (max-width: 900px) {
	.section {
		padding-block: 72px;
	}

	.hero {
		min-height: auto;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding-bottom: 0;
	}

	.hero__content {
		max-width: 720px;
	}

	.hero__visual {
		display: none;
	}

	.hero__search-wrap {
		margin-bottom: 0;
		max-width: 100%;
		padding-block: 24px;
	}

	.hero-search {
		grid-template-columns: 1fr 1fr;
		max-width: 100%;
		width: 100%;
	}

	.hero-search__field,
	.hero-search input,
	.hero-search select,
	.hero-search__submit {
		max-width: 100%;
		min-width: 0;
	}

	.hero-search__field--keyword {
		grid-column: 1 / -1;
	}

	.hero-search__field:nth-child(3) {
		border-right: 0;
	}

	.hero-search__submit {
		grid-column: 1 / -1;
		margin: 3px 0 0;
	}

	.trust-strip {
		padding-top: 24px;
	}

	.trust-strip__grid {
		gap: 15px 0;
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-strip__grid > div:nth-child(2) {
		border-right: 0;
	}

	.country-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-section__grid,
	.employer-section__inner,
	.faq-preview__grid,
	.career-cta__inner,
	.page-hero__split,
	.newsletter-band {
		grid-template-columns: 1fr;
	}

	.why-section__content {
		max-width: 720px;
	}

	.employer-section {
		background: var(--blue-50);
	}

	.employer-section__visual {
		max-width: 600px;
	}

	.career-cta__inner > div:last-child {
		justify-content: flex-start;
	}

	.job-hero__facts {
		grid-template-columns: repeat(3, 1fr);
	}

	.job-hero__facts > div:nth-child(3) {
		border-right: 0;
	}

	.job-detail-layout {
		grid-template-columns: 1fr;
	}

	.application-sidebar {
		position: static;
	}

	.application-card {
		max-width: 650px;
	}

	.jobs-layout {
		grid-template-columns: 1fr;
	}

	.job-filters {
		border-radius: 0;
		bottom: 0;
		left: 0;
		max-width: 360px;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transform: translateX(-100%);
		transition: transform 220ms ease;
		width: 88vw;
		z-index: 1100;
	}

	.job-filters.is-open {
		transform: translateX(0);
	}

	.job-filters__mobile-close {
		align-items: center;
		background: var(--surface-soft);
		border: 0;
		border-radius: 50%;
		display: flex;
		height: 35px;
		justify-content: center;
		position: absolute;
		right: 14px;
		top: 12px;
		width: 35px;
	}

	.filter-mobile-toggle {
		align-items: center;
		background: var(--blue-50);
		border: 1px solid #cce5f4;
		border-radius: 8px;
		color: var(--blue-700);
		display: inline-flex;
		font-size: 0.72rem;
		font-weight: 700;
		gap: 6px;
		margin-bottom: 8px;
		padding: 7px 10px;
	}

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

	.employer-form-aside {
		position: static;
	}

	.login-page {
		background: linear-gradient(var(--navy-950) 0 47%, var(--surface-soft) 47%);
	}

	.login-layout {
		gap: 55px;
		grid-template-columns: 1fr;
	}

	.login-story {
		padding-top: 35px;
	}

	.login-card {
		margin-inline: auto;
		max-width: 520px;
		width: 100%;
	}

	.candidate-dashboard {
		grid-template-columns: 1fr;
	}

	.dashboard-sidebar {
		position: static;
	}

	.dashboard-sidebar nav {
		grid-template-columns: repeat(5, 1fr);
	}

	.dashboard-sidebar nav button {
		justify-content: center;
	}

	.dashboard-sidebar nav button .ijp-icon {
		display: none;
	}

	.dashboard-logout {
		justify-content: center;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile */
@media (max-width: 640px) {
	body {
		font-size: 15px;
		padding-bottom: calc(72px + env(safe-area-inset-bottom));
	}

	.container {
		padding-inline: 17px;
	}

	.site-topbar__contacts a:nth-child(2),
	.site-topbar__contacts > span,
	.site-topbar__extras > span,
	.site-topbar__contacts a span {
		display: none;
	}

	.site-topbar__inner {
		justify-content: space-between;
	}

	.site-topbar__contacts a:first-child span {
		display: inline;
	}

	.site-header,
	.site-header.is-scrolled {
		height: 66px;
	}

	.site-brand__mark {
		border-radius: 10px;
		height: 38px;
		width: 38px;
	}

	.site-brand__text {
		font-size: 0.88rem;
	}

	.site-header__actions .button {
		display: none;
	}

	.section {
		padding-block: 58px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 27px;
	}

	.section-heading h2 {
		font-size: 2rem;
	}

	.hero__inner {
		min-height: auto;
		padding-bottom: 0;
		padding-top: 45px;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__proof {
		margin-bottom: 5px;
	}

	.hero-search {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 100%;
		padding: 9px;
		width: 100%;
	}

	.hero__search-wrap {
		margin-bottom: 0;
		max-width: 100%;
	}

	.hero-search__field,
	.hero-search input,
	.hero-search select,
	.hero-search__submit {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.hero-search__field,
	.hero-search__field--keyword {
		border-bottom: 1px solid var(--border);
		border-right: 0;
		grid-column: auto;
		padding-block: 9px 10px;
	}

	.hero-search__submit {
		grid-column: auto;
		justify-content: center;
		margin: 9px 0 0;
	}

	.hero__popular {
		display: none;
	}

	.trust-strip {
		padding-bottom: 16px;
		padding-top: 24px;
	}

	.trust-strip__grid {
		grid-template-columns: 1fr;
	}

	.trust-strip__grid > div {
		border-bottom: 1px solid var(--border);
		border-right: 0;
		padding: 10px 0;
	}

	.trust-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.country-grid,
	.category-grid,
	.job-grid,
	.job-results__grid,
	.office-grid,
	.blog-grid,
	.contact-methods,
	.category-grid--directory {
		grid-template-columns: 1fr;
	}

	.job-grid,
	.job-card,
	.job-card__top,
	.job-card__country,
	.job-card__country span {
		min-width: 0;
	}

	.job-card {
		border-radius: 14px;
		box-shadow: 0 4px 14px rgba(6, 42, 76, 0.055);
		min-height: 0;
		padding: 16px;
	}

	.job-card:hover {
		box-shadow: 0 6px 18px rgba(6, 42, 76, 0.08);
		transform: none;
	}

	.job-card__country {
		max-width: calc(100% - 46px);
	}

	.job-card__country strong,
	.job-card__country small {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.job-card__badges {
		gap: 5px;
		margin-top: 12px;
		min-height: 0;
	}

	.job-card__badges .badge {
		font-size: 0.56rem;
		padding: 3px 7px;
		white-space: nowrap;
	}

	.job-card__footer {
		display: grid;
		gap: 8px;
		grid-template-columns: minmax(0, 1fr) auto;
		padding-top: 13px;
	}

	.job-card__footer > span {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.job-card__footer > div {
		gap: 8px;
		white-space: nowrap;
	}

	.job-card__footer .button-link {
		font-size: 0.7rem;
	}

	.job-card__footer .button {
		font-size: 0.68rem;
		min-height: 34px;
		padding: 7px 10px;
	}

	.country-card {
		min-height: 245px;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.process-timeline {
		gap: 30px 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.statistics__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.statistics__grid > div:nth-child(3) {
		border-right: 1px solid rgba(255, 255, 255, 0.16);
	}

	.statistics__grid > div:nth-child(even) {
		border-right: 0;
	}

	.statistics strong {
		font-size: 1.7rem;
	}

	.job-tabs {
		width: 100%;
	}

	.job-tabs button {
		flex: 1;
	}

	.employer-section__visual {
		min-height: 390px;
		padding: 48px 19px;
	}

	.talent-stack > div:nth-child(2) {
		margin-left: 13px;
		margin-right: -8px;
	}

	.testimonial-card {
		flex-basis: 100%;
	}

	.faq-preview__grid,
	.employer-section__inner {
		gap: 40px;
	}

	.career-cta {
		padding-block: 57px;
	}

	.career-cta__inner {
		gap: 28px;
	}

	.career-cta__inner > div:last-child {
		align-items: stretch;
		flex-direction: column;
	}

	.page-hero {
		padding-block: 45px 55px;
	}

	.page-hero h1,
	.page-hero--compact h1 {
		font-size: 2.45rem;
	}

	.page-hero__content {
		align-items: flex-start;
		flex-direction: column;
	}

	.page-hero__stats {
		flex-basis: auto;
		width: 100%;
	}

	.archive-search {
		grid-template-columns: 1fr;
		margin-bottom: 0;
		max-width: 100%;
		width: 100%;
	}

	.archive-search > div,
	.archive-search input,
	.archive-search select,
	.archive-search .button {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.archive-search .button {
		justify-content: center;
	}

	.jobs-layout {
		padding-top: 64px;
	}

	.job-results__toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.results-view {
		justify-content: space-between;
		width: 100%;
	}

	.job-hero {
		padding-top: 25px;
	}

	.job-hero__grid,
	.job-hero__main {
		align-items: flex-start;
		flex-direction: column;
	}

	.job-hero__brand {
		height: 63px;
		width: 63px;
	}

	.job-hero__actions {
		width: 100%;
	}

	.job-hero__actions > * {
		flex: 1;
	}

	.job-hero__facts {
		grid-template-columns: 1fr 1fr;
	}

	.job-hero__facts > div,
	.job-hero__facts > div:nth-child(3) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		border-right: 1px solid rgba(255, 255, 255, 0.12);
		padding: 13px;
	}

	.job-hero__facts > div:nth-child(even) {
		border-right: 0;
	}

	.job-hero__facts > div:last-child {
		border-bottom: 0;
		grid-column: 1 / -1;
	}

	.job-detail-layout {
		padding-top: 35px;
	}

	.job-content-section,
	.recruitment-mini-process {
		padding: 20px;
	}

	.detail-table {
		grid-template-columns: 1fr;
	}

	.detail-table > div:nth-last-child(-n+2) {
		border-bottom: 1px solid var(--border);
	}

	.detail-table > div:last-child {
		border-bottom: 0;
	}

	.recruitment-mini-process > div {
		align-items: stretch;
		display: grid;
		gap: 11px;
		grid-template-columns: 1fr 1fr;
	}

	.recruitment-mini-process i {
		display: none;
	}

	.form-row,
	.form-grid,
	.document-grid,
	.dashboard-documents,
	.dashboard-stat-grid,
	.dashboard-panel .job-grid {
		grid-template-columns: 1fr;
	}

	.form-shell,
	.login-card,
	.dashboard-panel {
		border-radius: 14px;
		padding: 20px;
	}

	.form-progress ol {
		gap: 5px;
	}

	.form-progress li {
		flex-direction: column;
		text-align: center;
	}

	.form-progress li div {
		display: none;
	}

	.form-step__actions {
		gap: 8px;
	}

	.form-step__actions .button {
		padding-inline: 14px;
	}

	.form-help-strip {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.employer-benefit-grid {
		grid-template-columns: 1fr 1fr;
	}

	.login-layout {
		gap: 35px;
		padding-block: 45px;
	}

	.login-story h1 {
		font-size: 2.6rem;
	}

	.dashboard-sidebar nav {
		grid-template-columns: repeat(2, 1fr);
	}

	.dashboard-welcome,
	.dashboard-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.profile-completion {
		align-items: flex-start;
		flex-direction: column;
	}

	.application-list article {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.status-pill {
		margin-left: 52px;
	}

	.directory-toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.directory-toolbar label,
	.directory-toolbar input {
		width: 100%;
	}

	.site-footer__newsletter {
		padding-bottom: 55px;
	}

	.inline-alert-form {
		align-items: stretch;
		background: transparent;
		border: 0;
		border-radius: 0;
		flex-direction: column;
		gap: 9px;
	}

	.inline-alert-form input {
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 9px;
		flex: auto;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-about,
	.footer-contact {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding-block: 16px;
	}

	.floating-whatsapp {
		display: none;
	}

	.floating-whatsapp > span:last-child {
		display: none;
	}

	.mobile-bottom-nav {
		align-items: center;
		background: #fff;
		border-top: 1px solid var(--border);
		bottom: 0;
		box-shadow: 0 -7px 23px rgba(4, 27, 49, 0.08);
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		left: 0;
		min-height: calc(72px + env(safe-area-inset-bottom));
		padding-bottom: env(safe-area-inset-bottom);
		position: fixed;
		right: 0;
		width: 100%;
		z-index: 1000;
	}

	.mobile-bottom-nav a {
		align-items: center;
		color: var(--muted);
		display: flex;
		flex-direction: column;
		font-size: clamp(0.5rem, 2.25vw, 0.62rem);
		gap: 3px;
		height: 72px;
		justify-content: center;
		min-width: 0;
		overflow: hidden;
		padding-inline: 2px;
		text-align: center;
	}

	.mobile-bottom-nav a:focus-visible {
		background: var(--blue-50);
		color: var(--blue-700);
		outline: 2px solid var(--blue-700);
		outline-offset: -2px;
	}

	.mobile-bottom-nav a span {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.mobile-bottom-nav a:hover {
		color: var(--blue-700);
	}

	.mobile-bottom-nav__whatsapp {
		color: var(--green-700) !important;
	}

	.mobile-apply-bar {
		align-items: center;
		background: #fff;
		border-top: 1px solid var(--border);
		bottom: calc(72px + env(safe-area-inset-bottom));
		box-shadow: 0 -7px 23px rgba(4, 27, 49, 0.1);
		display: flex;
		justify-content: space-between;
		left: 0;
		padding: 9px 14px;
		position: fixed;
		right: 0;
		z-index: 999;
	}

	.mobile-apply-bar > div {
		display: flex;
		flex-direction: column;
	}

	.mobile-apply-bar small {
		color: var(--muted);
		font-size: 0.59rem;
	}

	.mobile-apply-bar strong {
		font-size: 0.78rem;
	}

	.has-mobile-apply-bar {
		padding-bottom: calc(138px + env(safe-area-inset-bottom));
	}
}

@media (min-width: 641px) and (max-width: 782px) {
	body {
		padding-bottom: calc(72px + env(safe-area-inset-bottom));
	}

	.floating-whatsapp {
		display: none;
	}

	.mobile-bottom-nav {
		align-items: center;
		background: #fff;
		border-top: 1px solid var(--border);
		bottom: 0;
		box-shadow: 0 -7px 23px rgba(4, 27, 49, 0.08);
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		left: 0;
		min-height: calc(72px + env(safe-area-inset-bottom));
		padding-bottom: env(safe-area-inset-bottom);
		position: fixed;
		right: 0;
		width: 100%;
		z-index: 1000;
	}

	.mobile-bottom-nav a {
		align-items: center;
		color: var(--muted);
		display: flex;
		flex-direction: column;
		font-size: 0.62rem;
		gap: 3px;
		height: 72px;
		justify-content: center;
		min-width: 0;
	}

	.mobile-bottom-nav__whatsapp {
		color: var(--green-700) !important;
	}

	.mobile-apply-bar {
		bottom: calc(72px + env(safe-area-inset-bottom));
	}

	.has-mobile-apply-bar {
		padding-bottom: calc(138px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 782px) {
	.admin-bar .mobile-drawer {
		height: calc(100dvh - 46px);
		top: 46px;
	}
}

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

	[data-aos] {
		opacity: 1;
		transform: none;
	}
}

/* =========================================================
   v1.1.30 — Career Guides / Blog Knowledge Centre
   ========================================================= */
.guides-hub{background:#fff}.guides-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,var(--navy-950) 0%,var(--navy-900) 58%,var(--blue-700) 100%);color:#fff;padding:76px 0 70px}.guides-hero:before{content:"";position:absolute;inset:-25% auto auto 58%;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(31,151,255,.2),transparent 67%);pointer-events:none}.guides-hero:after{content:"";position:absolute;right:-110px;bottom:-190px;width:420px;height:420px;border:1px solid rgba(255,255,255,.08);border-radius:50%;box-shadow:0 0 0 55px rgba(255,255,255,.025),0 0 0 110px rgba(255,255,255,.018);pointer-events:none}.guides-hero__grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.2fr) minmax(350px,.8fr);gap:64px;align-items:center}.guides-hero__copy h1{max-width:850px;margin:10px 0 18px;color:#fff;font-size:clamp(2.55rem,5vw,4.7rem);line-height:1.02;letter-spacing:-.045em}.guides-hero__copy>p{max-width:760px;margin:0;color:#c5d6e5;font-size:1.01rem;line-height:1.75}.guides-hero__actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:29px}.guides-hero__secondary{display:inline-flex;align-items:center;gap:8px;color:#fff;font-size:.82rem;font-weight:750}.guides-hero__secondary:hover{color:#fff;opacity:.82}.guides-search-card{padding:27px;border:1px solid rgba(255,255,255,.16);border-radius:22px;background:rgba(255,255,255,.09);box-shadow:0 24px 55px rgba(0,17,36,.25);backdrop-filter:blur(10px)}.guides-search-card__icon{display:grid;place-items:center;width:48px;height:48px;margin-bottom:18px;border-radius:14px;background:rgba(255,255,255,.13);color:#fff}.guides-search-card strong{display:block;color:#fff;font-size:1.06rem}.guides-search-card p{margin:7px 0 18px;color:#c7d7e4;font-size:.77rem;line-height:1.6}.guides-search{display:grid;grid-template-columns:1fr 46px;gap:7px;padding:6px;border-radius:14px;background:#fff}.guides-search input{min-width:0;height:44px;padding:0 12px;border:0!important;outline:0;background:transparent!important;color:var(--ink);font-size:.78rem;box-shadow:none!important}.guides-search button{display:grid;place-items:center;width:46px;height:44px;padding:0;border:0;border-radius:10px;background:var(--blue-700);color:#fff;cursor:pointer}.guides-search button:hover{background:var(--navy-900)}
.guides-topics{position:relative;z-index:2;border-bottom:1px solid var(--border);background:#fff;box-shadow:0 7px 22px rgba(21,44,67,.04)}.guides-topics__inner{display:flex;align-items:center;gap:19px;min-height:78px}.guides-topics__inner>span{flex:0 0 auto;color:var(--muted);font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.guides-topic-chips{display:flex;align-items:center;gap:8px;overflow-x:auto;scrollbar-width:none;padding:10px 0}.guides-topic-chips::-webkit-scrollbar{display:none}.guides-topic-chips a{display:inline-flex;align-items:center;gap:7px;flex:0 0 auto;padding:9px 12px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--navy-900);font-size:.72rem;font-weight:750;white-space:nowrap;transition:.18s ease}.guides-topic-chips a:hover,.guides-topic-chips a.is-all{border-color:#c8dffc;background:var(--blue-50);color:var(--blue-700)}.guides-topic-chips small{display:grid;place-items:center;min-width:21px;height:21px;padding:0 5px;border-radius:999px;background:#edf3f8;color:var(--muted);font-size:.61rem}.guides-topic-chips a.is-all small{background:#fff}
.guides-featured-section{padding-top:76px;padding-bottom:22px}.guides-section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:25px}.guides-section-heading h2{margin:4px 0 0;font-size:clamp(1.8rem,3vw,2.65rem);letter-spacing:-.03em}.guides-section-heading p{max-width:730px;margin:8px 0 0;color:var(--muted);font-size:.85rem}.guides-section-heading--center{justify-content:center;text-align:center}.guides-section-heading--center>div{max-width:760px}.guide-featured-card{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(0,.97fr);min-height:410px;overflow:hidden;border:1px solid var(--border);border-radius:24px;background:#fff;box-shadow:0 20px 50px rgba(26,54,80,.08)}.guide-featured-card__media{position:relative;min-height:410px;overflow:hidden;background:linear-gradient(135deg,var(--navy-900),var(--blue-600));color:#fff}.guide-featured-card__media img{width:100%;height:100%;min-height:410px;object-fit:cover;transition:transform .4s ease}.guide-featured-card:hover .guide-featured-card__media img{transform:scale(1.025)}.guide-featured-card__placeholder{display:grid;place-items:center;min-height:410px;background:radial-gradient(circle at 70% 25%,rgba(242,184,75,.55),transparent 23%),linear-gradient(135deg,var(--navy-900),var(--blue-600))}.guide-featured-card__content{display:flex;flex-direction:column;justify-content:center;padding:42px 44px}.guide-featured-card__meta{display:flex;gap:8px;flex-wrap:wrap}.guide-featured-card__meta span{padding:6px 9px;border-radius:999px;background:#f4f8fb;color:var(--blue-700);font-size:.64rem;font-weight:800;text-transform:uppercase}.guide-featured-card__content h2{margin:17px 0 13px;font-size:clamp(1.8rem,3vw,2.65rem);line-height:1.13;letter-spacing:-.03em}.guide-featured-card__content h2 a{color:var(--navy-950)}.guide-featured-card__content>p{margin:0;color:var(--muted);font-size:.86rem;line-height:1.75}.guide-featured-card__actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:25px}.guide-featured-card__actions>span{display:inline-flex;align-items:center;gap:7px;color:#718399;font-size:.7rem;font-weight:650}
.guides-latest{padding-top:58px;padding-bottom:75px}.guides-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.guide-card{display:flex;flex-direction:column;min-width:0;overflow:hidden;border:1px solid var(--border);border-radius:18px;background:#fff;box-shadow:0 5px 18px rgba(25,52,78,.035);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.guide-card:hover{transform:translateY(-4px);border-color:#cddfee;box-shadow:0 18px 36px rgba(25,52,78,.095)}.guide-card__image{position:relative;display:flex;align-items:center;justify-content:center;height:210px;overflow:hidden;background:radial-gradient(circle at 73% 22%,rgba(242,184,75,.45),transparent 23%),linear-gradient(135deg,var(--navy-900),var(--blue-600));color:#fff}.guide-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.guide-card:hover .guide-card__image img{transform:scale(1.035)}.guide-card__category{position:absolute;left:13px;bottom:13px;max-width:calc(100% - 26px);overflow:hidden;text-overflow:ellipsis;padding:7px 10px;border:1px solid rgba(255,255,255,.28);border-radius:999px;background:rgba(6,38,66,.82);color:#fff;font-size:.62rem;font-weight:800;white-space:nowrap;backdrop-filter:blur(6px)}.guide-card__body{display:flex;flex:1;flex-direction:column;padding:20px 21px 21px}.guide-card__meta{display:flex;justify-content:space-between;gap:8px;color:#7a8b9d;font-size:.63rem;font-weight:700;text-transform:uppercase}.guide-card__body h3{margin:10px 0 9px;font-size:1.13rem;line-height:1.28}.guide-card__body h3 a{color:var(--navy-950)}.guide-card__body p{margin:0 0 18px;color:var(--muted);font-size:.77rem;line-height:1.62}.guide-card__read{display:inline-flex;align-items:center;gap:7px;margin-top:auto;color:var(--blue-700);font-size:.73rem;font-weight:800}.guides-empty-state{grid-column:1/-1;padding:58px 22px;border:1px dashed var(--border);border-radius:18px;text-align:center;background:#fbfdff}.guides-empty-state>span{display:grid;place-items:center;width:56px;height:56px;margin:0 auto 13px;border-radius:17px;background:var(--blue-50);color:var(--blue-700)}.guides-empty-state h3{margin:0 0 6px}.guides-empty-state p{margin:0;color:var(--muted);font-size:.8rem}
.guides-resources-section{padding-top:70px;padding-bottom:80px;background:linear-gradient(180deg,#f8fbfe 0%,#f4f8fb 100%);border-top:1px solid #edf2f6}.guides-resource-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;max-width:1030px;margin:0 auto}.guides-resource-card{display:grid;grid-template-columns:48px minmax(0,1fr) 20px;align-items:center;gap:14px;padding:18px;border:1px solid #dae6ef;border-radius:16px;background:#fff;color:var(--navy-900);box-shadow:0 7px 18px rgba(25,52,78,.035);transition:.18s ease}.guides-resource-card:hover{transform:translateY(-2px);border-color:#bed5e9;box-shadow:0 14px 28px rgba(25,52,78,.08)}.guides-resource-card>span{display:grid;place-items:center;width:48px;height:48px;border-radius:13px;background:var(--blue-50);color:var(--blue-700)}.guides-resource-card strong{display:block;font-size:.86rem}.guides-resource-card small{display:block;margin-top:3px;color:var(--muted);font-size:.69rem;line-height:1.45}.guides-resource-card>.ijp-icon{color:#8294a6}.guides-resource-card--whatsapp>span{background:#e9f9f1;color:#16945a}.guides-safety-strip{background:#fff8e8;border-top:1px solid #f2e1ad;border-bottom:1px solid #f2e1ad}.guides-safety-strip__inner{display:flex;align-items:flex-start;gap:13px;padding-top:22px;padding-bottom:22px}.guides-safety-strip__icon{display:grid;place-items:center;flex:0 0 auto;width:42px;height:42px;border-radius:12px;background:#ffefbe;color:#8c6105}.guides-safety-strip strong{display:block;color:#684a0c;font-size:.82rem}.guides-safety-strip p{max-width:980px;margin:4px 0 0;color:#82631f;font-size:.71rem;line-height:1.55}
.article-hero--guide{padding-bottom:92px}.article-hero__summary{max-width:760px;margin:16px 0;color:#c5d6e5;font-size:.92rem;line-height:1.68}.article-meta--rich{display:flex;align-items:center;gap:14px;flex-wrap:wrap}.article-meta--rich span{display:inline-flex;align-items:center;gap:6px}.article-layout{display:grid;grid-template-columns:minmax(0,760px) minmax(260px,310px);justify-content:center;gap:55px;align-items:start}.article-layout .article-body{min-width:0}.article-help-card{position:sticky;top:110px;margin-top:56px;padding:22px;border:1px solid var(--border);border-radius:18px;background:#fff;box-shadow:0 14px 32px rgba(25,52,78,.07)}.article-help-card h2{margin:5px 0 17px;font-size:1.25rem}.article-help-card>a{display:grid;grid-template-columns:38px minmax(0,1fr) 16px;align-items:center;gap:10px;padding:12px 0;border-top:1px solid #edf1f4;color:var(--navy-900)}.article-help-card>a>span{display:grid;place-items:center;width:36px;height:36px;border-radius:10px;background:var(--blue-50);color:var(--blue-700)}.article-help-card>a strong{display:block;font-size:.73rem}.article-help-card>a small{display:block;margin-top:2px;color:var(--muted);font-size:.63rem}.article-help-card>a>.ijp-icon{color:#8899aa}.article-help-card>a.is-whatsapp>span{background:#e9f9f1;color:#16945a}.related-guides-section{padding-top:70px;background:#f8fbfe;border-top:1px solid #edf2f6}.guides-grid--related{grid-template-columns:repeat(3,minmax(0,1fr))}
@media(max-width:1024px){.guides-hero__grid{grid-template-columns:1fr;gap:36px}.guides-search-card{max-width:650px}.guide-featured-card{grid-template-columns:1fr 1fr}.guide-featured-card__content{padding:32px}.guides-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.article-layout{grid-template-columns:minmax(0,720px);gap:0}.article-help-card{position:static;margin-top:0;margin-bottom:70px}.guides-grid--related{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:782px){.guides-hero{padding:54px 0 50px}.guides-hero__copy h1{font-size:clamp(2.25rem,11vw,3.25rem)}.guides-hero__copy>p{font-size:.88rem}.guides-search-card{padding:20px}.guides-topics__inner{align-items:flex-start;flex-direction:column;gap:5px;padding-top:14px;padding-bottom:10px}.guides-topic-chips{width:100%}.guides-featured-section{padding-top:52px}.guides-section-heading{align-items:flex-start;flex-direction:column;gap:10px}.guide-featured-card{grid-template-columns:1fr;min-height:0}.guide-featured-card__media,.guide-featured-card__media img,.guide-featured-card__placeholder{min-height:260px;height:260px}.guide-featured-card__content{padding:27px 24px}.guide-featured-card__content h2{font-size:1.65rem}.guides-latest{padding-top:44px;padding-bottom:58px}.guides-grid,.guides-grid--related{grid-template-columns:1fr}.guide-card__image{height:225px}.guides-resource-grid{grid-template-columns:1fr}.article-hero--guide{padding-bottom:72px}.article-hero--guide h1{font-size:clamp(2.2rem,10vw,3.2rem)}.article-layout{display:block}.article-layout .article-body{padding-top:45px;padding-bottom:45px}.article-help-card{margin-bottom:50px}.related-guides-section{padding-top:52px}.guides-safety-strip__inner{padding-left:18px;padding-right:18px}}
@media(max-width:480px){.guides-hero__actions{align-items:stretch;flex-direction:column}.guides-hero__actions .button{justify-content:center;width:100%}.guides-hero__secondary{justify-content:center}.guides-search{grid-template-columns:minmax(0,1fr) 44px}.guide-featured-card__media,.guide-featured-card__media img,.guide-featured-card__placeholder{height:220px;min-height:220px}.guide-featured-card__content{padding:23px 20px}.guide-featured-card__actions{align-items:stretch;flex-direction:column}.guide-featured-card__actions .button{justify-content:center}.guide-card__image{height:205px}.guides-resource-card{grid-template-columns:42px minmax(0,1fr) 16px;padding:15px}.guides-resource-card>span{width:42px;height:42px}.guides-safety-strip__inner{gap:10px}.guides-safety-strip__icon{width:38px;height:38px}.article-meta--rich{gap:9px}.article-meta--rich span{width:100%}}


/* =========================================================
   v1.1.31 — Career Guide single post perfect alignment + sidebar
   ========================================================= */
.single-guide-page{background:#fff}.single-article--guide{overflow:visible}.article-hero--guide{position:relative;overflow:hidden;padding:54px 0 86px;background:radial-gradient(circle at 73% 22%,rgba(21,147,232,.23),transparent 25%),linear-gradient(135deg,#04213a 0%,#062d4f 58%,#0b4d7d 100%)}.article-hero--guide:after{content:"";position:absolute;right:-180px;top:-210px;width:520px;height:520px;border:1px solid rgba(255,255,255,.06);border-radius:50%;box-shadow:0 0 0 65px rgba(255,255,255,.022),0 0 0 130px rgba(255,255,255,.015);pointer-events:none}.article-hero__layout{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,820px) minmax(260px,310px);justify-content:center;gap:58px;align-items:end}.article-hero__main{min-width:0}.article-hero--guide .breadcrumbs{margin:0 0 24px}.article-hero__badges{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:15px}.article-guide-badge,.article-category-badge{display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:rgba(255,255,255,.08);color:#fff;font-size:.66rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}.article-category-badge{background:rgba(27,138,218,.2);border-color:rgba(118,197,255,.23);color:#cfeeff}.article-hero--guide h1{max-width:850px;margin:0;color:#fff;font-size:clamp(2.5rem,4.7vw,4.45rem);line-height:1.035;letter-spacing:-.045em}.article-hero__summary{max-width:760px;margin:20px 0 18px;color:#c7d8e6;font-size:.98rem;line-height:1.72}.article-meta--rich{display:flex;align-items:center;gap:15px;flex-wrap:wrap;color:#bbcfde}.article-meta--rich span{display:inline-flex;align-items:center;gap:6px}.article-hero__side{padding:20px;border:1px solid rgba(255,255,255,.13);border-radius:18px;background:rgba(255,255,255,.075);box-shadow:0 16px 38px rgba(0,15,31,.18);backdrop-filter:blur(8px)}.article-hero__side>span{display:block;color:#8fcfff;font-size:.62rem;font-weight:800;text-transform:uppercase;letter-spacing:.09em}.article-hero__side>strong{display:block;margin:6px 0 7px;color:#fff;font-size:1.05rem;line-height:1.3}.article-hero__side>p{margin:0;color:#bfd0dd;font-size:.71rem;line-height:1.58}.article-hero__side>a{display:inline-flex;align-items:center;gap:7px;margin-top:14px;color:#fff;font-size:.7rem;font-weight:750}.article-featured--wide{max-width:1188px;margin-top:-44px}.article-featured--wide img{display:block;max-height:570px;object-fit:cover;border:6px solid #fff;border-radius:20px;box-shadow:0 18px 45px rgba(18,49,78,.15)}
.article-layout--guide{display:grid;grid-template-columns:minmax(0,820px) minmax(270px,310px);justify-content:center;gap:58px;align-items:start;padding-top:10px}.article-main-column{min-width:0}.article-layout--guide .article-body{padding:52px 0 28px;font-size:1rem;line-height:1.82;color:#334a5f}.article-layout--guide .article-body>p:first-child{font-size:1.06rem;line-height:1.8;color:#274259}.article-layout--guide .article-body p{margin:0 0 1.28em}.article-layout--guide .article-body h2,.article-layout--guide .article-body h3{scroll-margin-top:125px;color:var(--navy-950);letter-spacing:-.025em}.article-layout--guide .article-body h2{margin:2.05em 0 .72em;padding-top:.15em;font-size:1.65rem;line-height:1.25}.article-layout--guide .article-body h3{margin:1.7em 0 .62em;font-size:1.25rem}.article-layout--guide .article-body ul,.article-layout--guide .article-body ol{margin:1em 0 1.55em;padding-left:1.35em}.article-layout--guide .article-body li{margin:.55em 0;padding-left:.18em}.article-layout--guide .article-body a{color:var(--blue-700);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}.article-layout--guide .article-body blockquote{margin:1.8em 0;padding:18px 21px;border-left:4px solid var(--blue-600);border-radius:0 12px 12px 0;background:#f5faff;color:#24465f}.article-layout--guide .article-body img{max-width:100%;height:auto;border-radius:14px}.article-layout--guide .article-body table{width:100%;margin:1.5em 0;border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--border);border-radius:12px}.article-layout--guide .article-body th,.article-layout--guide .article-body td{padding:11px 12px;border-bottom:1px solid var(--border);font-size:.78rem;text-align:left}.article-layout--guide .article-body th{background:#f6f9fc;color:var(--navy-900)}.article-safety-cta{margin-top:42px;padding:20px 21px;border-radius:15px}.article-safety-cta strong{display:block;margin-bottom:3px}.article-safety-cta p{font-size:.78rem;line-height:1.62}.article-bottom-actions{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 0 70px;border-top:1px solid #e9eff4}.article-bottom-actions a{display:inline-flex;align-items:center;gap:7px;font-size:.75rem;font-weight:800}.article-bottom-actions__back{color:var(--blue-700)}.article-bottom-actions__share{padding:10px 13px;border-radius:10px;background:#e9f9f1;color:#147f4d}
.article-sidebar{position:sticky;top:105px;display:grid;gap:14px;padding:52px 0 70px}.article-side-card{overflow:hidden;padding:20px;border:1px solid #dde7ef;border-radius:17px;background:#fff;box-shadow:0 12px 30px rgba(25,52,78,.055)}.article-side-card__kicker{display:block;color:var(--blue-700);font-size:.61rem;font-weight:850;text-transform:uppercase;letter-spacing:.09em}.article-side-card h2{margin:5px 0 14px;color:var(--navy-950);font-size:1.09rem;line-height:1.3}.article-toc{display:grid;gap:1px}.article-toc a{position:relative;display:block;padding:8px 8px 8px 14px;border-radius:8px;color:#40596e;font-size:.69rem;font-weight:680;line-height:1.4;transition:.16s ease}.article-toc a:before{content:"";position:absolute;left:3px;top:13px;width:4px;height:4px;border-radius:50%;background:#82a8c6}.article-toc a:hover{background:#f3f8fc;color:var(--blue-700)}.article-toc .toc-level-3{padding-left:24px;color:#647a8e;font-size:.66rem}.article-toc .toc-level-3:before{left:13px;background:#aec4d5}.article-help-card{position:static;top:auto;margin:0;padding:20px}.article-help-links{display:grid}.article-help-links>a{display:grid;grid-template-columns:38px minmax(0,1fr) 16px;align-items:center;gap:10px;padding:12px 0;border-top:1px solid #edf1f4;color:var(--navy-900)}.article-help-links>a>span{display:grid;place-items:center;width:36px;height:36px;border-radius:10px;background:var(--blue-50);color:var(--blue-700)}.article-help-links>a strong{display:block;font-size:.72rem}.article-help-links>a small{display:block;margin-top:2px;color:var(--muted);font-size:.62rem}.article-help-links>a>.ijp-icon{color:#8899aa}.article-help-links>a.is-whatsapp>span{background:#e9f9f1;color:#16945a}.article-check-card{background:linear-gradient(180deg,#fffaf0,#fffdf8);border-color:#efe0b9}.article-check-card .article-side-card__kicker{color:#956908}.article-check-card ul{display:grid;gap:10px;margin:0;padding:0;list-style:none}.article-check-card li{display:grid;grid-template-columns:20px 1fr;gap:8px;align-items:start;color:#6d5a2a;font-size:.67rem;line-height:1.5}.article-check-card li>.ijp-icon{margin-top:1px;color:#a97810}.article-side-share{display:flex;align-items:center;justify-content:space-between;gap:9px;padding:13px 15px;border-radius:13px;background:#f4fbf7;color:#234c3a}.article-side-share strong{font-size:.7rem}.article-side-share a{display:inline-flex;align-items:center;gap:5px;color:#148453;font-size:.65rem;font-weight:800}.related-guides-section{padding-top:68px;padding-bottom:78px}
@media(max-width:1100px){.article-hero__layout,.article-layout--guide{grid-template-columns:minmax(0,720px) minmax(250px,285px);gap:36px}.article-hero--guide h1{font-size:clamp(2.45rem,5.2vw,4rem)}}
@media(max-width:980px){.article-hero__layout{grid-template-columns:1fr;gap:28px}.article-hero__side{max-width:620px}.article-layout--guide{grid-template-columns:minmax(0,760px);gap:0}.article-sidebar{position:static;grid-template-columns:repeat(2,minmax(0,1fr));padding:0 0 58px}.article-toc-card{grid-column:1/-1}.article-side-share{grid-column:1/-1}.article-featured--wide{max-width:860px}.article-bottom-actions{padding-bottom:42px}}
@media(max-width:782px){.article-hero--guide{padding:42px 0 66px}.article-hero--guide h1{font-size:clamp(2.15rem,10.5vw,3.2rem)}.article-hero__summary{font-size:.88rem}.article-hero__side{display:none}.article-featured--wide{margin-top:-30px;padding-left:18px;padding-right:18px}.article-featured--wide img{max-height:420px;border-width:4px;border-radius:15px}.article-layout--guide{display:block;padding-left:18px;padding-right:18px}.article-layout--guide .article-body{padding:40px 0 24px;font-size:.95rem}.article-layout--guide .article-body>p:first-child{font-size:1rem}.article-layout--guide .article-body h2{font-size:1.45rem}.article-sidebar{display:grid;grid-template-columns:1fr;gap:12px;padding-bottom:48px}.article-toc-card,.article-side-share{grid-column:auto}.article-bottom-actions{align-items:stretch;flex-direction:column}.article-bottom-actions a{justify-content:center;width:100%}.article-bottom-actions__share{padding:11px 13px}.related-guides-section{padding-top:50px}}
@media(max-width:480px){.article-hero__badges{gap:6px}.article-guide-badge,.article-category-badge{padding:6px 8px;font-size:.58rem}.article-meta--rich{gap:8px}.article-meta--rich span{width:auto;font-size:.66rem}.article-side-card{padding:17px}.article-layout--guide .article-body{line-height:1.75}.article-layout--guide .article-body h2{margin-top:1.8em}.article-side-share{align-items:flex-start;flex-direction:column}}


/* =========================================================
   v1.1.32 — Career Guide sidebar visibility repair
   Keep the useful sidebar beside the article on common
   Windows/laptop scaled viewports. Stack only when genuinely narrow.
   ========================================================= */
@media (min-width:841px){
  .single-guide-page .article-layout--guide{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 286px!important;
    gap:34px!important;
    align-items:start!important;
    justify-content:stretch!important;
    max-width:1180px!important;
  }
  .single-guide-page .article-main-column{
    min-width:0!important;
    width:100%!important;
  }
  .single-guide-page .article-sidebar{
    display:grid!important;
    grid-template-columns:1fr!important;
    grid-auto-flow:row!important;
    align-content:start!important;
    position:sticky!important;
    top:104px!important;
    width:286px!important;
    min-width:0!important;
    max-height:calc(100vh - 122px)!important;
    align-self:start!important;
    padding:36px 6px 36px 0!important;
    gap:14px!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    overscroll-behavior:contain!important;
    scrollbar-gutter:stable!important;
    visibility:visible!important;
    opacity:1!important;
    transform:none!important;
    z-index:4!important;
  }
  .single-guide-page .article-sidebar>*{
    grid-column:1!important;
    width:100%!important;
    min-width:0!important;
  }
}
@media (min-width:841px) and (max-width:1080px){
  .single-guide-page .article-layout--guide{
    grid-template-columns:minmax(0,1fr) 258px!important;
    gap:26px!important;
    padding-inline:20px!important;
  }
  .single-guide-page .article-sidebar{
    width:258px!important;
  }
  .single-guide-page .article-side-card{
    padding:17px!important;
  }
  .single-guide-page .article-help-links>a{
    grid-template-columns:34px minmax(0,1fr) 14px!important;
    gap:8px!important;
  }
  .single-guide-page .article-help-links>a>span{
    width:32px!important;
    height:32px!important;
  }
}
@media (max-width:840px){
  .single-guide-page .article-layout--guide{
    display:block!important;
    max-width:780px!important;
  }
  .single-guide-page .article-sidebar{
    display:grid!important;
    position:static!important;
    top:auto!important;
    width:100%!important;
    max-height:none!important;
    grid-template-columns:1fr!important;
    gap:12px!important;
    padding:0 0 50px!important;
    overflow:visible!important;
    scrollbar-gutter:auto!important;
    visibility:visible!important;
    opacity:1!important;
    transform:none!important;
  }
}


/* =========================================================
   v1.1.33 — Stable Career Guide sidebar
   Keep the tall desktop sidebar pinned inside the viewport
   instead of allowing sticky state to jump in and out.
   ========================================================= */
@media (min-width:841px){
  .single-guide-page .article-sidebar{
    box-sizing:border-box!important;
    will-change:auto!important;
    transition:none!important;
  }
  .single-guide-page .article-sidebar::-webkit-scrollbar{width:5px}
  .single-guide-page .article-sidebar::-webkit-scrollbar-track{background:transparent}
  .single-guide-page .article-sidebar::-webkit-scrollbar-thumb{background:#d5e0e9;border-radius:999px}
  .single-guide-page .article-sidebar:hover::-webkit-scrollbar-thumb{background:#b9c9d7}
  .single-guide-page .article-side-card,
  .single-guide-page .article-side-share{
    transform:none!important;
    opacity:1!important;
    visibility:visible!important;
  }
}


/* =========================================================
   v1.1.34 — Permanent Career Guide sidebar
   The sidebar is now a normal, permanent right-column element.
   No sticky/fixed/open-close behaviour is used on desktop, so it
   cannot flash, collapse or disappear during page load/scroll.
   ========================================================= */
@media (min-width:841px){
  .single-guide-page .article-layout--guide{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 300px!important;
    gap:38px!important;
    align-items:start!important;
    justify-content:stretch!important;
    width:min(1180px,calc(100% - 40px))!important;
    max-width:1180px!important;
    margin-left:auto!important;
    margin-right:auto!important;
    padding-left:0!important;
    padding-right:0!important;
    overflow:visible!important;
  }

  .single-guide-page .article-main-column{
    min-width:0!important;
    width:100%!important;
  }

  .single-guide-page .article-sidebar{
    display:grid!important;
    grid-template-columns:1fr!important;
    grid-auto-flow:row!important;
    align-content:start!important;
    position:relative!important;
    position:static!important;
    inset:auto!important;
    top:auto!important;
    right:auto!important;
    bottom:auto!important;
    left:auto!important;
    width:300px!important;
    min-width:300px!important;
    max-width:300px!important;
    max-height:none!important;
    height:auto!important;
    align-self:start!important;
    margin:0!important;
    padding:52px 0 70px!important;
    gap:14px!important;
    overflow:visible!important;
    overscroll-behavior:auto!important;
    scrollbar-gutter:auto!important;
    visibility:visible!important;
    opacity:1!important;
    transform:none!important;
    transition:none!important;
    animation:none!important;
    z-index:1!important;
  }

  .single-guide-page .article-sidebar>*{
    display:block!important;
    grid-column:1!important;
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    visibility:visible!important;
    opacity:1!important;
    transform:none!important;
    animation:none!important;
  }

  .single-guide-page .article-side-card,
  .single-guide-page .article-side-share{
    position:relative!important;
    top:auto!important;
    left:auto!important;
    right:auto!important;
    bottom:auto!important;
    visibility:visible!important;
    opacity:1!important;
  }
}

@media (min-width:841px) and (max-width:1080px){
  .single-guide-page .article-layout--guide{
    grid-template-columns:minmax(0,1fr) 270px!important;
    gap:28px!important;
    width:min(100% - 32px,1040px)!important;
  }
  .single-guide-page .article-sidebar{
    width:270px!important;
    min-width:270px!important;
    max-width:270px!important;
  }
}

@media (max-width:840px){
  .single-guide-page .article-layout--guide{
    display:block!important;
    width:auto!important;
    max-width:780px!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }
  .single-guide-page .article-sidebar{
    display:grid!important;
    position:static!important;
    width:100%!important;
    min-width:0!important;
    max-width:100%!important;
    max-height:none!important;
    height:auto!important;
    margin:0!important;
    padding:0 0 50px!important;
    gap:12px!important;
    overflow:visible!important;
    visibility:visible!important;
    opacity:1!important;
    transform:none!important;
    animation:none!important;
  }
}
