:root {
	--gk-navy: #252957;
	--gk-indigo: #3f4276;
	--gk-slate: #5c638d;
	--gk-blue: #1769e0;
	--gk-blue-dark: #0e4fae;
	--gk-teal: #18b6a3;
	--gk-yellow: #f5b84b;
	--gk-ink: #111529;
	--gk-muted: #60677d;
	--gk-line: #d9dfec;
	--gk-soft: #f3f6fb;
	--gk-ice: #eaf3fb;
	--gk-white: #ffffff;
	--gk-shadow: 0 18px 48px rgba(37, 41, 87, 0.14);
	--gk-shadow-soft: 0 10px 28px rgba(37, 41, 87, 0.08);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--gk-ink);
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	width: min(1160px, calc(100% - 32px));
	margin-inline: auto;
}

.narrow {
	width: min(780px, calc(100% - 32px));
}

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

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--gk-white);
	border: 1px solid var(--gk-line);
	border-radius: 8px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(37, 41, 87, 0.12);
	box-shadow: 0 8px 24px rgba(37, 41, 87, 0.06);
	backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	min-width: 126px;
	overflow: visible;
}

.site-title {
	font-size: 1.22rem;
	font-weight: 900;
	color: var(--gk-navy);
}

.custom-logo {
	display: block;
	max-height: 58px;
	width: auto;
	transform: scale(1.22);
	transform-origin: left center;
}

.site-navigation ul,
.site-footer ul {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation a,
.site-footer a {
	position: relative;
	color: var(--gk-muted);
	font-weight: 750;
}

.site-navigation a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 3px;
	border-radius: 999px;
	background: var(--gk-teal);
	content: "";
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 160ms ease, transform 160ms ease;
}

.site-navigation a:hover,
.site-footer a:hover,
.text-link:hover {
	color: var(--gk-navy);
}

.site-navigation a:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--gk-blue), var(--gk-indigo));
	color: var(--gk-white);
	font-weight: 850;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(23, 105, 224, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover,
button.button:hover {
	filter: brightness(0.96);
	box-shadow: 0 14px 28px rgba(23, 105, 224, 0.28);
	transform: translateY(-1px);
}

.button-small {
	min-height: 38px;
	padding-inline: 15px;
	font-size: 0.92rem;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 86px 0 72px;
	background:
		linear-gradient(115deg, rgba(37, 41, 87, 0.97) 0%, rgba(63, 66, 118, 0.94) 54%, rgba(23, 105, 224, 0.86) 100%),
		var(--gk-navy);
	color: var(--gk-white);
}

.hero::before,
.hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.22);
	content: "";
}

.hero::after {
	inset: 0;
	height: auto;
	background-image:
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.06));
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
	gap: 48px;
	align-items: center;
}

.hero h1,
.page-hero h1,
.job-detail-hero h1 {
	margin: 0;
	font-size: clamp(2.6rem, 6vw, 5rem);
	line-height: 1;
	letter-spacing: 0;
}

.hero p {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.12rem;
}

.hero .eyebrow {
	color: #aeeae1;
}

.hero-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.hero-highlights span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.9rem;
	font-weight: 750;
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--gk-teal);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-panel {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 24px 70px rgba(8, 13, 39, 0.28);
}

.page-hero,
.job-detail-hero {
	padding: 56px 0;
	background:
		linear-gradient(135deg, rgba(234, 243, 251, 0.92), rgba(255, 255, 255, 0.86)),
		var(--gk-ice);
	border-bottom: 1px solid var(--gk-line);
}

.page-hero h1,
.job-detail-hero h1 {
	color: var(--gk-navy);
}

.section {
	padding: 58px 0;
}

.section-muted {
	background:
		linear-gradient(180deg, #f6f9fe 0%, #eef4fb 100%);
}

.section-heading,
.results-bar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.section-heading h2 {
	margin: 0;
	color: var(--gk-ink);
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	line-height: 1.12;
}

.text-link {
	color: var(--gk-blue);
	font-weight: 900;
}

.job-search-form {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr 1fr auto;
	gap: 12px;
	align-items: end;
}

.hero-panel .job-search-form,
.page-hero .job-search-form {
	grid-template-columns: 1fr 1fr;
}

.job-search-form label {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.job-search-form span {
	color: var(--gk-indigo);
	font-size: 0.82rem;
	font-weight: 850;
}

.job-search-form input,
.job-search-form select {
	width: 100%;
	min-height: 48px;
	padding: 0 13px;
	border: 1px solid #cfd7e8;
	border-radius: 8px;
	background: #fbfdff;
	color: var(--gk-ink);
	font: inherit;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.job-search-form input:focus,
.job-search-form select:focus {
	border-color: var(--gk-blue);
	background: var(--gk-white);
	box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.12);
}

.job-search-form button {
	white-space: nowrap;
}

.job-list {
	display: grid;
	gap: 15px;
}

.job-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 20px;
	overflow: hidden;
	border: 1px solid rgba(37, 41, 87, 0.12);
	border-radius: 12px;
	background: var(--gk-white);
	box-shadow: var(--gk-shadow-soft);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.job-card::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	background: linear-gradient(180deg, var(--gk-teal), var(--gk-blue));
	content: "";
}

.job-card:hover {
	border-color: rgba(23, 105, 224, 0.38);
	box-shadow: var(--gk-shadow);
	transform: translateY(-2px);
}

.job-card-main,
.job-detail-head {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 17px;
	align-items: center;
}

.job-detail-head {
	grid-template-columns: 74px minmax(0, 1fr) auto;
}

.company-logo {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	overflow: hidden;
	border: 1px solid rgba(37, 41, 87, 0.14);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(37, 41, 87, 0.08), rgba(24, 182, 163, 0.12)),
		var(--gk-white);
	color: var(--gk-navy);
	font-weight: 900;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.job-detail-head .company-logo {
	width: 74px;
	height: 74px;
}

.company-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.job-card h2 {
	margin: 0 0 2px;
	color: var(--gk-navy);
	font-size: 1.1rem;
	line-height: 1.3;
}

.job-card p,
.job-meta {
	margin: 0;
	color: var(--gk-muted);
}

.job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 0.92rem;
}

.job-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 2px 10px;
	border: 1px solid rgba(37, 41, 87, 0.08);
	border-radius: 999px;
	background: #f0f5fb;
	color: var(--gk-indigo);
	font-weight: 650;
}

.content-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 32px;
	align-items: start;
}

.sidebar {
	display: grid;
	gap: 18px;
}

.job-detail,
.entry-content {
	display: grid;
	gap: 28px;
}

.job-detail section,
.apply-box,
.job-summary,
.widget {
	padding: 24px;
	border: 1px solid rgba(37, 41, 87, 0.12);
	border-radius: 12px;
	background: var(--gk-white);
	box-shadow: var(--gk-shadow-soft);
}

.apply-box {
	background:
		linear-gradient(135deg, rgba(24, 182, 163, 0.11), rgba(23, 105, 224, 0.1)),
		var(--gk-white);
}

.job-detail h2,
.job-summary h2,
.widget-title {
	margin: 0 0 12px;
	color: var(--gk-navy);
	font-size: 1.22rem;
}

.job-summary dl {
	display: grid;
	gap: 10px;
	margin: 0;
}

.job-summary dt {
	color: var(--gk-muted);
	font-size: 0.82rem;
	font-weight: 850;
}

.job-summary dd {
	margin: -8px 0 4px;
}

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

.category-tile,
.company-card,
.post-card {
	padding: 22px;
	border: 1px solid rgba(37, 41, 87, 0.12);
	border-radius: 12px;
	background: var(--gk-white);
	box-shadow: var(--gk-shadow-soft);
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-tile {
	position: relative;
	overflow: hidden;
}

.category-tile::before {
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--gk-teal), var(--gk-blue), var(--gk-yellow));
	content: "";
}

.category-tile:hover,
.company-card:hover,
.post-card:hover {
	border-color: rgba(23, 105, 224, 0.34);
	box-shadow: var(--gk-shadow);
	transform: translateY(-2px);
}

.category-tile span,
.company-card h2,
.post-card h2 {
	display: block;
	margin: 0;
	color: var(--gk-navy);
	font-weight: 900;
}

.category-tile small {
	color: var(--gk-muted);
}

.post-list {
	display: grid;
	gap: 18px;
}

.post-card a {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
}

.post-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 8px;
}

.ad-slot {
	display: grid;
	place-items: center;
	min-height: 96px;
	padding: 16px;
	border: 1px dashed rgba(63, 66, 118, 0.34);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(37, 41, 87, 0.04), rgba(24, 182, 163, 0.06)),
		#fbfdff;
	color: var(--gk-muted);
	font-size: 0.88rem;
	text-align: center;
}

.ad-slot-header {
	width: min(1160px, calc(100% - 32px));
	min-height: 72px;
	margin: 16px auto 0;
}

.empty-state {
	padding: 34px;
	border: 1px solid rgba(37, 41, 87, 0.12);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(37, 41, 87, 0.05), rgba(24, 182, 163, 0.08)),
		var(--gk-white);
	box-shadow: var(--gk-shadow-soft);
	text-align: center;
}

.empty-state h2 {
	color: var(--gk-navy);
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--gk-line);
	border-radius: 8px;
	background: var(--gk-white);
}

.pagination .current {
	background: var(--gk-navy);
	color: var(--gk-white);
	border-color: var(--gk-navy);
}

.site-footer {
	padding: 36px 0;
	background:
		linear-gradient(135deg, #1b1f45, #252957 58%, #30366c),
		var(--gk-navy);
	color: var(--gk-white);
}

.site-footer p,
.site-footer a {
	color: #d7def0;
}

.loading {
	opacity: 0.56;
	pointer-events: none;
}

@media (max-width: 960px) {
	.hero-grid,
	.content-sidebar,
	.job-search-form,
	.hero-panel .job-search-form,
	.page-hero .job-search-form,
	.category-grid,
	.card-grid {
		grid-template-columns: 1fr;
	}

	.header-inner,
	.footer-inner,
	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.header-inner {
		padding-block: 14px;
	}

	.site-navigation ul,
	.site-footer ul {
		flex-wrap: wrap;
		gap: 12px 18px;
	}

	.job-detail-head {
		grid-template-columns: 60px minmax(0, 1fr);
	}

	.apply-button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.container,
	.narrow {
		width: min(100% - 24px, 1160px);
	}

	.hero,
	.section,
	.page-hero,
	.job-detail-hero {
		padding-block: 38px;
	}

	.hero h1,
	.page-hero h1,
	.job-detail-hero h1 {
		font-size: 2.55rem;
	}

	.hero-panel {
		padding: 18px;
	}

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

	.job-card .button {
		width: 100%;
	}

	.post-card a,
	.job-card-main {
		grid-template-columns: 1fr;
	}
}

