/**
 * Home page shortcodes – Jobs in the Channel
 * Matches devdocs/hp-example.html (brand colors and layout)
 */
:root {
	--jitc-home-blue: #34a2e0;
	--jitc-home-orange: #f1911c;
	--jitc-home-green: #95c15e;
	--jitc-home-green-light: #e5f2d4;
	--jitc-home-grey: #5b5b5b;
	--jitc-home-slate-50: #f8fafc;
	--jitc-home-slate-100: #f1f5f9;
	--jitc-home-slate-400: #94a3b8;
	--jitc-home-slate-500: #64748b;
	--jitc-home-slate-600: #475569;
	--jitc-home-slate-700: #334155;
	--jitc-home-slate-800: #1e293b;
	--jitc-home-slate-900: #0f172a;
	--jitc-home-max-w: 80rem;
}

/* Hero */
.jitc-home-hero {
	position: relative;
	padding: 8rem 1rem 5rem;
	overflow: hidden;
}
@media (min-width: 768px) {
	.jitc-home-hero {
		padding: 12rem 1.5rem 8rem;
	}
}

.jitc-home-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to bottom right, var(--jitc-home-slate-100), #fff);
}
.jitc-home-hero__bg::before,
.jitc-home-hero__bg::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	filter: blur(40px);
}
.jitc-home-hero__bg::before {
	top: 5rem;
	right: -10%;
	width: 50%;
	height: 50%;
	background: var(--jitc-home-blue);
}
.jitc-home-hero__bg::after {
	bottom: 2.5rem;
	left: -5%;
	width: 40%;
	height: 40%;
	background: var(--jitc-home-green);
}

.jitc-home-hero__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
	text-align: center;
}

.jitc-home-hero__title {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--jitc-home-slate-900);
	margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
	.jitc-home-hero__title {
		font-size: 3.75rem;
	}
}
.jitc-home-hero__accent--blue { color: var(--jitc-home-blue); }
.jitc-home-hero__accent--orange { color: var(--jitc-home-orange); }
.jitc-home-hero__title .italic { font-style: italic; }

.jitc-home-hero__subtitle {
	font-size: 1.25rem;
	color: var(--jitc-home-slate-600);
	max-width: 42rem;
	margin: 0 auto 2.5rem;
}

.jitc-home-hero__search {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 56rem;
	margin: 0 auto;
	background: #fff;
	padding: 0.5rem;
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
	.jitc-home-hero__search {
		flex-direction: row;
		border-radius: 9999px;
		align-items: center;
		gap: 0;
	}
}

.jitc-home-hero__search-row {
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
}
@media (min-width: 768px) {
	.jitc-home-hero__search-row {
		flex-direction: row;
		flex: 2;
		align-items: center;
	}
}

.jitc-home-hero__search-field {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 1rem;
	width: 100%;
}
.jitc-home-hero__search-field:first-child {
	border-bottom: 1px solid var(--jitc-home-slate-100);
	padding-bottom: 0.5rem;
	padding-top: 0.25rem;
}
@media (min-width: 768px) {
	.jitc-home-hero__search-field:first-child {
		border-bottom: none;
		padding: 0;
	}
}

.jitc-home-hero__search-icon {
	flex-shrink: 0;
	color: var(--jitc-home-slate-400);
}
.jitc-home-hero__input {
	flex: 1;
	min-width: 0;
	padding: 0.75rem 0;
	border: none;
	outline: none;
	background: transparent;
	color: var(--jitc-home-slate-700);
	font-size: 1rem;
}
.jitc-home-hero__input::placeholder {
	color: var(--jitc-home-slate-400);
}

.jitc-home-hero__search-divider {
	display: none;
	width: 1px;
	height: 2rem;
	background: var(--jitc-home-slate-200, #e2e8f0);
}
@media (min-width: 768px) {
	.jitc-home-hero__search-divider {
		display: block;
	}
}

.jitc-home-hero__submit {
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	border: none;
	background: var(--jitc-home-blue);
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	cursor: pointer;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s;
	margin-top: 0.5rem;
}
@media (min-width: 768px) {
	.jitc-home-hero__submit {
		margin-top: 0;
		border-radius: 9999px;
		width: auto;
	}
}
.jitc-home-hero__submit:hover {
	filter: brightness(1.1);
	transform: scale(1.02);
}

.jitc-home-hero__popular {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--jitc-home-slate-500);
}
.jitc-home-hero__popular-label {
	margin-right: 0.25rem;
}
.jitc-home-hero__popular-link {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.jitc-home-hero__popular-link:hover {
	color: var(--jitc-home-blue);
}

/* Sectors – Choose Your Path */
.jitc-home-sectors {
	padding: 5rem 1rem;
	background: #fff;
}
.jitc-home-sectors__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
}

.jitc-home-sectors__header {
	text-align: center;
	margin-bottom: 3rem;
}
.jitc-home-sectors__title {
	font-size: 1.875rem;
	font-weight: 700;
	margin: 0 0 1rem;
	color: var(--jitc-home-slate-900);
}
.jitc-home-sectors__subtitle {
	color: var(--jitc-home-slate-500);
	margin: 0;
}

.jitc-home-sectors__grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) {
	.jitc-home-sectors__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.jitc-home-sector {
	display: block;
	padding: 2rem;
	border-radius: 1.5rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s;
}
.jitc-home-sector:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.jitc-home-sector__blob {
	position: absolute;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	margin: -2rem -2rem 0 0;
	border-radius: 50%;
	opacity: 0.05;
	transition: transform 0.5s;
}
.jitc-home-sector:hover .jitc-home-sector__blob {
	transform: scale(1.5);
}
.jitc-home-sector--blue .jitc-home-sector__blob { background: var(--jitc-home-blue); }
.jitc-home-sector--orange .jitc-home-sector__blob { background: var(--jitc-home-orange); }
.jitc-home-sector--green .jitc-home-sector__blob { background: var(--jitc-home-green); }

.jitc-home-sector__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	color: #fff;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5rem;
}
.jitc-home-sector--blue .jitc-home-sector__icon { background: var(--jitc-home-blue); }
.jitc-home-sector--orange .jitc-home-sector__icon { background: var(--jitc-home-orange); }
.jitc-home-sector--green .jitc-home-sector__icon { background: var(--jitc-home-green); }

.jitc-home-sector__name {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	color: var(--jitc-home-slate-900);
}
.jitc-home-sector__desc {
	color: var(--jitc-home-slate-500);
	margin: 0 0 1.5rem;
	line-height: 1.5;
}
.jitc-home-sector__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	transition: transform 0.2s;
}
.jitc-home-sector--blue .jitc-home-sector__link { color: var(--jitc-home-blue); }
.jitc-home-sector--orange .jitc-home-sector__link { color: var(--jitc-home-orange); }
.jitc-home-sector--green .jitc-home-sector__link { color: var(--jitc-home-green); }
.jitc-home-sector:hover .jitc-home-sector__link {
	transform: translateX(0.5rem);
}

/* Latest jobs */
.jitc-home-latest {
	padding: 5rem 1rem;
	background: var(--jitc-home-slate-50);
}
.jitc-home-latest__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
}

.jitc-home-latest__header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
	.jitc-home-latest__header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.jitc-home-latest__title {
	font-size: 1.875rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--jitc-home-slate-900);
}
.jitc-home-latest__subtitle {
	color: var(--jitc-home-slate-500);
	margin: 0;
}

.jitc-home-latest__tabs {
	display: flex;
	flex-wrap: wrap;
	background: var(--jitc-home-slate-200, #e2e8f0);
	padding: 0.25rem;
	border-radius: 0.75rem;
	gap: 0.25rem;
}
.jitc-home-latest__tab {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--jitc-home-slate-600);
	transition: color 0.2s;
}
.jitc-home-latest__tab:hover {
	color: var(--jitc-home-slate-900);
}
.jitc-home-latest__tab--active {
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.jitc-home-latest__tab--active:first-child { color: var(--jitc-home-grey); }
.jitc-home-latest__tab--active:not(:first-child) { color: var(--jitc-home-blue); }

.jitc-home-latest__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.jitc-home-latest__empty {
	text-align: center;
	color: var(--jitc-home-slate-500);
	padding: 2rem;
}

.jitc-home-job {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.2s;
}
.jitc-home-job:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
	.jitc-home-job {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.jitc-home-job__main {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}
.jitc-home-job__avatar {
	width: 6rem;
	height: 4rem;
	border-radius: 0.75rem;
	background: var(--jitc-home-slate-50);
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--jitc-home-slate-400);
	flex-shrink: 0;
	overflow: hidden;
}
.jitc-home-job__avatar-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 5px;
	box-sizing: border-box;
}
.jitc-home-job__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}
.jitc-home-job__title a {
	color: inherit;
	text-decoration: none;
}
.jitc-home-job__title a:hover {
	color: var(--jitc-home-blue);
}
.jitc-home-job__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--jitc-home-slate-500);
}
.jitc-home-job__company,
.jitc-home-job__location {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}
.jitc-home-job__type {
	padding: 0.125rem 0.5rem;
	border-radius: 0.375rem;
	background: var(--jitc-home-slate-100, #f1f5f9);
	color: var(--jitc-home-slate-700);
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.jitc-home-job__aside {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	flex-wrap: wrap;
}
@media (min-width: 768px) {
	.jitc-home-job__aside {
		flex-direction: column;
		align-items: flex-end;
		justify-content: center;
	}
}
.jitc-home-job__salary {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--jitc-home-slate-800);
}
.jitc-home-job__date {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--jitc-home-slate-400);
}
.jitc-home-job__apply {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border-radius: 9999px;
	background: var(--jitc-home-blue);
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	transition: filter 0.2s;
}
.jitc-home-job__apply:hover {
	color: #fff;
	filter: brightness(1.1);
}

.jitc-home-latest__footer {
	margin-top: 3rem;
	text-align: center;
}
.jitc-home-latest__view-all {
	display: inline-block;
	padding: 1rem 2.5rem;
	border-radius: 9999px;
	border: 2px solid var(--jitc-home-slate-200, #e2e8f0);
	font-weight: 700;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s;
}
.jitc-home-latest__view-all:hover {
	background: var(--jitc-home-slate-50);
}

/* Hiring CTA */
.jitc-home-cta {
	padding: 5rem 1rem;
}
.jitc-home-cta__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
	background: var(--jitc-home-slate-900);
	border-radius: 2.5rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
@media (min-width: 1024px) {
	.jitc-home-cta__inner {
		flex-direction: row;
	}
}

.jitc-home-cta__content {
	padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
	.jitc-home-cta__content {
		padding: 5rem;
	}
}
@media (min-width: 1024px) {
	.jitc-home-cta__content {
		width: 50%;
		padding: 5rem;
	}
}

.jitc-home-cta__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem;
}
.jitc-home-cta__title {
	font-size: 2.25rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
	.jitc-home-cta__title {
		font-size: 3rem;
	}
}
.jitc-home-cta__accent {
	color: var(--jitc-home-orange);
}
.jitc-home-cta__text {
	font-size: 1.125rem;
	color: var(--jitc-home-slate-400);
	line-height: 1.6;
	margin: 0 0 2.5rem;
}
.jitc-home-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 640px) {
	.jitc-home-cta__actions {
		flex-direction: row;
	}
}
.jitc-home-cta__btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, filter 0.2s;
}
.jitc-home-cta__btn--ghost {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}
.jitc-home-cta__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}
.jitc-home-cta__btn--primary {
	background: var(--jitc-home-orange);
	color: #fff;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.jitc-home-cta__btn--primary:hover {
	color: #fff;
	filter: brightness(1.1);
}

.jitc-home-cta__visual {
	position: relative;
	min-height: 18.75rem;
	background: var(--jitc-home-slate-800);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.jitc-home-cta__visual {
		width: 50%;
	}
}
.jitc-home-cta__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image: radial-gradient(circle, #fff 1px, transparent 1px);
	background-size: 24px 24px;
}
.jitc-home-cta__icons {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 1rem;
}
.jitc-home-cta__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border: 4px solid var(--jitc-home-slate-900);
}
.jitc-home-cta__icon--blue { background: var(--jitc-home-blue); }
.jitc-home-cta__icon--orange { background: var(--jitc-home-orange); }
.jitc-home-cta__icon--green { background: var(--jitc-home-green); }

/* Footer */
.jitc-home-footer {
	background: #fff;
	padding-top: 5rem;
	padding-bottom: 2.5rem;
	border-top: 1px solid var(--jitc-home-slate-100, #f1f5f9);
}
.jitc-home-footer__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
	padding: 0 1rem;
}

.jitc-home-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}
@media (min-width: 768px) {
	.jitc-home-footer__grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}
}

.jitc-home-footer__brand {
	grid-column: 1 / -1;
}
@media (min-width: 768px) {
	.jitc-home-footer__brand {
		grid-column: span 1;
	}
}

.jitc-home-footer__logo {
	display: flex;
	align-items: flex-end;
	gap: 0.25rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	margin-bottom: 1.5rem;
}
/* Site logo (when set in Customizer → Site Identity) */
.jitc-home-footer__logo .custom-logo-link {
	display: inline-block;
	line-height: 0;
	box-sizing: border-box;
}
.jitc-home-footer__logo .custom-logo {
	max-height: 4.5rem;
	width: auto;
	height: auto;
	vertical-align: bottom;
	object-fit: contain;
	display: block;
}
.jitc-home-footer__logo-word--grey { color: var(--jitc-home-grey); }
.jitc-home-footer__logo-word--blue { color: var(--jitc-home-blue); font-size: 1.125rem; }
.jitc-home-footer__logo-word--orange { color: var(--jitc-home-orange); font-size: 1.125rem; }
.jitc-home-footer__logo-word--green { color: var(--jitc-home-green); font-size: 1.125rem; }
.jitc-home-footer__logo .italic { font-style: italic; }

.jitc-home-footer__tagline {
	color: var(--jitc-home-slate-500);
	max-width: 24rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}
.jitc-home-footer__social {
	display: flex;
	gap: 1rem;
}
.jitc-home-footer__social-link {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--jitc-home-slate-100, #f1f5f9);
	color: var(--jitc-home-slate-600);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}
.jitc-home-footer__social-link:hover {
	background: rgba(52, 162, 224, 0.15);
	color: var(--jitc-home-blue);
}

.jitc-home-footer__col-title {
	font-weight: 700;
	margin: 0 0 1.5rem;
	color: var(--jitc-home-slate-900);
}
.jitc-home-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.jitc-home-footer__links li {
	margin-bottom: 1rem;
}
.jitc-home-footer__links a {
	color: var(--jitc-home-slate-500);
	font-weight: 500;
	text-decoration: none;
}
.jitc-home-footer__links a:hover {
	color: var(--jitc-home-blue);
}

.jitc-home-footer__bottom {
	padding-top: 2.5rem;
	border-top: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
}
@media (min-width: 768px) {
	.jitc-home-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
.jitc-home-footer__copy {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--jitc-home-slate-400);
	margin: 0;
}
.jitc-home-footer__legal {
	display: flex;
	gap: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
}
.jitc-home-footer__legal a {
	color: var(--jitc-home-slate-400);
	text-decoration: none;
}
.jitc-home-footer__legal a:hover {
	color: var(--jitc-home-slate-600);
}

/* Jobs page (Job Board) – canonical home styles */
.jitc-jobs-page {
	padding: 5rem 1rem;
	background: var(--jitc-home-slate-50);
}
.jitc-jobs-page__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
	padding: 0 1rem;
}
.jitc-jobs-page__header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.jitc-jobs-page__title {
	font-size: 1.875rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--jitc-home-slate-900);
}
@media (min-width: 768px) {
	.jitc-jobs-page__title {
		font-size: 2.25rem;
	}
}
.jitc-jobs-page__subtitle {
	color: var(--jitc-home-slate-500);
	margin: 0;
	font-size: 1.125rem;
}

/* Filter form wrapper */
.jitc-jobs-page__filter-form {
	margin-bottom: 2.5rem;
}

/* Main search bar – hero-style pill (keyword + location + button only) */
.jitc-jobs-page__filter {
	max-width: 56rem;
	margin: 0 auto 1.25rem;
	background: #fff;
	padding: 0.5rem;
	border-radius: 1rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
	.jitc-jobs-page__filter {
		border-radius: 9999px;
		align-items: center;
	}
}
.jitc-jobs-page__filter-row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.5rem;
}
@media (min-width: 768px) {
	.jitc-jobs-page__filter-row {
		flex-direction: row;
		align-items: center;
		gap: 0;
		flex: 1;
	}
}
.jitc-jobs-page__filter-field {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 1rem;
	min-height: 3rem;
}
.jitc-jobs-page__filter-field:first-child {
	border-bottom: 1px solid var(--jitc-home-slate-100);
	padding-bottom: 0.5rem;
	padding-top: 0.25rem;
}
@media (min-width: 768px) {
	.jitc-jobs-page__filter-field:first-child {
		border-bottom: none;
		padding: 0;
		flex: 2;
		min-width: 0;
	}
}
.jitc-jobs-page__filter-field:last-of-type {
	flex: 1;
	min-width: 0;
}
@media (min-width: 768px) {
	.jitc-jobs-page__filter-field:last-of-type {
		flex: 1;
	}
}
.jitc-jobs-page__filter-icon {
	flex-shrink: 0;
	color: var(--jitc-home-slate-400);
	display: flex;
	align-items: center;
	justify-content: center;
}
.jitc-jobs-page__filter-input,
.jitc-jobs-page__filter-select {
	flex: 1;
	min-width: 0;
	border: none;
	outline: none;
	background: transparent;
	color: var(--jitc-home-slate-700);
	font-size: 1rem;
}
.jitc-jobs-page__filter-input::placeholder {
	color: var(--jitc-home-slate-400);
}
.jitc-jobs-page__filter-divider {
	display: none;
	width: 1px;
	height: 2rem;
	background: var(--jitc-home-slate-200, #e2e8f0);
	flex-shrink: 0;
}
@media (min-width: 768px) {
	.jitc-jobs-page__filter-divider {
		display: block;
	}
}
.jitc-jobs-page__filter-submit {
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	border: none;
	background: var(--jitc-home-blue);
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	cursor: pointer;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: filter 0.2s, transform 0.2s;
	margin-top: 0.5rem;
}
@media (min-width: 768px) {
	.jitc-jobs-page__filter-submit {
		margin-top: 0;
		border-radius: 9999px;
		width: auto;
		flex-shrink: 0;
	}
}
.jitc-jobs-page__filter-submit:hover {
	filter: brightness(1.1);
	transform: scale(1.02);
}

/* Refine row – secondary filters below the pill, centered */
.jitc-jobs-page__refine {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	max-width: 56rem;
	margin: 0 auto;
	padding: 0 0.25rem;
}
.jitc-jobs-page__refine-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-width: 0;
}
.jitc-jobs-page__refine-group {
	min-width: 0;
}
.jitc-jobs-page__refine-select {
	appearance: none;
	background: #fff;
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
	border-radius: 9999px;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	color: var(--jitc-home-slate-700);
	cursor: pointer;
	min-width: 7rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.6rem center;
	background-size: 1rem;
	padding-right: 2rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.jitc-jobs-page__refine-select:hover {
	border-color: var(--jitc-home-slate-400);
}
.jitc-jobs-page__refine-select:focus {
	outline: none;
	border-color: var(--jitc-home-blue);
	box-shadow: 0 0 0 2px rgba(52, 162, 224, 0.2);
}
.jitc-jobs-page__refine-submit {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: none;
	background: var(--jitc-home-orange);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: filter 0.2s;
}
.jitc-jobs-page__refine-submit:hover {
	filter: brightness(1.1);
}

.jitc-jobs-page__toolbar {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.jitc-jobs-page__sort {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.jitc-jobs-page__sort-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--jitc-home-slate-600);
}
.jitc-jobs-page__sort select {
	min-width: 10rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
	border-radius: 9999px;
	background: #fff;
	font-size: 0.875rem;
	color: var(--jitc-home-slate-700);
	cursor: pointer;
}
.jitc-jobs-page__sort-submit {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid var(--jitc-home-slate-300);
	background: #fff;
	color: var(--jitc-home-slate-700);
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
}
.jitc-jobs-page__sort-submit:hover {
	background: var(--jitc-home-slate-50);
}

.jitc-jobs-page__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.jitc-jobs-page__empty {
	text-align: center;
	padding: 3rem 1rem;
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100);
}
.jitc-jobs-page__empty p {
	color: var(--jitc-home-slate-600);
	margin: 0 0 1rem;
}
.jitc-jobs-page__empty-link {
	display: inline-block;
	margin-right: 1rem;
	color: var(--jitc-home-blue);
	font-weight: 600;
	text-decoration: none;
}
.jitc-jobs-page__empty-link:hover {
	text-decoration: underline;
}
.jitc-jobs-page__empty .jitc-home-job__apply {
	display: inline-block;
	margin-top: 0.5rem;
}
.jitc-jobs-page__pagination {
	margin-top: 2.5rem;
	text-align: center;
}
.jitc-jobs-page__pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jitc-jobs-page__pagination a,
.jitc-jobs-page__pagination span {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: #fff;
	border: 1px solid var(--jitc-home-slate-200);
	color: var(--jitc-home-slate-700);
	text-decoration: none;
	font-weight: 600;
}
.jitc-jobs-page__pagination a:hover {
	background: var(--jitc-home-slate-50);
	color: var(--jitc-home-blue);
}
.jitc-jobs-page__pagination .current {
	background: var(--jitc-home-blue);
	color: #fff;
	border-color: var(--jitc-home-blue);
}
.jitc-jobs-page__pagination .prev,
.jitc-jobs-page__pagination .next {
	background: var(--jitc-home-slate-100);
}

/* Companies page – canonical section and cards */
.jitc-companies-page {
	padding: 5rem 1rem;
	background: var(--jitc-home-slate-50);
}
.jitc-companies-page__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
	padding: 0 1rem;
}
.jitc-companies-page__header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.jitc-companies-page__title {
	font-size: 1.875rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--jitc-home-slate-900);
}
@media (min-width: 768px) {
	.jitc-companies-page__title {
		font-size: 2.25rem;
	}
}
.jitc-companies-page__subtitle {
	color: var(--jitc-home-slate-500);
	margin: 0;
	font-size: 1.125rem;
}

/* Companies search and filters */
.jitc-companies-page__filter-form {
	margin-bottom: 2rem;
}
.jitc-companies-page__filter {
	max-width: 56rem;
	margin: 0 auto 1rem;
	background: #fff;
	padding: 0.5rem;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
	.jitc-companies-page__filter {
		border-radius: 9999px;
	}
}
.jitc-companies-page__filter-row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.5rem;
}
@media (min-width: 768px) {
	.jitc-companies-page__filter-row {
		flex-direction: row;
		align-items: center;
		gap: 0;
	}
}
.jitc-companies-page__filter-field {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 1rem;
	min-height: 3rem;
	flex: 1;
	min-width: 0;
}
.jitc-companies-page__filter-icon {
	flex-shrink: 0;
	color: var(--jitc-home-slate-400);
	display: flex;
	align-items: center;
	justify-content: center;
}
.jitc-companies-page__filter-input {
	flex: 1;
	min-width: 0;
	border: none;
	outline: none;
	background: transparent;
	color: var(--jitc-home-slate-700);
	font-size: 1rem;
}
.jitc-companies-page__filter-input::placeholder {
	color: var(--jitc-home-slate-400);
}
.jitc-companies-page__filter-submit {
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	border: none;
	background: var(--jitc-home-blue);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: filter 0.2s;
	margin-top: 0.5rem;
}
@media (min-width: 768px) {
	.jitc-companies-page__filter-submit {
		margin-top: 0;
		border-radius: 9999px;
		flex-shrink: 0;
	}
}
.jitc-companies-page__filter-submit:hover {
	filter: brightness(1.1);
}
.jitc-companies-page__refine {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	max-width: 56rem;
	margin: 0 auto;
	padding: 0 0.25rem;
}
.jitc-companies-page__refine-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.jitc-companies-page__refine-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--jitc-home-slate-600);
}
.jitc-companies-page__refine-select {
	appearance: none;
	background: #fff;
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
	border-radius: 9999px;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	color: var(--jitc-home-slate-700);
	cursor: pointer;
	min-width: 6rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.6rem center;
	background-size: 1rem;
	padding-right: 2rem;
}
.jitc-companies-page__refine-submit {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: none;
	background: var(--jitc-home-orange);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: filter 0.2s;
}
.jitc-companies-page__refine-submit:hover {
	filter: brightness(1.1);
}
.jitc-companies-page__pagination {
	margin-top: 2.5rem;
	text-align: center;
}
.jitc-companies-page__pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jitc-companies-page__pagination a,
.jitc-companies-page__pagination span {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: #fff;
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
	color: var(--jitc-home-slate-700);
	text-decoration: none;
	font-weight: 600;
}
.jitc-companies-page__pagination a:hover {
	background: var(--jitc-home-slate-50);
	color: var(--jitc-home-blue);
}
.jitc-companies-page__pagination .current {
	background: var(--jitc-home-blue);
	color: #fff;
	border-color: var(--jitc-home-blue);
}
.jitc-companies-page__pagination .prev,
.jitc-companies-page__pagination .next {
	background: var(--jitc-home-slate-100);
}
.jitc-companies-page__empty-link--ghost {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	background: transparent;
	color: var(--jitc-home-blue);
	border: 1px solid var(--jitc-home-slate-300);
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.jitc-companies-page__empty-link--ghost:hover {
	background: var(--jitc-home-slate-50);
	color: var(--jitc-home-blue);
}

.jitc-companies-page__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.jitc-companies-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.jitc-companies-page__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.jitc-companies-page__card {
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: box-shadow 0.2s, border-color 0.2s;
}
.jitc-companies-page__card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border-color: var(--jitc-home-slate-200, #e2e8f0);
}
.jitc-companies-page__card-media {
	position: relative;
	min-height: 140px;
	background: linear-gradient(135deg, var(--jitc-home-slate-100), var(--jitc-home-slate-200, #e2e8f0));
	overflow: hidden;
}
.jitc-companies-page__card-media-link {
	display: block;
	position: absolute;
	inset: 0;
	text-decoration: none;
	color: inherit;
}
.jitc-companies-page__card-media-link:hover {
	opacity: 1;
}
.jitc-companies-page__card-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jitc-companies-page__card-logo-wrap {
	position: absolute;
	left: 1rem;
	bottom: -1.5rem;
	width: 64px;
	height: 64px;
	border-radius: 0.75rem;
	background: #fff;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.jitc-companies-page__card-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.35rem;
}
.jitc-companies-page__card-logo-initial {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--jitc-home-slate-500);
}
.jitc-companies-page__card-body {
	padding: 2rem 1.25rem 1.25rem;
}
.jitc-companies-page__card-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
	line-height: 1.3;
}
.jitc-companies-page__card-title a {
	color: var(--jitc-home-slate-900);
	text-decoration: none;
}
.jitc-companies-page__card-title a:hover {
	color: var(--jitc-home-blue);
}
.jitc-companies-page__card-excerpt {
	color: var(--jitc-home-slate-500);
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0 0 0.75rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.jitc-companies-page__card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.875rem;
}
.jitc-companies-page__card-roles {
	color: var(--jitc-home-slate-500);
}
.jitc-companies-page__card-website {
	color: var(--jitc-home-blue);
	font-weight: 600;
	text-decoration: none;
}
.jitc-companies-page__card-website:hover {
	text-decoration: underline;
}
.jitc-companies-page__empty {
	text-align: center;
	padding: 3rem 1rem;
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
}
.jitc-companies-page__empty p {
	color: var(--jitc-home-slate-600);
	margin: 0;
}

/* Find CV page (candidate directory) – canonical section and cards */
.jitc-cv-page {
	padding: 5rem 1rem;
}
.jitc-cv-page__inner {
	max-width: var(--jitc-home-max-w);
	margin: 0 auto;
	padding: 0 1rem;
}
.jitc-cv-page__header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.jitc-cv-page__title {
	font-size: 1.875rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--jitc-home-slate-900);
}
@media (min-width: 768px) {
	.jitc-cv-page__title {
		font-size: 2.25rem;
	}
}
.jitc-cv-page__subtitle {
	color: var(--jitc-home-slate-500);
	margin: 0;
	font-size: 1.125rem;
}

/* Find CV search and filters */
.jitc-cv-page__filter-form {
	margin-bottom: 2rem;
}
.jitc-cv-page__filter {
	max-width: 56rem;
	margin: 0 auto 1rem;
	background: #fff;
	padding: 0.5rem;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
	.jitc-cv-page__filter {
		border-radius: 9999px;
	}
}
.jitc-cv-page__filter-row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.5rem;
}
@media (min-width: 768px) {
	.jitc-cv-page__filter-row {
		flex-direction: row;
		align-items: center;
		gap: 0;
	}
}
.jitc-cv-page__filter-field {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 1rem;
	min-height: 3rem;
}
.jitc-cv-page__filter-field:first-child {
	border-bottom: 1px solid var(--jitc-home-slate-100);
}
@media (min-width: 768px) {
	.jitc-cv-page__filter-field:first-child {
		border-bottom: none;
		flex: 2;
		min-width: 0;
	}
}
.jitc-cv-page__filter-field:last-of-type {
	flex: 1;
	min-width: 0;
}
.jitc-cv-page__filter-icon {
	flex-shrink: 0;
	color: var(--jitc-home-slate-400);
	display: flex;
	align-items: center;
	justify-content: center;
}
.jitc-cv-page__filter-input {
	flex: 1;
	min-width: 0;
	border: none;
	outline: none;
	background: transparent;
	color: var(--jitc-home-slate-700);
	font-size: 1rem;
}
.jitc-cv-page__filter-input::placeholder {
	color: var(--jitc-home-slate-400);
}
.jitc-cv-page__filter-divider {
	display: none;
	width: 1px;
	height: 2rem;
	background: var(--jitc-home-slate-200, #e2e8f0);
}
@media (min-width: 768px) {
	.jitc-cv-page__filter-divider {
		display: block;
	}
}
.jitc-cv-page__filter-submit {
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	border: none;
	background: var(--jitc-home-blue);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: filter 0.2s;
	margin-top: 0.5rem;
}
@media (min-width: 768px) {
	.jitc-cv-page__filter-submit {
		margin-top: 0;
		border-radius: 9999px;
		flex-shrink: 0;
	}
}
.jitc-cv-page__filter-submit:hover {
	filter: brightness(1.1);
}
.jitc-cv-page__refine {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	max-width: 56rem;
	margin: 0 auto;
	padding: 0 0.25rem;
}
.jitc-cv-page__refine-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.jitc-cv-page__refine-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--jitc-home-slate-600);
}
.jitc-cv-page__refine-select {
	appearance: none;
	background: #fff;
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
	border-radius: 9999px;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	color: var(--jitc-home-slate-700);
	cursor: pointer;
	min-width: 6rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.6rem center;
	background-size: 1rem;
	padding-right: 2rem;
}
.jitc-cv-page__refine-submit {
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: none;
	background: var(--jitc-home-orange);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: filter 0.2s;
}
.jitc-cv-page__refine-submit:hover {
	filter: brightness(1.1);
}

.jitc-cv-page__alert {
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	margin-bottom: 1.5rem;
}
.jitc-cv-page__alert--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}
.jitc-cv-page__alert--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.jitc-cv-page__error-list {
	margin: 0;
	padding-left: 1.25rem;
}

.jitc-cv-page__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.jitc-cv-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.jitc-cv-page__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.jitc-cv-page__card {
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: box-shadow 0.2s, border-color 0.2s;
}
.jitc-cv-page__card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border-color: var(--jitc-home-slate-200, #e2e8f0);
}
.jitc-cv-page__card-inner {
	display: flex;
	gap: 1.25rem;
	padding: 1.25rem;
	align-items: flex-start;
}
.jitc-cv-page__card-avatar {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 0.75rem;
	background: var(--jitc-home-slate-100, #f1f5f9);
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.jitc-cv-page__card-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jitc-cv-page__card-avatar-initial {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--jitc-home-slate-500);
}
.jitc-cv-page__card-body {
	flex: 1;
	min-width: 0;
}
.jitc-cv-page__card-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
	line-height: 1.3;
}
.jitc-cv-page__card-title a {
	color: var(--jitc-home-slate-900);
	text-decoration: none;
}
.jitc-cv-page__card-title a:hover {
	color: var(--jitc-home-blue);
}
.jitc-cv-page__card-badge {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--jitc-home-green);
	margin-bottom: 0.5rem;
}
.jitc-cv-page__card-excerpt {
	color: var(--jitc-home-slate-500);
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0 0 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.jitc-cv-page__card-meta {
	color: var(--jitc-home-slate-500);
	font-size: 0.8125rem;
	margin: 0 0 0.25rem;
}
.jitc-cv-page__card-action {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	background: var(--jitc-home-orange);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: filter 0.2s;
}
.jitc-cv-page__card-action:hover {
	filter: brightness(1.1);
	color: #fff;
}

.jitc-cv-page__pagination {
	margin-top: 2.5rem;
	text-align: center;
}
.jitc-cv-page__pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jitc-cv-page__pagination a,
.jitc-cv-page__pagination span {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: #fff;
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
	color: var(--jitc-home-slate-700);
	text-decoration: none;
	font-weight: 600;
}
.jitc-cv-page__pagination a:hover {
	background: var(--jitc-home-slate-50);
	color: var(--jitc-home-blue);
}
.jitc-cv-page__pagination .current {
	background: var(--jitc-home-blue);
	color: #fff;
	border-color: var(--jitc-home-blue);
}
.jitc-cv-page__pagination .prev,
.jitc-cv-page__pagination .next {
	background: var(--jitc-home-slate-100);
}

.jitc-cv-page__empty {
	text-align: center;
	padding: 3rem 1rem;
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--jitc-home-slate-100, #f1f5f9);
}
.jitc-cv-page__empty p {
	color: var(--jitc-home-slate-600);
	margin: 0 0 1rem;
}
.jitc-cv-page__empty-link {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	background: var(--jitc-home-orange);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: filter 0.2s;
}
.jitc-cv-page__empty-link:hover {
	filter: brightness(1.1);
	color: #fff;
}
.jitc-cv-page__empty-link--ghost {
	background: transparent;
	color: var(--jitc-home-blue);
	border: 1px solid var(--jitc-home-slate-300);
}
.jitc-cv-page__empty-link--ghost:hover {
	background: var(--jitc-home-slate-50);
	color: var(--jitc-home-blue);
}

/* ==========================================================================
   Company single page
   ========================================================================== */
.jitc-company-single {
	background: var(--jitc-home-slate-50);
	min-height: 60vh;
	padding: 2.5rem 0 4rem;
}
.jitc-company-single__inner {
	max-width: var(--jitc-home-max-w, 72rem);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.jitc-company-single__header {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	background: var(--jitc-home-slate-200, #e2e8f0);
	min-height: 200px;
	margin-bottom: 2rem;
}
.jitc-company-single__header-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jitc-company-single__header-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.4) 100%);
	pointer-events: none;
}
.jitc-company-single__header-content {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.75rem 2rem 2rem;
	min-width: 0;
}
.jitc-company-single__header-logo-wrap {
	flex-shrink: 0;
	padding: 5px;
	width: 150px;
	height: 96px;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.jitc-company-single__header-logo {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: contain;
	object-position: center;
}
.jitc-company-single__header-logo-initial {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 0;
	color: var(--jitc-home-slate-600);
	font-size: 2.25rem;
	font-weight: 700;
}
.jitc-company-single__header-text {
	min-width: 0;
	flex: 1;
	overflow: hidden;
}
.jitc-company-single__header-title {
	margin: 0 0 0.4em;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.jitc-company-single__header-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35em 0.75em;
	margin-bottom: 0.5rem;
	min-width: 0;
	width: 100%;
}
.jitc-company-single__header-link {
	color: rgba(255,255,255,0.95);
	font-size: 1.0625rem;
	text-decoration: underline;
	text-underline-offset: 3px;
	word-break: break-all;
	overflow-wrap: break-word;
	transition: color 0.2s;
}
.jitc-company-single__header-link:hover {
	color: #fff;
}
.jitc-company-single__header-sep {
	color: rgba(255,255,255,0.6);
	user-select: none;
}
.jitc-company-single__header-actions {
	margin-top: 0.75rem;
}
.jitc-company-single__header-edit {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background: rgba(255,255,255,0.2);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.35);
	transition: background 0.2s, border-color 0.2s;
}
.jitc-company-single__header-edit:hover {
	background: rgba(255,255,255,0.3);
	border-color: rgba(255,255,255,0.5);
	color: #fff;
}
.jitc-company-single__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
@media (max-width: 767px) {
	.jitc-company-single__layout {
		grid-template-columns: 1fr;
	}
}
.jitc-company-single__card {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	padding: 2rem;
}
.jitc-company-single__card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}
.jitc-company-single__card-title {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--jitc-home-slate-800);
}
.jitc-company-single__card-link {
	color: var(--jitc-home-blue);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s;
}
.jitc-company-single__card-link:hover {
	text-decoration: underline;
	color: var(--jitc-home-blue);
}
.jitc-company-single__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.jitc-company-single__job {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--jitc-home-slate-100);
}
.jitc-company-single__job:first-child {
	padding-top: 0;
}
.jitc-company-single__job:last-child {
	border-bottom: none;
}
.jitc-company-single__job-main {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
	min-width: 0;
}
.jitc-company-single__job-title {
	color: var(--jitc-home-blue);
	font-size: 1.0625rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s;
}
.jitc-company-single__job-title:hover {
	text-decoration: underline;
	color: var(--jitc-home-blue);
}
.jitc-company-single__job-date {
	font-size: 0.9375rem;
	color: var(--jitc-home-slate-500);
}
.jitc-company-single__job-status {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	background: var(--jitc-home-green-light);
	color: var(--jitc-home-green);
	font-size: 0.875rem;
	font-weight: 500;
	flex-shrink: 0;
}
.jitc-company-single__empty {
	margin: 0;
	font-size: 1rem;
	color: var(--jitc-home-slate-500);
}
.jitc-company-single__about .jitc-company-single__card-title {
	margin-bottom: 1rem;
}
.jitc-company-single__content {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--jitc-home-slate-700);
}
.jitc-company-single__content p {
	margin: 0 0 1em;
}
.jitc-company-single__content p:first-child {
	margin-top: 0;
}
.jitc-company-single__content p:last-child {
	margin-bottom: 0;
}
.jitc-company-single__content a {
	color: var(--jitc-home-blue);
	text-decoration: underline;
}
.jitc-company-single__content a:hover {
	color: var(--jitc-home-blue);
}
.jitc-company-single__not-found {
	background: #fff;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	color: var(--jitc-home-slate-600);
}
.jitc-company-single__not-found p {
	margin: 0;
}

/* ==========================================================================
   Candidate single page (profile view)
   ========================================================================== */
.jitc-candidate-page {
	background: var(--jitc-home-slate-50);
	min-height: 60vh;
	padding: 2.5rem 0 4rem;
}
.jitc-candidate-page__inner {
	max-width: var(--jitc-home-max-w, 72rem);
	margin: 0 auto;
	padding: 0 1.5rem;
}
.jitc-candidate-page__back {
	margin-bottom: 1.5rem;
}
.jitc-candidate-page__back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--jitc-home-blue);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s;
}
.jitc-candidate-page__back-link:hover {
	color: var(--jitc-home-slate-800);
}
.jitc-candidate-page__back-link::before {
	content: "←";
}
.jitc-candidate-page__card {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	padding: 2rem;
	overflow: hidden;
}
.jitc-candidate-page__header {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--jitc-home-slate-100);
}
@media (max-width: 576px) {
	.jitc-candidate-page__header {
		flex-direction: column;
		align-items: flex-start;
	}
}
.jitc-candidate-page__avatar-wrap {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--jitc-home-slate-200, #e2e8f0);
}
.jitc-candidate-page__avatar {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jitc-candidate-page__avatar-initial {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--jitc-home-slate-600);
	font-size: 3rem;
	font-weight: 700;
}
.jitc-candidate-page__header-text {
	min-width: 0;
	flex: 1;
}
.jitc-candidate-page__title {
	margin: 0 0 0.35em;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	color: var(--jitc-home-slate-800);
	line-height: 1.2;
}
.jitc-candidate-page__badge {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--jitc-home-green);
	margin-bottom: 0.5rem;
}
.jitc-candidate-page__location {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	color: var(--jitc-home-slate-500);
}
.jitc-candidate-page__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25em 0.5em;
}
.jitc-candidate-page__link {
	color: var(--jitc-home-blue);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s;
}
.jitc-candidate-page__link:hover {
	text-decoration: underline;
	color: var(--jitc-home-blue);
}
.jitc-candidate-page__sep {
	color: var(--jitc-home-slate-400);
	user-select: none;
}
.jitc-candidate-page__section {
	margin-top: 0;
	margin-bottom: 2rem;
}
.jitc-candidate-page__section:last-child {
	margin-bottom: 0;
}
.jitc-candidate-page__section-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--jitc-home-slate-800);
	margin: 0 0 0.75rem;
}
.jitc-candidate-page__summary {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--jitc-home-slate-700);
}
.jitc-candidate-page__summary p {
	margin: 0 0 1em;
}
.jitc-candidate-page__summary p:last-child {
	margin-bottom: 0;
}
.jitc-candidate-page__summary a {
	color: var(--jitc-home-blue);
	text-decoration: underline;
}
.jitc-candidate-page__alert {
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}
.jitc-candidate-page__alert--success {
	background: var(--jitc-home-green-light);
	color: var(--jitc-home-slate-800);
	border: 1px solid var(--jitc-home-green);
}
.jitc-candidate-page__alert--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.jitc-candidate-page__error-list {
	margin: 0;
	padding-left: 1.25rem;
}
.jitc-candidate-page__contact {
	padding-top: 2rem;
	border-top: 1px solid var(--jitc-home-slate-100);
	margin-top: 0;
}
.jitc-candidate-page__form {
	margin-top: 0.5rem;
}
.jitc-candidate-page__field {
	margin-bottom: 1.25rem;
}
.jitc-candidate-page__label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: var(--jitc-home-slate-800);
	margin-bottom: 0.5rem;
}
.jitc-candidate-page__textarea {
	display: block;
	width: 100%;
	min-height: 140px;
	padding: 0.875rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--jitc-home-slate-800);
	background: #fff;
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
	border-radius: 0.5rem;
	resize: vertical;
	transition: border-color 0.2s;
	font-family: inherit;
}
.jitc-candidate-page__textarea::placeholder {
	color: var(--jitc-home-slate-400);
}
.jitc-candidate-page__textarea:focus {
	outline: none;
	border-color: var(--jitc-home-blue);
	box-shadow: 0 0 0 3px rgba(52, 162, 224, 0.15);
}
.jitc-candidate-page__submit {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	border: none;
	border-radius: 0.5rem;
	background: var(--jitc-home-orange);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: filter 0.2s;
}
.jitc-candidate-page__submit:hover {
	filter: brightness(1.08);
}
.jitc-candidate-page__no-contact {
	margin: 0;
	font-size: 1rem;
	color: var(--jitc-home-slate-500);
}

/* ==========================================================================
   No-access pages (e.g. Post a job when not allowed)
   ========================================================================== */
.jitc-no-access {
	background: var(--jitc-home-slate-50);
	min-height: 60vh;
	padding: 3rem 0 4rem;
}
.jitc-no-access__inner {
	max-width: 36rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.jitc-no-access__title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	color: var(--jitc-home-slate-800);
	line-height: 1.2;
}
.jitc-no-access__message {
	margin: 0 0 1.5rem;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--jitc-home-slate-700);
}
.jitc-no-access__suggestions {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	padding: 1.75rem;
	margin-bottom: 1.5rem;
}
.jitc-no-access__subtitle {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--jitc-home-slate-800);
}
.jitc-no-access__hint {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--jitc-home-slate-600);
}
.jitc-no-access__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.jitc-no-access__btn {
	display: inline-block;
	padding: 0.65rem 1.25rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: filter 0.2s, background 0.2s, border-color 0.2s;
	font-family: inherit;
}
.jitc-no-access__btn--primary {
	background: var(--jitc-home-orange);
	color: #fff;
	border: none;
}
.jitc-no-access__btn--primary:hover {
	filter: brightness(1.08);
	color: #fff;
}
.jitc-no-access__btn--secondary {
	background: transparent;
	color: var(--jitc-home-blue);
	border: 1px solid var(--jitc-home-slate-200, #e2e8f0);
}
.jitc-no-access__btn--secondary:hover {
	background: var(--jitc-home-slate-50);
	color: var(--jitc-home-blue);
	border-color: var(--jitc-home-slate-400);
}
.jitc-no-access__footer {
	text-align: center;
}
.jitc-no-access__link {
	color: var(--jitc-home-blue);
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
}
.jitc-no-access__link:hover {
	text-decoration: underline;
	color: var(--jitc-home-blue);
}
