/*!
 * Grow Well Placement — theme stylesheet
 * Design system driven by CSS custom properties (editable in the Customizer).
 */

/* ---------------------------------------------------------------
   1. Base & reset
   --------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--gwp-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--gwp-text);
	background: var(--gwp-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--gwp-primary);
	text-decoration: none;
	transition: color .2s ease;
}

a:hover {
	color: var(--gwp-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gwp-font-heading);
	color: var(--gwp-heading);
	line-height: 1.25;
	margin: 0 0 .6em;
	font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

ul, ol { padding-left: 1.25em; }

input, select, textarea, button {
	font-family: inherit;
	font-size: inherit;
}

/* ---------------------------------------------------------------
   2. Layout utilities
   --------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.site-main {
	padding: 0;
}

.site-main-home {
	padding: 0;
}

/* Screen reader only */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	background: var(--gwp-navy);
	color: #fff;
	padding: 10px 18px;
	border-radius: 0 0 8px 0;
}

.skip-link:focus {
	left: 0;
	color: #fff;
}

/* ---------------------------------------------------------------
   3. Section spacing
   --------------------------------------------------------------- */
.gwp-benefits,
.gwp-services,
.gwp-jobs-section,
.gwp-process,
.gwp-cta-cards {
	padding: 84px 0;
}

.gwp-benefits {
	padding: 0 0 84px;
}

.gwp-section-head {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}

.gwp-section-head-left {
	margin: 0 0 32px;
	text-align: left;
}

.gwp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--gwp-font-heading);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gwp-primary);
	background: var(--gwp-light-blue);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.gwp-eyebrow-light {
	background: rgba(255, 255, 255, .14);
	color: #fff;
}

.gwp-section-title {
	margin-bottom: 10px;
}

.gwp-section-subtitle {
	color: var(--gwp-text);
	max-width: 640px;
	margin: 0 auto;
}

/* ---------------------------------------------------------------
   4. Buttons
   --------------------------------------------------------------- */
.gwp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--gwp-font-heading);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	padding: 13px 26px;
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: all .25s ease;
	white-space: nowrap;
}

.gwp-btn .gwp-btn-icon {
	transition: transform .25s ease;
}

.gwp-btn:hover .gwp-btn-icon {
	transform: translateX(3px);
}

.gwp-btn-primary {
	background: var(--gwp-primary);
	color: #fff;
	box-shadow: 0 6px 18px rgba(43, 147, 219, .35);
}

.gwp-btn-primary:hover {
	background: var(--gwp-primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(43, 147, 219, .4);
}

.gwp-btn-navy {
	background: var(--gwp-navy);
	color: #fff;
}

.gwp-btn-navy:hover {
	background: var(--gwp-secondary);
	color: #fff;
	transform: translateY(-2px);
}

.gwp-btn-outline {
	background: transparent;
	color: var(--gwp-navy);
	border-color: var(--gwp-navy);
}

.gwp-btn-outline:hover {
	background: var(--gwp-navy);
	color: #fff;
}

.gwp-btn-ghost {
	background: transparent;
	color: var(--gwp-navy);
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
}

.gwp-btn-ghost:hover {
	color: var(--gwp-primary);
}

.gwp-btn-ghost:hover .gwp-btn-icon {
	transform: translateX(3px);
}

.gwp-btn-white {
	background: #fff;
	color: var(--gwp-navy);
}

.gwp-btn-white:hover {
	background: var(--gwp-light-blue);
	color: var(--gwp-navy);
	transform: translateY(-2px);
}

.gwp-btn-disabled {
	background: #eef2f6;
	color: #8a9aab;
	cursor: not-allowed;
	box-shadow: none;
}

.gwp-btn-block {
	width: 100%;
}

.gwp-btn-lg {
	padding: 15px 34px;
	font-size: 16px;
}

/* ---------------------------------------------------------------
   5. Header — top bar
   --------------------------------------------------------------- */
.topbar {
	background: var(--gwp-navy);
	color: rgba(255, 255, 255, .88);
	font-size: 13.5px;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
}

.topbar-left,
.topbar-right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, .88);
	text-decoration: none;
}

.topbar-item a,
a.topbar-item {
	color: rgba(255, 255, 255, .88);
}

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

.topbar-item .gwp-icon {
	color: var(--gwp-primary);
	flex-shrink: 0;
}

.topbar-lang-inner {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: default;
}

/* ---------------------------------------------------------------
   6. Header — main navigation
   --------------------------------------------------------------- */
.site-header {
	position: relative;
	z-index: 200;
	background: #fff;
}

.navbar {
	background: #fff;
	border-bottom: 1px solid var(--gwp-border);
}

.site-header-sticky .navbar {
	position: sticky;
	top: 0;
	transition: box-shadow .3s ease;
}

.site-header.is-scrolled .navbar {
	box-shadow: 0 8px 28px rgba(3, 43, 84, .12);
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 84px;
}

.navbar-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.gwp-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.gwp-logo-img {
	max-height: 62px;
	width: auto;
}

.gwp-logo-default {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.gwp-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--gwp-navy), var(--gwp-primary));
	color: #fff;
	flex-shrink: 0;
}

.gwp-logo-word {
	font-family: var(--gwp-font-heading);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--gwp-navy);
	letter-spacing: -.3px;
}

.gwp-logo-accent {
	color: var(--gwp-primary);
}

/* Navigation */
.navbar-nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.nav-menu li {
	position: relative;
}

.nav-menu > li > a {
	display: block;
	padding: 10px 14px;
	font-family: var(--gwp-font-heading);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--gwp-navy);
	border-radius: 8px;
	transition: color .2s ease, background .2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
	color: var(--gwp-primary);
	background: var(--gwp-light-blue);
}

/* Submenus */
.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--gwp-shadow-md);
	list-style: none;
	margin: 0;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .2s ease;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: block;
	padding: 9px 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gwp-text);
	border-radius: 8px;
}

.nav-menu .sub-menu a:hover {
	color: var(--gwp-primary);
	background: var(--gwp-light-blue);
}

/* Header actions */
.navbar-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.navbar-apply {
	font-size: 14px;
	padding: 11px 22px;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--gwp-border);
	border-radius: 10px;
	background: #fff;
	color: var(--gwp-navy);
	cursor: pointer;
}

.menu-toggle-close {
	display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-open {
	display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-close {
	display: inline-flex;
}

/* Mobile menu panel */
.mobile-menu {
	background: #fff;
	border-bottom: 1px solid var(--gwp-border);
	box-shadow: var(--gwp-shadow-md);
}

.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 12px 0;
}

.mobile-menu-list > li {
	border-bottom: 1px solid var(--gwp-border);
}

.mobile-menu-list > li:last-child {
	border-bottom: 0;
}

.mobile-menu-list a {
	display: block;
	padding: 14px 6px;
	font-family: var(--gwp-font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--gwp-navy);
}

.mobile-menu-list a:hover {
	color: var(--gwp-primary);
}

.mobile-menu-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 8px 18px;
}

.mobile-menu-list .sub-menu a {
	font-size: 14.5px;
	font-weight: 500;
	padding: 8px 6px;
	color: var(--gwp-text);
}

.mobile-menu-actions {
	padding: 8px 0 20px;
}

.mobile-apply {
	width: 100%;
}

/* ---------------------------------------------------------------
   7. Hero
   --------------------------------------------------------------- */
.gwp-hero {
	position: relative;
	background:
		radial-gradient(1200px 500px at 85% -10%, rgba(43, 147, 219, .14), transparent 60%),
		linear-gradient(180deg, var(--gwp-light-blue) 0%, #fff 100%);
	overflow: hidden;
}

.gwp-hero::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(43, 147, 219, .18), transparent 65%);
	pointer-events: none;
}

.gwp-hero-inner {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: center;
	padding-top: 72px;
	padding-bottom: 96px;
}

.gwp-hero-eyebrow {
	margin-bottom: 20px;
}

.gwp-hero-title {
	font-size: clamp(1.7rem, 4vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -.5px;
	margin-bottom: 22px;
}

.gwp-hero-accent {
	color: var(--gwp-primary);
}

.gwp-hero-text {
	font-size: 17px;
	max-width: 540px;
	margin-bottom: 30px;
	color: var(--gwp-text);
}

.gwp-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

/* Hero media */
.gwp-hero-media {
	position: relative;
}

.gwp-hero-image-wrap {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--gwp-shadow-lg);
	background: linear-gradient(135deg, var(--gwp-navy), var(--gwp-primary));
}

.gwp-hero-image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 4.4;
	object-fit: cover;
}

.gwp-hero-badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, .95);
	color: var(--gwp-navy);
	font-family: var(--gwp-font-heading);
	font-size: 13.5px;
	font-weight: 700;
	padding: 12px 18px;
	border-radius: 12px;
	box-shadow: var(--gwp-shadow-md);
}

.gwp-hero-badge .gwp-icon {
	color: var(--gwp-primary);
}

/* ---------------------------------------------------------------
   8. Trust / benefits bar
   --------------------------------------------------------------- */
.gwp-benefits {
	position: relative;
	z-index: 5;
	margin-top: -52px;
}

.gwp-benefits-card {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 20px;
	box-shadow: var(--gwp-shadow-md);
	overflow: hidden;
}

.gwp-benefit {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 28px 24px;
	border-right: 1px solid var(--gwp-border);
}

.gwp-benefit:last-child {
	border-right: 0;
}

.gwp-benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: var(--gwp-light-blue);
	color: var(--gwp-primary);
	flex-shrink: 0;
	transition: all .25s ease;
}

.gwp-benefit:hover .gwp-benefit-icon {
	background: var(--gwp-primary);
	color: #fff;
	transform: translateY(-3px);
}

.gwp-benefit-title {
	font-size: 15.5px;
	margin-bottom: 4px;
}

.gwp-benefit-text {
	font-size: 13.5px;
	color: var(--gwp-text);
	margin: 0;
	line-height: 1.55;
}

/* ---------------------------------------------------------------
   9. Statistics
   --------------------------------------------------------------- */
.gwp-stats {
	background: var(--gwp-gradient);
	padding: 84px 0;
	position: relative;
	overflow: hidden;
}

.gwp-stats::after {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	pointer-events: none;
}

.gwp-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	text-align: center;
}

.gwp-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #fff;
}

.gwp-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .25);
	margin-bottom: 6px;
}

.gwp-stat-number {
	font-family: var(--gwp-font-heading);
	font-size: clamp(1.9rem, 3.4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.1;
}

.gwp-stat-label {
	font-size: 14.5px;
	color: rgba(255, 255, 255, .82);
}

/* ---------------------------------------------------------------
   10. Services
   --------------------------------------------------------------- */
.gwp-services {
	background: var(--gwp-bg-alt);
}

.gwp-services-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.gwp-service {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.gwp-service:hover {
	transform: translateY(-6px);
	box-shadow: var(--gwp-shadow-md);
	border-color: rgba(43, 147, 219, .4);
}

.gwp-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: var(--gwp-light-blue);
	color: var(--gwp-primary);
	margin-bottom: 18px;
	transition: all .3s ease;
}

.gwp-service:hover .gwp-service-icon {
	background: var(--gwp-primary);
	color: #fff;
	transform: rotate(-6deg) scale(1.05);
}

.gwp-service-title {
	font-size: 16.5px;
	margin-bottom: 8px;
}

.gwp-service-text {
	font-size: 14px;
	color: var(--gwp-text);
	flex-grow: 1;
	margin-bottom: 14px;
}

.gwp-service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--gwp-font-heading);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--gwp-primary);
}

/* ---------------------------------------------------------------
   11. Jobs — section head row + carousel + grid
   --------------------------------------------------------------- */
.gwp-section-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 36px;
}

.gwp-section-head-row .gwp-section-head {
	margin: 0;
}

.gwp-jobs-toolbar {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	padding-bottom: 4px;
}

.gwp-carousel-nav {
	display: flex;
	gap: 8px;
}

.gwp-carousel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--gwp-border);
	border-radius: 10px;
	background: #fff;
	color: var(--gwp-navy);
	cursor: pointer;
	transition: all .2s ease;
}

.gwp-carousel-btn:hover {
	background: var(--gwp-navy);
	color: #fff;
	border-color: var(--gwp-navy);
}

/* Carousel scroller */
.gwp-jobs-scroller {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 16px;
	margin: 0 -24px;
	padding-left: 24px;
	padding-right: 24px;
	scrollbar-width: thin;
	scrollbar-color: var(--gwp-primary) transparent;
}

.gwp-jobs-scroller .gwp-job-card {
	flex: 0 0 300px;
	scroll-snap-align: start;
}

/* Grid (archive + related) */
.gwp-jobs-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

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

/* ---------------------------------------------------------------
   12. Job card
   --------------------------------------------------------------- */
.gwp-job-card {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .3s ease, box-shadow .3s ease;
}

.gwp-job-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--gwp-shadow-md);
}

.gwp-job-card-media {
	position: relative;
	display: block;
	overflow: hidden;
}

.gwp-job-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .5s ease;
}

.gwp-job-card:hover .gwp-job-image {
	transform: scale(1.05);
}

.gwp-job-type {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(3, 43, 84, .85);
	color: #fff;
	font-family: var(--gwp-font-heading);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
}

.gwp-job-closed-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #e5484d;
	color: #fff;
	font-family: var(--gwp-font-heading);
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .6px;
	padding: 5px 12px;
	border-radius: 999px;
}

.gwp-job-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gwp-job-cat {
	display: inline-block;
	margin-bottom: 8px;
}

.gwp-job-cat a {
	font-family: var(--gwp-font-heading);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--gwp-primary);
	background: var(--gwp-light-blue);
	padding: 4px 12px;
	border-radius: 999px;
}

.gwp-job-title {
	font-size: 18px;
	margin-bottom: 10px;
}

.gwp-job-title a {
	color: var(--gwp-heading);
}

.gwp-job-title a:hover {
	color: var(--gwp-primary);
}

.gwp-job-location,
.gwp-job-salary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	color: var(--gwp-text);
	margin-bottom: 6px;
}

.gwp-job-location .gwp-icon,
.gwp-job-salary .gwp-icon {
	color: var(--gwp-primary);
	flex-shrink: 0;
}

.gwp-job-salary {
	font-family: var(--gwp-font-heading);
	font-weight: 700;
	color: var(--gwp-navy);
}

.gwp-job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin: 10px 0 18px;
}

.gwp-job-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--gwp-text);
}

.gwp-job-meta .gwp-icon {
	color: var(--gwp-primary);
}

.gwp-job-apply {
	margin-top: auto;
	width: 100%;
}

/* ---------------------------------------------------------------
   13. Process (How It Works)
   --------------------------------------------------------------- */
.gwp-process {
	background: var(--gwp-light-blue);
	position: relative;
}

.gwp-process-steps {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: gwp-step;
	position: relative;
}

.gwp-process-steps::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 6%;
	right: 6%;
	height: 2px;
	background: linear-gradient(90deg, var(--gwp-primary), var(--gwp-navy), var(--gwp-primary));
	opacity: .35;
}

.gwp-process-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 30px 18px 24px;
	transition: transform .3s ease, box-shadow .3s ease;
}

.gwp-process-step:hover {
	transform: translateY(-6px);
	box-shadow: var(--gwp-shadow-md);
}

.gwp-process-number {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gwp-gradient);
	color: #fff;
	font-family: var(--gwp-font-heading);
	font-size: 13px;
	font-weight: 800;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(3, 43, 84, .3);
	z-index: 2;
}

.gwp-process-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--gwp-light-blue);
	color: var(--gwp-primary);
	margin-top: 8px;
}

.gwp-process-title {
	font-size: 15.5px;
	margin: 4px 0 0;
}

.gwp-process-text {
	font-size: 13.5px;
	color: var(--gwp-text);
	margin: 0;
}

/* ---------------------------------------------------------------
   14. CTA cards
   --------------------------------------------------------------- */
.gwp-cta-cards {
	background: var(--gwp-bg-alt);
}

.gwp-cta-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gwp-cta-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 380px;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--gwp-shadow-md);
	transition: transform .3s ease, box-shadow .3s ease;
}

.gwp-cta-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--gwp-shadow-lg);
}

.gwp-cta-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gwp-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 43, 84, .1) 0%, rgba(3, 43, 84, .88) 78%);
}

.gwp-cta-content {
	position: relative;
	z-index: 2;
	padding: 32px 28px;
	color: #fff;
	width: 100%;
}

.gwp-cta-title {
	color: #fff;
	font-size: 21px;
	margin-bottom: 10px;
}

.gwp-cta-text {
	color: rgba(255, 255, 255, .85);
	font-size: 14.5px;
	margin-bottom: 20px;
}

/* ---------------------------------------------------------------
   15. Footer
   --------------------------------------------------------------- */
.site-footer {
	background: var(--gwp-navy);
	color: rgba(255, 255, 255, .78);
	font-size: 14.5px;
}

.footer-top {
	padding: 72px 0 48px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
	gap: 40px;
}

.footer-title {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-about {
	font-size: 14px;
	margin: 18px 0 22px;
	color: rgba(255, 255, 255, .72);
}

.footer-logo {
	opacity: .95;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li {
	margin-bottom: 11px;
}

.footer-menu a {
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
	transition: color .2s ease, padding-left .2s ease;
}

.footer-menu a:hover {
	color: #fff;
	padding-left: 4px;
}

.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	line-height: 1.5;
}

.footer-contact .gwp-icon {
	color: var(--gwp-primary);
	flex-shrink: 0;
	margin-top: 3px;
}

.footer-contact a {
	color: rgba(255, 255, 255, .78);
}

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

.gwp-socials {
	display: flex;
	gap: 10px;
}

.gwp-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	transition: all .25s ease;
}

.gwp-social:hover {
	background: var(--gwp-primary);
	color: #fff;
	transform: translateY(-3px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 20px 0;
	font-size: 13.5px;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-copyright {
	margin: 0;
	color: rgba(255, 255, 255, .6);
}

.footer-legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-legal-menu a {
	color: rgba(255, 255, 255, .6);
}

.footer-legal-menu a:hover {
	color: #fff;
}

/* ---------------------------------------------------------------
   16. Page header + breadcrumbs
   --------------------------------------------------------------- */
.gwp-page-header {
	background: var(--gwp-gradient);
	color: #fff;
	padding: 56px 0 48px;
}

.gwp-page-header .gwp-page-title {
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin: 12px 0 0;
}

.gwp-page-text {
	color: rgba(255, 255, 255, .82);
	max-width: 640px;
	margin: 10px 0 0;
}

.gwp-breadcrumbs {
	margin: 0;
	font-size: 13.5px;
}

.gwp-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gwp-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.gwp-breadcrumbs li:not(:last-child)::after {
	content: "/";
	color: rgba(255, 255, 255, .45);
}

.gwp-breadcrumbs a,
.gwp-breadcrumbs span {
	color: rgba(255, 255, 255, .78);
}

.gwp-breadcrumbs a:hover {
	color: #fff;
}

/* ---------------------------------------------------------------
   17. Layout, blog, sidebar, pagination
   --------------------------------------------------------------- */
.gwp-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 48px;
	align-items: start;
	padding-top: 56px;
	padding-bottom: 72px;
}

.gwp-page-wrap {
	padding-top: 56px;
	padding-bottom: 72px;
}

.gwp-content-main {
	min-width: 0;
}

.gwp-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.gwp-post-card {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
}

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

.gwp-post-thumb {
	display: block;
	overflow: hidden;
}

.gwp-post-thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}

.gwp-post-card:hover .gwp-post-thumb img {
	transform: scale(1.05);
}

.gwp-post-body {
	padding: 22px;
}

.gwp-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--gwp-text);
	margin-bottom: 10px;
}

.gwp-post-cats a {
	color: var(--gwp-primary);
	font-weight: 600;
}

.gwp-post-title {
	font-size: 19px;
	margin-bottom: 10px;
}

.gwp-post-title a {
	color: var(--gwp-heading);
}

.gwp-post-title a:hover {
	color: var(--gwp-primary);
}

.gwp-post-excerpt {
	font-size: 14.5px;
	margin-bottom: 16px;
}

.gwp-post-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--gwp-font-heading);
	font-weight: 700;
	font-size: 14px;
	color: var(--gwp-primary);
}

/* Pagination */
.pagination,
.navigation.pagination {
	margin-top: 48px;
	text-align: center;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--gwp-border);
	border-radius: 10px;
	background: #fff;
	color: var(--gwp-navy);
	font-family: var(--gwp-font-heading);
	font-weight: 600;
	transition: all .2s ease;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--gwp-primary);
	border-color: var(--gwp-primary);
	color: #fff;
}

/* Sidebar */
.gwp-sidebar .widget {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 24px;
}

.gwp-sidebar .widget-title {
	font-size: 17px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--gwp-light-blue);
}

.gwp-sidebar .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gwp-sidebar .widget li {
	margin-bottom: 10px;
}

.gwp-sidebar .widget a {
	color: var(--gwp-text);
}

.gwp-sidebar .widget a:hover {
	color: var(--gwp-primary);
}

/* ---------------------------------------------------------------
   18. Entry content (Gutenberg/Elementor pages)
   --------------------------------------------------------------- */
.gwp-entry {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 40px;
	box-shadow: var(--gwp-shadow-sm);
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.4em;
}

.entry-content img {
	border-radius: 12px;
}

.wp-caption {
	max-width: 100%;
}

.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 0 auto 16px; display: block; }

.gwp-single-thumb {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 28px;
}

.gwp-single-thumb img {
	width: 100%;
	display: block;
}

.gwp-entry-footer {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--gwp-border);
}

.gwp-tags {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	color: var(--gwp-text);
	font-size: 14px;
}

.gwp-tags a {
	background: var(--gwp-light-blue);
	color: var(--gwp-navy);
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 13px;
}

/* ---------------------------------------------------------------
   19. Forms, alerts, empty states
   --------------------------------------------------------------- */
.gwp-form-page {
	max-width: 980px;
}

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

.gwp-form {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 32px;
	box-shadow: var(--gwp-shadow-sm);
}

.gwp-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.gwp-form-field {
	margin-bottom: 20px;
}

.gwp-form-field label {
	display: block;
	font-family: var(--gwp-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--gwp-navy);
	margin-bottom: 7px;
}

.gwp-form-field input,
.gwp-form-field select,
.gwp-form-field textarea {
	width: 100%;
	border: 1px solid var(--gwp-border);
	border-radius: 10px;
	padding: 12px 14px;
	background: #fff;
	color: var(--gwp-text);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gwp-form-field input:focus,
.gwp-form-field select:focus,
.gwp-form-field textarea:focus {
	outline: none;
	border-color: var(--gwp-primary);
	box-shadow: 0 0 0 3px rgba(43, 147, 219, .18);
}

.gwp-form-note {
	font-size: 13px;
	color: var(--gwp-text);
}

.gwp-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gwp-contact-box {
	background: var(--gwp-gradient);
	border-radius: 16px;
	padding: 28px;
	color: #fff;
}

.gwp-contact-box h3 {
	color: #fff;
}

.gwp-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gwp-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 14.5px;
	line-height: 1.5;
}

.gwp-contact-list .gwp-icon {
	flex-shrink: 0;
	margin-top: 3px;
	color: #fff;
}

.gwp-contact-list a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gwp-contact-socials {
	margin-top: 18px;
}

/* Alerts */
.gwp-alert {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	border-radius: 14px;
	padding: 22px 24px;
	margin-bottom: 28px;
	border: 1px solid;
}

.gwp-alert .gwp-icon {
	flex-shrink: 0;
	margin-top: 3px;
}

.gwp-alert h2 {
	font-size: 17px;
	margin-bottom: 6px;
}

.gwp-alert p {
	margin-bottom: 6px;
}

.gwp-alert-success {
	background: #e8f7ee;
	border-color: #b7e4c7;
	color: #14532d;
}

.gwp-alert-success .gwp-icon {
	color: #1a7f37;
}

.gwp-alert-error {
	background: #fdecec;
	border-color: #f5c6c7;
	color: #7f1d1d;
}

.gwp-alert-error .gwp-icon {
	color: #e5484d;
}

.gwp-alert-info {
	background: var(--gwp-light-blue);
	border-color: #bcd9ef;
	color: var(--gwp-navy);
}

/* Empty states */
.gwp-empty {
	text-align: center;
	padding: 64px 24px;
	background: #fff;
	border: 1px dashed var(--gwp-border);
	border-radius: 16px;
}

.gwp-empty .gwp-icon {
	color: var(--gwp-primary);
	margin-bottom: 14px;
}

.gwp-empty-title {
	font-size: 20px;
	margin-bottom: 8px;
}

.gwp-empty p {
	color: var(--gwp-text);
	max-width: 460px;
	margin: 0 auto 22px;
}

/* ---------------------------------------------------------------
   20. Job filters (archive)
   --------------------------------------------------------------- */
.gwp-job-filters {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 24px;
	margin-top: 40px;
	box-shadow: var(--gwp-shadow-sm);
}

.gwp-filters-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	align-items: end;
}

.gwp-field label {
	display: block;
	font-family: var(--gwp-font-heading);
	font-weight: 600;
	font-size: 13px;
	color: var(--gwp-navy);
	margin-bottom: 6px;
}

.gwp-field input,
.gwp-field select {
	width: 100%;
	border: 1px solid var(--gwp-border);
	border-radius: 10px;
	padding: 11px 13px;
	background: #fff;
	color: var(--gwp-text);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gwp-field input:focus,
.gwp-field select:focus {
	outline: none;
	border-color: var(--gwp-primary);
	box-shadow: 0 0 0 3px rgba(43, 147, 219, .18);
}

.gwp-field-actions {
	display: flex;
	gap: 10px;
}

.gwp-field-actions .gwp-btn {
	flex: 1;
	padding: 11px 16px;
}

/* ---------------------------------------------------------------
   21. Single job
   --------------------------------------------------------------- */
.gwp-job-hero {
	background: var(--gwp-gradient);
	color: #fff;
	padding: 52px 0 44px;
}

.gwp-job-hero .gwp-job-title {
	color: #fff;
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
	margin: 14px 0 18px;
}

.gwp-job-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gwp-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .25);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
}

.gwp-chip a {
	color: #fff;
}

.gwp-chip-status.is-open {
	background: rgba(26, 127, 55, .85);
	border-color: transparent;
}

.gwp-chip-status.is-closed {
	background: rgba(229, 72, 77, .85);
	border-color: transparent;
}

.gwp-job-layout {
	padding-top: 48px;
	padding-bottom: 72px;
}

.gwp-job-featured {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 28px;
}

.gwp-job-featured img {
	width: 100%;
	display: block;
}

.gwp-job-summary {
	background: var(--gwp-light-blue);
	border-left: 4px solid var(--gwp-primary);
	border-radius: 12px;
	padding: 22px 26px;
	margin-bottom: 28px;
}

.gwp-job-summary h2 {
	font-size: 17px;
	margin-bottom: 8px;
}

.gwp-job-summary p {
	margin: 0;
}

.gwp-job-section {
	margin-top: 34px;
}

.gwp-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gwp-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}

.gwp-check-list .gwp-icon {
	color: var(--gwp-primary);
	flex-shrink: 0;
	margin-top: 4px;
}

.gwp-job-employer p {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gwp-job-employer .gwp-icon {
	color: var(--gwp-primary);
}

/* Job sidebar overview */
.gwp-job-sidebar {
	position: sticky;
	top: 100px;
}

.gwp-job-overview {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 26px;
	box-shadow: var(--gwp-shadow-sm);
}

.gwp-overview-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.gwp-overview-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid var(--gwp-border);
	font-size: 14px;
}

.gwp-overview-list li:last-child {
	border-bottom: 0;
}

.gwp-overview-list .gwp-icon {
	color: var(--gwp-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

.gwp-overview-list span {
	display: flex;
	flex-direction: column;
	line-height: 1.5;
}

.gwp-overview-list strong {
	font-family: var(--gwp-font-heading);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .8px;
	color: var(--gwp-text);
}

.gwp-overview-contact {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--gwp-border);
}

.gwp-overview-contact-title {
	font-family: var(--gwp-font-heading);
	font-weight: 700;
	font-size: 14px;
	color: var(--gwp-navy);
	margin-bottom: 12px;
}

.gwp-overview-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 14px;
	color: var(--gwp-text);
}

.gwp-overview-contact-item .gwp-icon {
	color: var(--gwp-primary);
}

.gwp-overview-contact-item:hover {
	color: var(--gwp-primary);
}

.gwp-related-jobs {
	margin-top: 56px;
}

.gwp-related-title {
	margin-bottom: 24px;
}

/* ---------------------------------------------------------------
   22. 404 + back to top
   --------------------------------------------------------------- */
.gwp-error {
	text-align: center;
	padding: 80px 0 110px;
}

.gwp-error-code {
	font-family: var(--gwp-font-heading);
	font-size: 96px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--gwp-navy), var(--gwp-primary));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	margin-bottom: 10px;
}

.gwp-error-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	border: 0;
	background: var(--gwp-primary);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--gwp-shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all .3s ease;
	z-index: 300;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--gwp-navy);
}

/* ---------------------------------------------------------------
   23. Elementor integration
   --------------------------------------------------------------- */
.gwp-elementor-wrap {
	max-width: none;
	padding: 0;
}

.gwp-elementor-main {
	padding: 0;
}

.gwp-elementor-main .entry-content {
	padding: 0;
}

body.gwp-elementor-page .site-main {
	padding: 0;
}

/* Elementor sections get consistent spacing when using the theme's palette */
.elementor-widget-heading h1.elementor-heading-title,
.elementor-widget-heading h2.elementor-heading-title {
	color: var(--gwp-heading);
}

/* ---------------------------------------------------------------
   24. Comments
   --------------------------------------------------------------- */
.gwp-comments {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	padding: 32px;
	margin-top: 48px;
}

.gwp-comments-title {
	font-size: 19px;
}

.comment-list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.comment-list .comment {
	margin-bottom: 20px;
}

.comment-list .comment-body {
	background: var(--gwp-bg-alt);
	border-radius: 12px;
	padding: 18px 20px;
}

.comment-list .comment-author {
	font-family: var(--gwp-font-heading);
	font-weight: 700;
	color: var(--gwp-navy);
}

.comment-list .comment-metadata {
	font-size: 13px;
	color: var(--gwp-text);
	margin-bottom: 8px;
}

.comment-list .avatar {
	border-radius: 50%;
	margin-right: 10px;
}

.comment-list .reply a {
	font-size: 13.5px;
	font-weight: 600;
}

.comment-form label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	border: 1px solid var(--gwp-border);
	border-radius: 10px;
	padding: 11px 14px;
	margin-bottom: 14px;
}

.comment-form .submit {
	background: var(--gwp-primary);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 12px 28px;
	font-family: var(--gwp-font-heading);
	font-weight: 600;
	cursor: pointer;
	width: auto;
	transition: background .2s ease;
}

.comment-form .submit:hover {
	background: var(--gwp-primary-dark);
}

/* ---------------------------------------------------------------
   25. Accessibility
   --------------------------------------------------------------- */
:focus-visible {
	outline: 3px solid var(--gwp-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

::selection {
	background: var(--gwp-primary);
	color: #fff;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------------------------------------------------------------
   26. Responsive — tablet & desktop widths
   --------------------------------------------------------------- */
@media (max-width: 1280px) {
	.gwp-services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

@media (max-width: 1080px) {
	/* Switch to hamburger navigation */
	.navbar-nav,
	.navbar-apply {
		display: none;
	}

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

	.gwp-hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-top: 52px;
		padding-bottom: 110px;
	}

	.gwp-hero-media {
		max-width: 560px;
	}

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

	.gwp-benefit {
		border-bottom: 1px solid var(--gwp-border);
	}

	.gwp-benefit:nth-child(3) {
		border-right: 0;
	}

	.gwp-benefit:nth-child(n + 4) {
		border-bottom: 0;
	}

	.gwp-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

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

	.gwp-process-steps::before {
		display: none;
	}

	.gwp-cta-grid {
		grid-template-columns: 1fr;
		max-width: 640px;
		margin: 0 auto;
	}

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

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

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

	.gwp-layout,
	.gwp-form-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.gwp-job-sidebar,
	.gwp-sidebar {
		position: static;
	}

	.gwp-form-side {
		max-width: 560px;
	}
}

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

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

/* ---------------------------------------------------------------
   27. Responsive — mobile
   --------------------------------------------------------------- */
@media (max-width: 768px) {
	.container {
		padding: 0 18px;
	}

	.topbar-left .topbar-email span,
	.topbar-left .topbar-email .gwp-icon,
	.topbar-right .topbar-hours {
		display: none;
	}

	.gwp-benefits,
	.gwp-services,
	.gwp-jobs-section,
	.gwp-process,
	.gwp-cta-cards {
		padding: 56px 0;
	}

	.gwp-hero-inner {
		padding-top: 40px;
		padding-bottom: 96px;
	}

	.gwp-hero-title {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}

	.gwp-hero-text {
		font-size: 15.5px;
	}

	.gwp-hero-buttons .gwp-btn {
		width: 100%;
		justify-content: center;
	}

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

	.gwp-benefit:nth-child(3) {
		border-right: 1px solid var(--gwp-border);
	}

	.gwp-benefit:nth-child(n + 3) {
		border-bottom: 0;
	}

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

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

	.gwp-section-head-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.gwp-jobs-toolbar {
		width: 100%;
		justify-content: space-between;
	}

	.gwp-jobs-scroller {
		margin: 0 -18px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.gwp-jobs-scroller .gwp-job-card {
		flex: 0 0 82%;
	}

	.gwp-jobs-grid,
	.gwp-jobs-grid-3,
	.gwp-post-grid {
		grid-template-columns: 1fr;
	}

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

	.footer-top {
		padding: 56px 0 40px;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.gwp-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.gwp-form {
		padding: 24px 20px;
	}

	.gwp-entry {
		padding: 26px 20px;
	}

	.gwp-filters-row {
		grid-template-columns: 1fr;
	}

	.gwp-field-actions {
		flex-direction: column;
	}

	.gwp-field-actions .gwp-btn {
		width: 100%;
	}

	.gwp-error-code {
		font-size: 72px;
	}

	.gwp-job-overview {
		padding: 22px 18px;
	}

	.gwp-cta-card {
		min-height: 320px;
	}
}

@media (max-width: 480px) {
	.navbar-inner {
		min-height: 72px;
		gap: 12px;
	}

	.gwp-logo-word {
		font-size: 17px;
	}

	.gwp-logo-mark {
		width: 38px;
		height: 38px;
	}

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

	.gwp-benefit {
		border-right: 0;
		border-bottom: 1px solid var(--gwp-border);
	}

	.gwp-benefit:last-child {
		border-bottom: 0;
	}

	.gwp-stats-grid {
		grid-template-columns: 1fr;
	}

	.gwp-services-grid,
	.gwp-process-steps {
		grid-template-columns: 1fr;
	}

	.gwp-jobs-scroller .gwp-job-card {
		flex: 0 0 92%;
	}

	.gwp-page-header {
		padding: 40px 0 36px;
	}

	.gwp-error-actions .gwp-btn {
		width: 100%;
	}
}

/* Smallest screens */
@media (max-width: 360px) {
	.gwp-hero-buttons .gwp-btn {
		padding: 12px 18px;
		font-size: 14px;
	}

	.gwp-btn {
		font-size: 14px;
		padding: 12px 20px;
	}
}
/* Bundled Grow Well Placement logo */
.gwp-logo-img-bundled {
	width: 64px;
	height: 64px;
	max-height: 64px;
	object-fit: contain;
	border-radius: 50%;
}
.site-footer .gwp-logo-img-bundled {
	width: 70px;
	height: 70px;
	max-height: 70px;
}
@media (max-width: 480px) {
	.gwp-logo-img-bundled {
		width: 54px;
		height: 54px;
		max-height: 54px;
	}
}


/* ---------------------------------------------------------------
   29. Jobs in Israel — Vacancy Options browser
   --------------------------------------------------------------- */
.gwp-jobs-browser {
	padding: 44px 0 72px;
}

.gwp-jobs-browser-intro {
	max-width: 780px;
	margin: 0 0 28px;
}

.gwp-jobs-browser-intro h2 {
	margin-bottom: 8px;
	color: var(--gwp-navy);
}

.gwp-jobs-browser-intro p,
.gwp-vacancy-options-head p,
.gwp-job-result-count {
	color: var(--gwp-text);
}

.gwp-job-search-panel,
.gwp-vacancy-options {
	background: #fff;
	border: 1px solid var(--gwp-border);
	border-radius: 16px;
	box-shadow: var(--gwp-shadow-sm);
}

.gwp-job-search-panel {
	padding: 22px;
	margin-bottom: 26px;
}

.gwp-job-search-panel > h3,
.gwp-vacancy-options-head h3,
.gwp-available-jobs-head h3 {
	font-size: 1.18rem;
	margin-bottom: 8px;
	color: var(--gwp-navy);
}

.gwp-job-search-form {
	display: flex;
	align-items: stretch;
	gap: 12px;
}

.gwp-job-search-input-wrap {
	position: relative;
	flex: 1 1 520px;
	min-width: 0;
}

.gwp-job-search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gwp-primary);
	pointer-events: none;
}

.gwp-job-search-input-wrap input {
	width: 100%;
	height: 48px;
	border: 1px solid var(--gwp-border);
	border-radius: 11px;
	background: #fff;
	color: var(--gwp-text);
	padding: 10px 15px 10px 44px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.gwp-job-search-input-wrap input:focus {
	outline: none;
	border-color: var(--gwp-primary);
	box-shadow: 0 0 0 3px rgba(43, 147, 219, .16);
}

.gwp-job-search-form .gwp-btn {
	min-height: 48px;
	white-space: nowrap;
}

.gwp-vacancy-options {
	padding: 24px;
	margin-bottom: 34px;
}

.gwp-vacancy-options-head {
	margin-bottom: 18px;
}

.gwp-vacancy-options-head p {
	margin-bottom: 0;
	font-size: 14.5px;
}

.gwp-vacancy-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.gwp-vacancy-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	min-height: 54px;
	padding: 10px 12px;
	border: 1px solid var(--gwp-primary);
	border-radius: 12px;
	background: #fff;
	color: var(--gwp-primary);
	font-family: var(--gwp-font-heading);
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.3;
	transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.gwp-vacancy-option:hover,
.gwp-vacancy-option:focus-visible,
.gwp-vacancy-option.is-active {
	background: var(--gwp-primary);
	border-color: var(--gwp-primary);
	color: #fff;
	box-shadow: 0 8px 22px rgba(43, 147, 219, .18);
}

.gwp-vacancy-option:hover {
	transform: translateY(-2px);
}

.gwp-vacancy-option:focus-visible {
	outline: 3px solid rgba(43, 147, 219, .25);
	outline-offset: 2px;
}

.gwp-vacancy-option-media {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: var(--gwp-light-blue);
	color: var(--gwp-primary);
	overflow: hidden;
	transition: background-color .22s ease, color .22s ease;
}

.gwp-vacancy-option:hover .gwp-vacancy-option-media,
.gwp-vacancy-option:focus-visible .gwp-vacancy-option-media,
.gwp-vacancy-option.is-active .gwp-vacancy-option-media {
	background: rgba(255, 255, 255, .17);
	color: #fff;
}

.gwp-vacancy-option-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gwp-vacancy-option-label {
	min-width: 0;
	flex: 1 1 auto;
}

.gwp-vacancy-count {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--gwp-light-blue);
	color: var(--gwp-primary);
	font-size: 12px;
	font-weight: 700;
	transition: background-color .22s ease, color .22s ease;
}

.gwp-vacancy-option:hover .gwp-vacancy-count,
.gwp-vacancy-option:focus-visible .gwp-vacancy-count,
.gwp-vacancy-option.is-active .gwp-vacancy-count {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}

.gwp-available-jobs-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 20px;
}

.gwp-available-jobs-head h3,
.gwp-available-jobs-head p {
	margin-bottom: 0;
}

.gwp-job-result-count {
	font-size: 14px;
}

.gwp-jobs-results {
	position: relative;
	min-height: 120px;
	transition: opacity .2s ease;
}

.gwp-jobs-browser.is-loading .gwp-jobs-results {
	opacity: .45;
	pointer-events: none;
}

.gwp-jobs-browser.is-loading .gwp-jobs-results::after {
	content: "";
	position: absolute;
	top: 42px;
	left: 50%;
	width: 32px;
	height: 32px;
	margin-left: -16px;
	border: 3px solid rgba(43, 147, 219, .2);
	border-top-color: var(--gwp-primary);
	border-radius: 50%;
	animation: gwp-job-spin .7s linear infinite;
}

@keyframes gwp-job-spin {
	to { transform: rotate(360deg); }
}

.gwp-job-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 9px;
}

.gwp-job-categories .gwp-job-cat {
	margin: 0;
}

.gwp-job-summary-text {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--gwp-text);
	margin: 8px 0 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gwp-job-card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: auto;
}

.gwp-job-card-actions .gwp-btn {
	width: 100%;
	padding: 10px 12px;
	font-size: 13.5px;
}

.gwp-job-card-actions .gwp-job-apply {
	margin-top: 0;
}

.gwp-jobs-pagination {
	margin-top: 34px;
}

.gwp-jobs-pagination .page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.gwp-jobs-pagination .page-numbers li {
	margin: 0;
}

.gwp-jobs-pagination a.page-numbers,
.gwp-jobs-pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--gwp-border);
	border-radius: 10px;
	background: #fff;
	color: var(--gwp-navy);
	font-family: var(--gwp-font-heading);
	font-size: 13px;
	font-weight: 600;
}

.gwp-jobs-pagination a.page-numbers:hover,
.gwp-jobs-pagination span.page-numbers.current {
	background: var(--gwp-primary);
	border-color: var(--gwp-primary);
	color: #fff;
}

.gwp-jobs-empty {
	margin-top: 10px;
}

@media (max-width: 1024px) {
	.gwp-vacancy-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.gwp-jobs-browser {
		padding: 34px 0 56px;
	}

	.gwp-job-search-panel,
	.gwp-vacancy-options {
		padding: 18px;
	}

	.gwp-job-search-form {
		flex-direction: column;
	}

	.gwp-job-search-input-wrap {
		flex-basis: auto;
	}

	.gwp-job-search-form .gwp-btn {
		width: 100%;
		justify-content: center;
	}

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

	.gwp-vacancy-option {
		min-height: 58px;
	}

	.gwp-available-jobs-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
}

@media (max-width: 480px) {
	.gwp-vacancy-grid {
		grid-template-columns: 1fr;
	}

	.gwp-vacancy-option {
		width: 100%;
	}

	.gwp-job-card-actions {
		grid-template-columns: 1fr;
	}
}

/* ---------------------------------------------------------------
   30. Version 1.4.0 — mobile Jobs reliability + responsive media
   --------------------------------------------------------------- */

/* Job images use a predictable 16:9 media box. WordPress supplies srcset/sizes. */
.gwp-job-card-media {
	aspect-ratio: 16 / 9;
	background: #eef4f8;
}

.gwp-job-image {
	width: 100%;
	height: 100% !important;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
}

.gwp-job-category-label {
	display: inline-flex;
	align-items: center;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--gwp-text);
}

.gwp-job-meta {
	flex-wrap: wrap;
	row-gap: 6px;
}

/* Tablet stays at two columns even when the browser is placed inside Elementor. */
@media (max-width: 1024px) and (min-width: 769px) {
	.gwp-jobs-browser .gwp-jobs-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	/* Compact two-row contact bar: email + phone, then working hours. */
	.topbar {
		font-size: 13.5px;
	}

	.topbar-inner {
		min-height: 0;
		padding-top: 7px;
		padding-bottom: 7px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
	}

	.topbar-left,
	.topbar-right {
		width: 100%;
		justify-content: center;
		align-items: center;
		gap: 4px 14px;
	}

	.topbar-left {
		flex-wrap: wrap;
	}

	.topbar-left .topbar-email span,
	.topbar-left .topbar-email .gwp-icon,
	.topbar-right .topbar-hours {
		display: inline-flex;
	}

	.topbar-right .topbar-hours {
		font-size: 13px;
	}

	.topbar-item {
		line-height: 1.35;
		white-space: nowrap;
	}

	/* Language selector is kept out of the compact mobile contact bar. */
	.topbar-lang {
		display: none;
	}

	/* Main mobile header alignment and touch target. */
	.navbar-inner {
		min-height: 72px;
		gap: 12px;
	}

	.navbar-logo,
	.navbar-actions {
		min-width: 0;
	}

	.navbar-actions {
		margin-left: auto;
		gap: 8px;
	}

	.gwp-logo-img,
	.gwp-logo-img-bundled {
		width: auto;
		height: auto;
		max-width: 54px;
		max-height: 54px;
		object-fit: contain;
	}

	.menu-toggle {
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
		flex: 0 0 44px;
		margin: 0;
	}

	.mobile-menu-list a {
		font-size: 15.5px;
	}

	.mobile-menu-list .sub-menu a {
		font-size: 14px;
	}

	/* Responsive headings: avoid Elementor/theme typography overflowing narrow screens. */
	.gwp-page-header .gwp-page-title,
	.gwp-job-hero .gwp-job-title,
	.gwp-jobs-browser-intro h2 {
		overflow-wrap: break-word;
		word-break: normal;
	}

	.gwp-page-header .gwp-page-title {
		font-size: clamp(2rem, 9vw, 2.4rem);
	}

	.gwp-job-hero .gwp-job-title {
		font-size: clamp(1.85rem, 8vw, 2.3rem);
	}

	.gwp-jobs-browser-intro h2 {
		font-size: clamp(1.7rem, 7vw, 2rem);
	}

	.gwp-job-search-panel > h3,
	.gwp-vacancy-options-head h3,
	.gwp-available-jobs-head h3 {
		font-size: clamp(1.15rem, 5vw, 1.35rem);
	}

	/* The Jobs browser must grow naturally; never clip cards on mobile. */
	.elementor-widget-gwp-jobs-browser,
	.elementor-widget-gwp-jobs-browser > .elementor-widget-container,
	.gwp-jobs-browser,
	.gwp-jobs-results,
	.gwp-jobs-results-inner,
	.gwp-jobs-browser .gwp-jobs-grid {
		height: auto !important;
		max-height: none !important;
		min-width: 0;
		overflow: visible !important;
	}

	.gwp-jobs-browser .gwp-jobs-grid {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 20px !important;
		width: 100%;
	}

	.gwp-jobs-browser .gwp-jobs-grid > .gwp-job-card {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: relative;
		width: 100%;
		min-width: 0;
		height: auto;
		max-height: none !important;
	}

	.gwp-jobs-browser .gwp-job-card-media {
		width: 100%;
		aspect-ratio: 16 / 9;
		height: auto;
		min-height: 0;
	}

	.gwp-jobs-browser .gwp-job-image {
		display: block;
		width: 100%;
		height: 100%;
		max-height: none;
		object-fit: cover;
	}

	.gwp-job-card-body,
	.gwp-job-card-actions,
	.gwp-job-search-input-wrap,
	.gwp-vacancy-option,
	.gwp-available-jobs-head {
		min-width: 0;
	}

	.gwp-job-title,
	.gwp-job-summary-text,
	.gwp-vacancy-option-label,
	.gwp-job-location,
	.gwp-job-salary {
		overflow-wrap: anywhere;
	}

	.gwp-job-card-actions .gwp-btn {
		min-height: 44px;
	}
}

@media (max-width: 480px) {
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.topbar-inner {
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.topbar-left {
		gap: 5px 12px;
	}

	.navbar-inner {
		min-height: 68px;
	}

	.gwp-logo-img,
	.gwp-logo-img-bundled {
		max-width: 50px;
		max-height: 50px;
	}

	.gwp-job-search-panel,
	.gwp-vacancy-options {
		padding: 16px;
	}

	.gwp-job-card-body {
		padding: 18px;
	}

	.gwp-job-card-actions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 360px) {
	.topbar {
		font-size: 12.5px;
	}

	.topbar-right .topbar-hours {
		font-size: 12.5px;
	}

	.topbar-left,
	.topbar-right {
		gap: 4px 10px;
	}
}

.gwp-job-location strong,
.gwp-job-salary strong {
	color: var(--gwp-navy);
	font-weight: 700;
}

/* Treat 768px as tablet for the Jobs result grid, per the theme's device matrix. */
@media (min-width: 768px) and (max-width: 1024px) {
	.gwp-jobs-browser .gwp-jobs-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

/* ---------------------------------------------------------------
   31. Version 1.5.0 — mobile homepage header, off-canvas menu + jobs
   --------------------------------------------------------------- */

/* Official uploaded brand mark. Keep the source proportional and sharp. */
.gwp-logo-img,
.gwp-logo-img-bundled {
	object-fit: contain;
	object-position: center;
}

/* Modern off-canvas menu. It remains inert and off-screen until JS opens it. */
.mobile-menu-backdrop {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(2, 31, 61, .48);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .28s ease, visibility .28s ease;
}

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

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	width: min(88vw, 380px);
	height: 100vh;
	height: 100dvh;
	background: #fff;
	border: 0;
	border-radius: 20px 0 0 20px;
	box-shadow: -22px 0 52px rgba(3, 43, 84, .18);
	transform: translate3d(104%, 0, 0);
	visibility: hidden;
	pointer-events: none;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	transition: transform .3s cubic-bezier(.22, .8, .25, 1), visibility .3s ease;
}

.mobile-menu.is-open {
	transform: translate3d(0, 0, 0);
	visibility: visible;
	pointer-events: auto;
}

.mobile-menu-shell {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 18px 20px max(22px, env(safe-area-inset-bottom));
}

.mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--gwp-border);
}

.mobile-menu-logo {
	display: flex;
	align-items: center;
	min-width: 0;
}

.mobile-menu-logo .gwp-logo-img {
	display: block;
	width: 54px;
	height: 54px;
	max-width: 54px;
	max-height: 54px;
}

.mobile-menu-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	border: 1px solid var(--gwp-border);
	border-radius: 12px;
	background: #fff;
	color: var(--gwp-navy);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
	background: var(--gwp-light-blue);
	border-color: rgba(43, 147, 219, .35);
	color: var(--gwp-primary);
}

.mobile-nav {
	padding: 14px 0 8px;
}

.mobile-menu-list,
.mobile-menu .nav-menu {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu-list > li,
.mobile-menu .nav-menu > li {
	border-bottom: 1px solid #edf2f6;
}

.mobile-menu-list > li:last-child,
.mobile-menu .nav-menu > li:last-child {
	border-bottom: 0;
}

.mobile-menu-list a,
.mobile-menu .nav-menu a,
.mobile-menu .nav-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 12px 4px;
	border-radius: 8px;
	background: transparent;
	font-family: var(--gwp-font-heading);
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .25px;
	text-transform: uppercase;
	color: var(--gwp-navy);
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus-visible,
.mobile-menu .nav-menu a:hover,
.mobile-menu .nav-menu a:focus-visible {
	background: var(--gwp-light-blue);
	color: var(--gwp-primary);
}

.mobile-menu-list .sub-menu,
.mobile-menu .nav-menu .sub-menu {
	position: static;
	min-width: 0;
	margin: -2px 0 8px;
	padding: 0 0 0 14px;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	background: transparent;
}

.mobile-menu-list .sub-menu a,
.mobile-menu .nav-menu .sub-menu a {
	min-height: 42px;
	padding: 9px 4px;
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
}

.mobile-menu-actions {
	margin-top: auto;
	padding: 18px 0 0;
}

.mobile-menu-actions .gwp-btn {
	width: 100%;
	min-height: 48px;
	justify-content: center;
	font-weight: 700;
}

body.gwp-menu-open {
	overflow: hidden;
}

/* Homepage vacancy cards use a native 16:9 media area and responsive WP images. */
.gwp-jobs-section .gwp-job-card-media {
	aspect-ratio: 16 / 9;
}

.gwp-jobs-section .gwp-job-image {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

/* Tablet: make the latest-vacancy carousel a clean two-column grid. */
@media (max-width: 1024px) {
	.gwp-jobs-section .gwp-jobs-scroller {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
		margin: 0;
		padding: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.gwp-jobs-section .gwp-jobs-scroller .gwp-job-card {
		flex: none;
		width: 100%;
		min-width: 0;
		scroll-snap-align: none;
	}

	.gwp-jobs-section .gwp-carousel-nav {
		display: none;
	}
}

/* Phone layout: no contact strip, compact header, one vertically scrollable job card per row. */
@media (max-width: 767px) {
	.site-header .topbar {
		display: none !important;
		height: 0 !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
	}

	.navbar {
		box-shadow: 0 4px 18px rgba(3, 43, 84, .07);
	}

	.navbar-inner {
		min-height: 76px;
		gap: 14px;
		padding-left: max(16px, env(safe-area-inset-left));
		padding-right: max(16px, env(safe-area-inset-right));
	}

	.navbar-logo {
		display: flex;
		align-items: center;
		min-width: 0;
	}

	.navbar-logo .gwp-logo-link {
		display: inline-flex;
		align-items: center;
		line-height: 0;
	}

	.navbar-logo .gwp-logo-img,
	.navbar-logo .gwp-logo-img-bundled {
		display: block;
		width: 60px;
		height: 60px;
		max-width: 60px;
		max-height: 60px;
		border-radius: 0;
	}

	.navbar-actions {
		margin-left: auto;
	}

	.menu-toggle {
		width: 46px;
		height: 46px;
		min-width: 46px;
		min-height: 46px;
		border-radius: 12px;
		box-shadow: 0 4px 12px rgba(3, 43, 84, .06);
	}

	/* Avoid keeping a second close icon visible behind the open off-canvas panel. */
	.menu-toggle[aria-expanded="true"] .menu-toggle-open {
		display: inline-flex;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle-close {
		display: none;
	}

	.gwp-hero-inner {
		padding-top: 34px;
	}

	.gwp-hero-title {
		font-size: clamp(2rem, 9vw, 2.45rem);
		overflow-wrap: break-word;
	}

	.gwp-hero-text {
		font-size: clamp(1rem, 4.3vw, 1.12rem);
		line-height: 1.65;
	}

	.gwp-section-title {
		font-size: clamp(1.65rem, 7vw, 2rem);
		overflow-wrap: break-word;
	}

	.gwp-jobs-section .gwp-jobs-scroller {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
		width: 100%;
		height: auto;
		max-height: none;
		overflow: visible !important;
	}

	.gwp-jobs-section .gwp-jobs-scroller > .gwp-job-card {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: relative;
		width: 100% !important;
		max-width: none;
		height: auto;
		max-height: none;
	}

	.gwp-jobs-section .gwp-job-title {
		font-size: clamp(1.2rem, 5vw, 1.45rem);
	}

	.gwp-jobs-section .gwp-job-summary-text {
		font-size: 15px;
		line-height: 1.65;
	}

	.gwp-jobs-toolbar {
		align-items: center;
	}

	.gwp-jobs-toolbar > .gwp-btn {
		width: 100%;
		min-height: 44px;
		justify-content: center;
	}
}

@media (max-width: 430px) {
	.navbar-inner {
		min-height: 72px;
		padding-left: max(16px, env(safe-area-inset-left));
		padding-right: max(16px, env(safe-area-inset-right));
	}

	.navbar-logo .gwp-logo-img,
	.navbar-logo .gwp-logo-img-bundled {
		width: 56px;
		height: 56px;
		max-width: 56px;
		max-height: 56px;
	}

	.mobile-menu {
		width: min(90vw, 360px);
	}

	.gwp-jobs-section .gwp-job-card-body {
		padding: 18px;
	}
}

@media (max-width: 360px) {
	.navbar-inner {
		padding-left: max(14px, env(safe-area-inset-left));
		padding-right: max(14px, env(safe-area-inset-right));
	}

	.navbar-logo .gwp-logo-img,
	.navbar-logo .gwp-logo-img-bundled {
		width: 52px;
		height: 52px;
		max-width: 52px;
		max-height: 52px;
	}

	.mobile-menu-shell {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (min-width: 1081px) {
	.mobile-menu,
	.mobile-menu-backdrop {
		display: none !important;
	}
}
