:root {
	--sj-orange: #C84E16;
	--sj-orange-hover: #A94314;
	--sj-dark: #20262D;
	--sj-text: #56616A;
	--sj-light: #F5F6F4;
	--sj-border: #DDE1E3;
	--sj-white: #FFFFFF;
}

/* Jednotná šedá hlavička na archivu pracovních nabídek v Astře. */
body.sj-jobs-custom-archive .site-header,
body.sj-jobs-custom-archive .ast-primary-header-bar,
body.sj-jobs-custom-archive .main-header-bar,
body.sj-jobs-custom-archive .ast-mobile-header-wrap .ast-primary-header-bar,
body.sj-jobs-custom-archive.ast-theme-transparent-header #masthead,
body.sj-jobs-custom-archive.ast-theme-transparent-header .main-header-bar {
	background: var(--sj-light) !important;
}

body.sj-jobs-custom-archive.ast-theme-transparent-header #masthead {
	position: relative !important;
}

body.sj-jobs-custom-archive .site-content,
body.sj-jobs-custom-archive #content {
	padding: 0 !important;
}

.sj-jobs-archive,
.sj-jobs-archive * {
	box-sizing: border-box;
}

.sj-jobs-archive,
.sj-jobs-archive#primary {
	float: none;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: var(--sj-white);
	color: var(--sj-dark);
}

.sj-archive-container {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
}

.sj-archive-hero {
	padding: 74px 0 116px;
	background: var(--sj-light);
	text-align: center;
}

.sj-archive-eyebrow,
.sj-results-head__eyebrow,
.sj-archive-cta span {
	display: block;
	margin-bottom: 10px;
	color: var(--sj-orange);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.45px;
	text-transform: uppercase;
}

.sj-archive-hero h1 {
	max-width: 900px;
	margin: 0 auto 18px;
	color: var(--sj-dark);
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.08;
}

.sj-archive-hero p {
	max-width: 790px;
	margin: 0 auto;
	color: var(--sj-text);
	font-size: 18px;
	line-height: 1.7;
}

.sj-filter-section {
	position: relative;
	z-index: 3;
	margin-top: -64px;
}

.sj-job-filter {
	padding: 26px;
	background: var(--sj-white);
	border: 1px solid var(--sj-border);
	border-radius: 12px;
	box-shadow: 0 14px 36px rgba(32, 38, 45, 0.12);
}

.sj-job-filter__main {
	display: grid;
	grid-template-columns: minmax(260px, 1.65fr) minmax(190px, 1fr) minmax(190px, 1fr) auto auto;
	align-items: end;
	gap: 14px;
}

.sj-filter-field label,
.sj-sort-form label {
	display: block;
	margin-bottom: 7px;
	color: var(--sj-dark);
	font-size: 13px;
	font-weight: 750;
}

.sj-filter-field input,
.sj-filter-field select,
.sj-sort-form select {
	width: 100%;
	height: 50px;
	padding: 0 14px;
	background: #fff;
	border: 1px solid #CBD1D5;
	border-radius: 7px;
	color: var(--sj-dark);
	font-family: inherit;
	font-size: 15px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.sj-filter-field input:focus,
.sj-filter-field select:focus,
.sj-sort-form select:focus {
	border-color: var(--sj-orange);
	box-shadow: 0 0 0 3px rgba(200, 78, 22, 0.12);
}

.sj-filter-check {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 4px;
	color: var(--sj-dark);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.sj-filter-check input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--sj-orange);
}

.sj-filter-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 22px;
	cursor: pointer;
	background: var(--sj-orange);
	border: 1px solid var(--sj-orange);
	border-radius: 7px;
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.sj-filter-submit:hover {
	background: var(--sj-orange-hover);
	border-color: var(--sj-orange-hover);
	transform: translateY(-1px);
}

.sj-job-filter__advanced {
	margin-top: 17px;
	padding-top: 16px;
	border-top: 1px solid var(--sj-border);
}

.sj-job-filter__advanced summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	list-style: none;
	color: var(--sj-dark);
	font-size: 14px;
	font-weight: 800;
}

.sj-job-filter__advanced summary::-webkit-details-marker {
	display: none;
}

.sj-job-filter__advanced summary span {
	font-size: 21px;
	font-weight: 400;
	line-height: 1;
	transition: transform .2s ease;
}

.sj-job-filter__advanced[open] summary span {
	transform: rotate(45deg);
}

.sj-job-filter__advanced-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, .8fr);
	align-items: end;
	gap: 14px;
	padding-top: 18px;
}

.sj-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	padding: 18px 2px 0;
}

.sj-active-filters__label {
	margin-right: 2px;
	color: var(--sj-text);
	font-size: 13px;
	font-weight: 700;
}

.sj-active-filters a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	background: #F7F2EF;
	border: 1px solid #ECD9CF;
	border-radius: 999px;
	color: #70402A;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
}

.sj-active-filters a:hover {
	border-color: var(--sj-orange);
	color: var(--sj-orange);
}

.sj-active-filters .sj-active-filters__clear {
	background: transparent;
	border-color: transparent;
	color: var(--sj-text);
	text-decoration: underline !important;
}

.sj-results-section {
	padding: 70px 0 90px;
}

.sj-results-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.sj-results-head h2 {
	margin: 0;
	color: var(--sj-dark);
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.18;
}

.sj-sort-form {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sj-sort-form label {
	margin: 0;
	white-space: nowrap;
}

.sj-sort-form select {
	width: 190px;
	height: 44px;
}

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

.sj-archive-card {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) 205px;
	gap: 24px;
	align-items: start;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--sj-border);
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(32, 38, 45, 0.055);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sj-archive-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--sj-orange);
	border-radius: 10px 0 0 10px;
	opacity: 0;
	transition: opacity .2s ease;
}

.sj-archive-card:hover {
	transform: translateY(-2px);
	border-color: rgba(200, 78, 22, .46);
	box-shadow: 0 12px 28px rgba(32, 38, 45, .105);
}

.sj-archive-card:hover::before,
.sj-archive-card--featured::before {
	opacity: 1;
}

.sj-archive-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	overflow: hidden;
	background: var(--sj-light);
	border: 1px solid var(--sj-border);
	border-radius: 9px;
	color: var(--sj-dark);
	font-size: 25px;
	font-weight: 850;
	letter-spacing: 1px;
}

.sj-archive-card__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.sj-archive-card__content {
	min-width: 0;
}

.sj-archive-card__meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 8px;
}

.sj-archive-card__meta-top > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.sj-archive-card__company {
	color: var(--sj-orange);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .25px;
	text-transform: uppercase;
}

.sj-archive-card__featured {
	padding: 4px 8px;
	background: var(--sj-orange);
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
}

.sj-archive-card__date {
	color: #7A858D;
	font-size: 12px;
	white-space: nowrap;
}

.sj-archive-card h2 {
	margin: 0 0 11px;
	font-size: 25px;
	line-height: 1.24;
}

.sj-archive-card h2 a,
.sj-archive-card h2 a:visited {
	color: var(--sj-dark);
	text-decoration: none !important;
}

.sj-archive-card h2 a:hover {
	color: var(--sj-orange);
}

.sj-archive-card__facts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 18px;
	margin-bottom: 13px;
	color: var(--sj-text);
	font-size: 14px;
}

.sj-archive-card__facts span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.sj-archive-card__facts strong {
	display: none;
	color: var(--sj-dark);
}

.sj-archive-card__icon {
	color: var(--sj-orange);
	font-size: 9px;
}

.sj-archive-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 13px;
}

.sj-archive-card__badges span {
	padding: 6px 9px;
	background: #F7F2EF;
	border: 1px solid #ECD9CF;
	border-radius: 999px;
	color: #70402A;
	font-size: 12px;
	line-height: 1.2;
}

.sj-archive-card__content > p {
	margin: 0;
	color: var(--sj-text);
	font-size: 14px;
	line-height: 1.58;
}

.sj-archive-card__action {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	min-height: 100%;
	padding-left: 22px;
	border-left: 1px solid var(--sj-border);
}

.sj-archive-card__salary-label {
	margin-bottom: 3px;
	color: var(--sj-text);
	font-size: 12px;
}

.sj-archive-card__salary {
	margin-bottom: 18px;
	color: var(--sj-dark);
	font-size: 19px;
	line-height: 1.25;
}

.sj-archive-card__action .sj-jobs-button {
	width: 100%;
}

.sj-archive-pagination {
	margin-top: 38px;
}

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

.sj-archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	background: #fff;
	border: 1px solid var(--sj-border);
	border-radius: 6px;
	color: var(--sj-dark);
	font-weight: 750;
	text-decoration: none !important;
}

.sj-archive-pagination .page-numbers.current,
.sj-archive-pagination a.page-numbers:hover {
	background: var(--sj-orange);
	border-color: var(--sj-orange);
	color: #fff;
}

.sj-archive-empty {
	padding: 64px 28px;
	background: var(--sj-light);
	border: 1px solid var(--sj-border);
	border-radius: 10px;
	text-align: center;
}

.sj-archive-empty > span {
	display: block;
	margin-bottom: 10px;
	color: var(--sj-orange);
	font-size: 44px;
}

.sj-archive-empty h2 {
	margin: 0 0 10px;
	font-size: 29px;
}

.sj-archive-empty p {
	margin: 0 0 24px;
	color: var(--sj-text);
}

.sj-archive-cta {
	padding: 65px 0;
	background: var(--sj-dark);
}

.sj-archive-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
}

.sj-archive-cta h2 {
	margin: 0 0 10px;
	color: #fff;
	font-size: clamp(28px, 3vw, 40px);
}

.sj-archive-cta p {
	max-width: 720px;
	margin: 0;
	color: rgba(255,255,255,.75);
	font-size: 16px;
	line-height: 1.65;
}

/* Homepage shortcode. */
.sj-jobs-section {
	padding: 82px 24px 90px;
	background: var(--sj-light);
	color: var(--sj-dark);
}

.sj-jobs-section--full {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
}

.sj-jobs-section__inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.sj-jobs-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}

.sj-jobs-section__eyebrow {
	display: block;
	margin-bottom: 9px;
	color: var(--sj-orange);
	font-size: 14px;
	font-weight: 750;
	letter-spacing: 1.4px;
}

.sj-jobs-section h2 {
	margin: 0;
	color: var(--sj-dark);
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.14;
}

.sj-jobs-section__header p {
	max-width: 720px;
	margin: 13px 0 0;
	color: var(--sj-text);
	font-size: 17px;
	line-height: 1.65;
}

.sj-jobs-section__all-link,
.sj-jobs-section__all-link:visited {
	flex: 0 0 auto;
	color: var(--sj-dark);
	font-weight: 700;
	text-decoration: none !important;
}

.sj-jobs-section__all-link:hover { color: var(--sj-orange); }

.sj-jobs-grid { display: grid; gap: 20px; }
.sj-jobs-grid--1 { grid-template-columns: 1fr; }
.sj-jobs-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sj-jobs-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sj-jobs-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.sj-job-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 350px;
	padding: 27px 27px 25px;
	overflow: hidden;
	background: var(--sj-white);
	border: 1px solid var(--sj-border);
	border-radius: 9px;
	box-shadow: 0 4px 14px rgba(32, 38, 45, 0.06);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sj-job-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--sj-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}

.sj-job-card:hover {
	transform: translateY(-4px);
	border-color: rgba(200, 78, 22, 0.55);
	box-shadow: 0 12px 28px rgba(32, 38, 45, 0.11);
}

.sj-job-card:hover::before { transform: scaleX(1); }

.sj-job-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.sj-job-card__company {
	color: var(--sj-orange);
	font-size: 14px;
	font-weight: 750;
	letter-spacing: .3px;
}

.sj-job-card__date { color: #7A858D; font-size: 13px; }

.sj-job-card h3 {
	margin: 0 0 12px;
	font-size: 25px;
	line-height: 1.25;
}

.sj-job-card h3 a,
.sj-job-card h3 a:visited {
	color: var(--sj-dark);
	text-decoration: none !important;
}

.sj-job-card h3 a:hover { color: var(--sj-orange); }

.sj-job-card__location {
	margin-bottom: 19px;
	color: var(--sj-text);
	font-size: 15px;
}

.sj-job-card__location span {
	color: var(--sj-orange);
	font-size: 10px;
	vertical-align: 2px;
}

.sj-job-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.sj-job-card__badges span {
	padding: 7px 10px;
	background: #F7F2EF;
	border: 1px solid #ECD9CF;
	border-radius: 999px;
	color: #70402A;
	font-size: 13px;
	line-height: 1.2;
}

.sj-job-card__excerpt {
	margin: 0 0 20px;
	color: var(--sj-text);
	font-size: 15px;
	line-height: 1.55;
}

.sj-job-card__footer {
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--sj-border);
}

.sj-job-card__button,
.sj-job-card__button:visited {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--sj-dark);
	font-weight: 750;
	text-decoration: none !important;
}

.sj-job-card__button:hover { color: var(--sj-orange); }

.sj-jobs-section__footer { margin-top: 34px; text-align: center; }

.sj-jobs-button,
.sj-jobs-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 25px;
	background: var(--sj-orange);
	border: 1px solid var(--sj-orange);
	border-radius: 7px;
	color: #fff !important;
	font-weight: 750;
	text-decoration: none !important;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.sj-jobs-button:hover {
	background: var(--sj-orange-hover);
	border-color: var(--sj-orange-hover);
	color: #fff !important;
	transform: translateY(-1px);
}

.sj-jobs-button--secondary {
	background: transparent;
	border-color: var(--sj-dark);
	color: var(--sj-dark) !important;
}

.sj-jobs-button--secondary:hover {
	background: var(--sj-dark);
	border-color: var(--sj-dark);
	color: #fff !important;
}

.sj-jobs-empty {
	padding: 38px;
	background: #fff;
	border: 1px solid var(--sj-border);
	border-radius: 9px;
	text-align: center;
}

.sj-jobs-empty strong { display: block; margin-bottom: 7px; font-size: 21px; }
.sj-jobs-empty p { margin: 0; color: var(--sj-text); }

/* Detail nabídky. */
.sj-job-detail-box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 30px;
	overflow: hidden;
	background: var(--sj-border);
	border: 1px solid var(--sj-border);
	border-radius: 9px;
}

.sj-job-detail-box > div { padding: 18px 20px; background: #fff; }
.sj-job-detail-box span,.sj-job-detail-box strong { display: block; }
.sj-job-detail-box span { margin-bottom: 4px; color: var(--sj-text); font-size: 13px; }
.sj-job-detail-box strong { color: var(--sj-dark); font-size: 16px; }

.sj-job-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 34px;
}

.sj-job-card__recommended {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin: -7px 0 14px;
	padding: 6px 10px;
	background: #C84E16;
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .25px;
}

.sj-job-card--recommended {
	border-color: rgba(200, 78, 22, 0.38);
}

.sj-job-contact {
	margin: 0 0 28px;
	padding: 25px;
	background: #F5F6F4;
	border: 1px solid var(--sj-border);
	border-radius: 9px;
}

.sj-job-contact h2 {
	margin: 0 0 18px;
	font-size: 24px;
	line-height: 1.25;
}

.sj-job-contact__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.sj-job-contact__items span,
.sj-job-contact__items strong {
	display: block;
}

.sj-job-contact__items span {
	margin-bottom: 4px;
	color: var(--sj-text);
	font-size: 13px;
}

.sj-job-contact__items strong {
	color: var(--sj-dark);
	font-size: 16px;
}

.sj-job-contact__items a,
.sj-job-contact__items a:visited {
	color: var(--sj-dark);
	text-decoration: none !important;
}

.sj-job-contact__items a:hover {
	color: var(--sj-orange);
}

@media (max-width: 1100px) {
	.sj-job-filter__main {
		grid-template-columns: minmax(240px, 1.5fr) repeat(2, minmax(170px, 1fr));
	}

	.sj-filter-check--main,
	.sj-filter-submit {
		grid-row: 2;
	}

	.sj-filter-submit {
		grid-column: 3;
	}

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

	.sj-archive-card {
		grid-template-columns: 82px minmax(0, 1fr) 185px;
		gap: 19px;
	}

	.sj-archive-card__logo {
		width: 82px;
		height: 82px;
	}
}

@media (max-width: 900px) {
	.sj-job-filter__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sj-filter-field--search {
		grid-column: 1 / -1;
	}

	.sj-filter-check--main,
	.sj-filter-submit {
		grid-row: auto;
		grid-column: auto;
	}

	.sj-archive-card {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.sj-archive-card__logo {
		width: 76px;
		height: 76px;
	}

	.sj-archive-card__action {
		grid-column: 2;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 12px;
		min-height: 0;
		padding: 18px 0 0;
		border-top: 1px solid var(--sj-border);
		border-left: 0;
	}

	.sj-archive-card__salary-label {
		display: none;
	}

	.sj-archive-card__salary {
		margin: 0 auto 0 0;
	}

	.sj-archive-card__action .sj-jobs-button {
		width: auto;
	}

	.sj-archive-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.sj-jobs-grid--3,
	.sj-jobs-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sj-job-detail-box { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
	.sj-archive-container {
		width: min(100% - 32px, 1240px);
	}

	.sj-archive-hero {
		padding: 54px 0 92px;
	}

	.sj-archive-hero h1 {
		font-size: 38px;
	}

	.sj-archive-hero p {
		font-size: 16px;
	}

	.sj-filter-section {
		margin-top: -50px;
	}

	.sj-job-filter {
		padding: 18px;
		border-radius: 10px;
	}

	.sj-job-filter__main,
	.sj-job-filter__advanced-grid {
		grid-template-columns: 1fr;
	}

	.sj-filter-field--search,
	.sj-filter-submit,
	.sj-filter-check--main {
		grid-column: auto;
	}

	.sj-filter-check {
		min-height: 42px;
	}

	.sj-filter-submit {
		width: 100%;
	}

	.sj-active-filters {
		padding-top: 14px;
	}

	.sj-results-section {
		padding: 52px 0 70px;
	}

	.sj-results-head {
		display: block;
	}

	.sj-sort-form {
		justify-content: space-between;
		margin-top: 18px;
	}

	.sj-sort-form select {
		width: 180px;
	}

	.sj-archive-card {
		grid-template-columns: 62px minmax(0, 1fr);
		gap: 14px;
		padding: 19px 17px;
	}

	.sj-archive-card__logo {
		width: 62px;
		height: 62px;
		font-size: 20px;
	}

	.sj-archive-card__meta-top {
		display: block;
	}

	.sj-archive-card__date {
		display: block;
		margin-top: 6px;
	}

	.sj-archive-card h2 {
		font-size: 21px;
	}

	.sj-archive-card__facts strong {
		display: inline;
	}

	.sj-archive-card__content > p {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.sj-archive-card__action {
		grid-column: 1 / -1;
		display: block;
	}

	.sj-archive-card__salary {
		display: none;
	}

	.sj-archive-card__action .sj-jobs-button {
		width: 100%;
	}

	.sj-archive-cta {
		padding: 52px 0;
	}

	.sj-archive-cta .sj-jobs-button {
		width: 100%;
	}

	.sj-jobs-section { padding: 62px 20px 68px; }
	.sj-jobs-section__header { display: block; margin-bottom: 26px; }
	.sj-jobs-section__all-link { display: inline-block; margin-top: 16px; }
	.sj-jobs-grid--2,.sj-jobs-grid--3,.sj-jobs-grid--4 { grid-template-columns: 1fr; }
	.sj-job-card { min-height: 0; padding: 24px 22px; }
	.sj-job-detail-box { grid-template-columns: 1fr; }
	.sj-job-detail-actions .sj-jobs-button { width: 100%; }
	.sj-job-contact__items { grid-template-columns: 1fr; }
}

/* =====================================================
   V1.2.2 – KOMPAKTNÍ VYHLEDÁVÁNÍ A FILTRY
   ===================================================== */

/* Přirozenější, kompaktnější box bez zbytečně vysokých prvků. */
.sj-job-filter {
	padding: 24px 26px 18px;
	border-radius: 11px;
	box-shadow: 0 12px 32px rgba(32, 38, 45, 0.10);
}

.sj-job-filter__main {
	grid-template-columns:
		minmax(300px, 1.55fr)
		minmax(180px, .9fr)
		minmax(180px, .9fr)
		auto
		minmax(164px, auto);
	gap: 14px;
}

.sj-filter-field label,
.sj-sort-form label {
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 750;
}

.sj-filter-field input,
.sj-filter-field select {
	height: 48px;
	padding-right: 14px;
	padding-left: 14px;
	background: #fff;
	border-color: #CBD1D5;
	border-radius: 7px;
}

/* Jemná ikona pouze ve vyhledávacím poli. */
.sj-filter-field--search input {
	padding-left: 42px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23717B82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.6-3.6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 14px 50%;
	background-size: 18px 18px;
}

.sj-filter-field input:hover,
.sj-filter-field select:hover,
.sj-sort-form select:hover {
	border-color: #AEB7BD;
}

/* Checkbox zůstává lehký, bez samostatné karty. */
.sj-filter-check--main {
	min-height: 48px;
	padding: 0 5px;
	background: transparent;
	border: 0;
	border-radius: 0;
	white-space: nowrap;
}

.sj-filter-check input {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.sj-filter-submit {
	height: 48px;
	min-width: 164px;
	padding: 0 22px;
	border-radius: 7px;
	box-shadow: none;
}

.sj-filter-submit:hover {
	box-shadow: none;
}

/* „Další filtry“ opět jako jednoduchý textový ovladač. */
.sj-job-filter__advanced {
	margin-top: 14px;
	padding-top: 13px;
}

.sj-job-filter__advanced summary {
	min-height: 28px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.sj-job-filter__advanced summary:hover,
.sj-job-filter__advanced[open] summary {
	background: transparent;
	border-color: transparent;
	color: var(--sj-orange);
}

.sj-job-filter__advanced-grid {
	margin-top: 0;
	padding-top: 16px;
	background: transparent;
	border: 0;
	border-radius: 0;
}

/* Výsledky posunout blíž k filtrování. */
.sj-results-section {
	padding-top: 46px;
}

.sj-results-head {
	margin-bottom: 20px;
	padding-bottom: 17px;
	border-bottom: 1px solid #E9ECEE;
}

.sj-results-head h2 {
	font-size: clamp(28px, 2.6vw, 36px);
}

.sj-sort-form select {
	height: 46px;
	background-color: #fff;
	border-radius: 7px;
}

@media (min-width: 901px) and (max-width: 1120px) {
	.sj-job-filter__main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sj-filter-field--search {
		grid-column: 1 / -1;
	}

	.sj-filter-check--main,
	.sj-filter-submit {
		grid-row: auto;
		grid-column: auto;
	}

	.sj-filter-submit {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.sj-job-filter {
		padding: 18px;
	}

	.sj-filter-field input,
	.sj-filter-field select,
	.sj-filter-submit {
		height: 50px;
	}

	.sj-filter-check--main {
		min-height: 42px;
		white-space: normal;
	}

	.sj-filter-submit {
		min-width: 0;
	}

	.sj-job-filter__advanced summary {
		justify-content: space-between;
		width: 100%;
		min-height: 40px;
		padding: 0 2px;
	}

	.sj-job-filter__advanced-grid {
		padding-top: 14px;
	}

	.sj-results-section {
		padding-top: 40px;
	}

	.sj-sort-form select {
		width: min(190px, 62vw);
	}
}

/* =====================================================
   V1.2.3 – PLYNULÉ POZADÍ POD VYHLEDÁVACÍM BOXEM
   ===================================================== */

/*
 * Filtr překrývá spodní část hero sekce. Celá plocha za filtrem proto
 * pokračuje stejnou světlou barvou a až pod boxem plynule přechází do bílé.
 */
.sj-filter-section {
	padding-bottom: 34px;
	background: linear-gradient(
		to bottom,
		var(--sj-light) 0%,
		var(--sj-light) calc(100% - 28px),
		var(--sj-white) 100%
	);
}

/* Po přidání prostoru pod filtrem není potřeba tak velká horní mezera výsledků. */
.sj-results-section {
	padding-top: 38px;
	background: var(--sj-white);
}

@media (max-width: 767px) {
	.sj-filter-section {
		padding-bottom: 24px;
		background: linear-gradient(
			to bottom,
			var(--sj-light) 0%,
			var(--sj-light) calc(100% - 20px),
			var(--sj-white) 100%
		);
	}

	.sj-results-section {
		padding-top: 30px;
	}
}

/* =====================================================
   V1.3.0 – DETAIL PRACOVNÍ NABÍDKY
   ===================================================== */

body.sj-job-single-page .site-header,
body.sj-job-single-page .ast-primary-header-bar,
body.sj-job-single-page .main-header-bar,
body.sj-job-single-page .ast-mobile-header-wrap .ast-primary-header-bar,
body.sj-job-single-page.ast-theme-transparent-header #masthead,
body.sj-job-single-page.ast-theme-transparent-header .main-header-bar {
	background: var(--sj-light) !important;
}

body.sj-job-single-page.ast-theme-transparent-header #masthead {
	position: relative !important;
}

body.sj-job-single-page .site-content,
body.sj-job-single-page #content {
	padding: 0 !important;
}

body.sj-job-single-page .entry-meta,
body.sj-job-single-page .posted-on,
body.sj-job-single-page .byline {
	display: none !important;
}

.sj-single-job,
.sj-single-job * {
	box-sizing: border-box;
}

.sj-single-job {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 0 76px;
	background: #fff;
	color: var(--sj-dark);
}

.sj-single-container {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
}

.sj-single-breadcrumbs {
	padding: 18px 0;
	background: #fff;
	border-bottom: 1px solid #E8EBED;
	color: #7B858C;
	font-size: 13px;
}

.sj-single-breadcrumbs .sj-single-container {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.sj-single-breadcrumbs a,
.sj-single-breadcrumbs a:visited {
	color: #56616A;
	text-decoration: none !important;
}

.sj-single-breadcrumbs a:hover {
	color: var(--sj-orange);
}

.sj-single-breadcrumbs span[aria-current="page"] {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sj-single-hero {
	padding: 58px 0 46px;
	background: var(--sj-light);
}

.sj-single-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 355px);
	gap: 58px;
	align-items: center;
}

.sj-single-hero__identity {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	min-width: 0;
}

.sj-single-company-logo,
.sj-single-company-box__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--sj-border);
	border-radius: 12px;
}

.sj-single-company-logo {
	width: 112px;
	height: 112px;
	box-shadow: 0 8px 24px rgba(32, 38, 45, 0.08);
}

.sj-single-company-logo img,
.sj-single-company-box__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.sj-single-company-logo > span,
.sj-single-company-box__logo > span {
	color: var(--sj-orange);
	font-size: 29px;
	font-weight: 800;
	letter-spacing: .5px;
}

.sj-single-eyebrow {
	display: block;
	margin-bottom: 10px;
	color: var(--sj-orange);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.45px;
	text-transform: uppercase;
}

.sj-single-hero h1 {
	max-width: 760px;
	margin: 0 0 14px;
	color: var(--sj-dark);
	font-size: clamp(36px, 4.2vw, 54px);
	line-height: 1.08;
	letter-spacing: -1px;
}

.sj-single-company-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px 16px;
	margin-bottom: 18px;
	color: var(--sj-text);
	font-size: 16px;
}

.sj-single-company-line strong {
	color: var(--sj-dark);
	font-size: 18px;
}

.sj-single-company-line span::before {
	content: "●";
	margin-right: 8px;
	color: var(--sj-orange);
	font-size: 8px;
	vertical-align: 2px;
}

.sj-single-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
}

.sj-single-badges span,
.sj-single-benefits span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 10px;
	background: #fff;
	border: 1px solid #E3E7E9;
	border-radius: 999px;
	color: var(--sj-dark);
	font-size: 13px;
	font-weight: 650;
}

.sj-single-dates {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px 10px;
	color: #6B757C;
	font-size: 14px;
}

.sj-single-validity {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin-left: 3px;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

.sj-single-validity--soon {
	background: #FFF0E7;
	color: #A94314;
}

.sj-single-validity--expired {
	background: #F0F1F2;
	color: #69737A;
}

.sj-single-salary-card {
	padding: 28px;
	background: #fff;
	border: 1px solid var(--sj-border);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(32, 38, 45, .10);
}

.sj-single-salary-card__label,
.sj-single-salary-card__unit {
	display: block;
	color: var(--sj-text);
	font-size: 13px;
}

.sj-single-salary-card__value {
	display: block;
	margin: 5px 0 2px;
	color: var(--sj-dark);
	font-size: clamp(27px, 2.6vw, 34px);
	line-height: 1.15;
}

.sj-single-salary-card__value--small {
	font-size: 25px;
}

.sj-salary-comparison {
	margin: 22px 0 20px;
	padding: 14px 15px;
	background: #F7F8F7;
	border-left: 4px solid #98A2A8;
	border-radius: 0 8px 8px 0;
}

.sj-salary-comparison--high,
.sj-salary-comparison--above {
	border-left-color: #3B8B57;
}

.sj-salary-comparison--below,
.sj-salary-comparison--low {
	border-left-color: #D18A2C;
}

.sj-salary-comparison strong,
.sj-salary-comparison span,
.sj-salary-comparison small {
	display: block;
}

.sj-salary-comparison strong {
	margin-bottom: 5px;
	color: var(--sj-dark);
	font-size: 14px;
}

.sj-salary-comparison span {
	margin-bottom: 5px;
	color: var(--sj-text);
	font-size: 13px;
}

.sj-salary-comparison small {
	color: #7A848B;
	font-size: 11px;
	line-height: 1.45;
}

.sj-single-button,
.sj-single-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 12px 20px;
	background: var(--sj-orange);
	border: 1px solid var(--sj-orange);
	border-radius: 7px;
	color: #fff !important;
	font-weight: 800;
	text-align: center;
	text-decoration: none !important;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.sj-single-button:hover {
	background: var(--sj-orange-hover);
	border-color: var(--sj-orange-hover);
	transform: translateY(-1px);
}

.sj-single-button--disabled {
	cursor: not-allowed;
	background: #98A1A7;
	border-color: #98A1A7;
}

.sj-single-button--disabled:hover {
	transform: none;
	background: #98A1A7;
	border-color: #98A1A7;
}

.sj-single-facts-section {
	position: relative;
	z-index: 2;
	margin-top: -1px;
	background: linear-gradient(to bottom, var(--sj-light) 0, var(--sj-light) 48%, #fff 48%, #fff 100%);
}

.sj-single-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	background: var(--sj-border);
	border: 1px solid var(--sj-border);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(32, 38, 45, .08);
}

.sj-single-fact {
	min-height: 94px;
	padding: 20px 22px;
	background: #fff;
}

.sj-single-fact span,
.sj-single-fact strong {
	display: block;
}

.sj-single-fact span {
	margin-bottom: 6px;
	color: var(--sj-text);
	font-size: 13px;
}

.sj-single-fact strong {
	color: var(--sj-dark);
	font-size: 16px;
	line-height: 1.4;
}

.sj-single-main-section {
	padding: 58px 0 18px;
	background: #fff;
}

.sj-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 58px;
	align-items: start;
}

.sj-single-content {
	min-width: 0;
}

.sj-single-lead {
	margin: 0 0 28px;
	color: var(--sj-dark);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.7;
}

.sj-single-copy,
.sj-single-section {
	color: var(--sj-text);
	font-size: 16px;
	line-height: 1.8;
}

.sj-single-copy {
	margin-bottom: 34px;
}

.sj-single-copy h2,
.sj-single-copy h3,
.sj-single-section h2,
.sj-single-company-box h2,
.sj-single-related-section h2,
.sj-single-contact-card h2 {
	color: var(--sj-dark);
}

.sj-single-copy h2,
.sj-single-section h2,
.sj-single-company-box h2,
.sj-single-related-section h2 {
	margin: 0 0 18px;
	font-size: 29px;
	line-height: 1.25;
}

.sj-single-copy h3 {
	margin: 30px 0 13px;
	font-size: 23px;
}

.sj-single-copy p,
.sj-single-section p {
	margin: 0 0 18px;
}

.sj-single-copy ul,
.sj-single-copy ol,
.sj-single-section ul {
	margin: 0 0 20px;
	padding-left: 23px;
}

.sj-single-copy li,
.sj-single-section li {
	margin-bottom: 8px;
}

.sj-single-section {
	margin: 0 0 36px;
	padding-top: 4px;
}

.sj-single-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.sj-single-benefits span {
	min-height: 34px;
	background: var(--sj-light);
	border-color: #E4E7E5;
	padding: 6px 12px;
}

.sj-single-expired-notice {
	display: grid;
	gap: 4px;
	margin-bottom: 28px;
	padding: 18px 20px;
	background: #F4F5F5;
	border-left: 4px solid #8A949A;
	border-radius: 0 8px 8px 0;
}

.sj-single-expired-notice strong {
	color: var(--sj-dark);
}

.sj-single-expired-notice span {
	color: var(--sj-text);
}

.sj-single-sidebar {
	position: sticky;
	top: 104px;
}

.sj-single-contact-card {
	padding: 26px;
	background: var(--sj-light);
	border: 1px solid var(--sj-border);
	border-radius: 12px;
}

.sj-single-contact-card h2 {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.25;
}

.sj-single-contact-card > p {
	margin: 0 0 22px;
	color: var(--sj-text);
	font-size: 14px;
	line-height: 1.65;
}

.sj-single-contact-list {
	display: grid;
	gap: 13px;
	margin-bottom: 22px;
	padding-bottom: 20px;
	border-bottom: 1px solid #DDE1E3;
}

.sj-single-contact-list span,
.sj-single-contact-list strong {
	display: block;
}

.sj-single-contact-list span {
	margin-bottom: 3px;
	color: #7A858B;
	font-size: 12px;
}

.sj-single-contact-list strong {
	color: var(--sj-dark);
	font-size: 15px;
}

.sj-single-contact-list a,
.sj-single-contact-list a:visited {
	color: var(--sj-dark);
	text-decoration: none !important;
}

.sj-single-contact-list a:hover {
	color: var(--sj-orange);
}

.sj-single-contact-validity {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px 15px;
	margin-bottom: 21px;
	font-size: 13px;
}

.sj-single-contact-validity span {
	color: var(--sj-text);
}

.sj-single-contact-validity strong {
	color: var(--sj-dark);
	text-align: right;
}

.sj-single-back-link,
.sj-single-back-link:visited {
	display: block;
	margin-top: 17px;
	color: var(--sj-text);
	font-size: 13px;
	text-align: center;
	text-decoration: none !important;
}

.sj-single-back-link:hover {
	color: var(--sj-orange);
}

.sj-single-company-box {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	margin-top: 48px;
	padding: 28px;
	background: var(--sj-light);
	border: 1px solid var(--sj-border);
	border-radius: 12px;
}

.sj-single-company-box__logo {
	width: 96px;
	height: 96px;
}

.sj-single-company-box h2 {
	margin-bottom: 10px;
	font-size: 26px;
}

.sj-single-company-box p {
	margin: 0 0 18px;
	color: var(--sj-text);
	line-height: 1.7;
}

.sj-single-company-box__links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 18px;
}

.sj-single-company-box__links a,
.sj-single-company-box__links a:visited {
	color: var(--sj-orange);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none !important;
}

.sj-single-company-box__links a:hover {
	color: var(--sj-orange-hover);
}

.sj-single-related-section {
	padding: 62px 0 70px;
	background: var(--sj-light);
}

.sj-single-related-section h2 {
	margin-bottom: 28px;
	font-size: clamp(30px, 3.2vw, 40px);
}

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

.sj-related-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 24px;
	background: #fff;
	border: 1px solid var(--sj-border);
	border-radius: 10px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sj-related-card:hover {
	transform: translateY(-3px);
	border-color: rgba(200, 78, 22, .45);
	box-shadow: 0 12px 28px rgba(32, 38, 45, .09);
}

.sj-related-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.sj-related-card__top span {
	color: var(--sj-orange);
	font-size: 13px;
	font-weight: 800;
}

.sj-related-card__top small {
	color: var(--sj-text);
	font-size: 12px;
}

.sj-related-card h3 {
	margin: 0 0 13px;
	font-size: 21px;
	line-height: 1.35;
}

.sj-related-card h3 a,
.sj-related-card h3 a:visited {
	color: var(--sj-dark);
	text-decoration: none !important;
}

.sj-related-card h3 a:hover {
	color: var(--sj-orange);
}

.sj-related-card__salary {
	margin-bottom: 22px;
	color: var(--sj-dark);
	font-size: 16px;
}

.sj-related-card__link,
.sj-related-card__link:visited {
	margin-top: auto;
	color: var(--sj-orange);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
}

.sj-related-card__link:hover {
	color: var(--sj-orange-hover);
}

.sj-single-mobile-cta {
	display: none;
}

@media (max-width: 1024px) {
	.sj-single-hero__grid {
		grid-template-columns: minmax(0, 1fr) 310px;
		gap: 34px;
	}

	.sj-single-layout {
		grid-template-columns: minmax(0, 1fr) 290px;
		gap: 34px;
	}

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

@media (max-width: 767px) {
	body.sj-job-single-page {
		padding-bottom: 78px;
	}

	.sj-single-job {
		padding-bottom: 0;
	}

	.sj-single-container {
		width: min(100% - 32px, 1200px);
	}

	.sj-single-breadcrumbs {
		padding: 14px 0;
	}

	.sj-single-breadcrumbs span[aria-current="page"] {
		display: none;
	}

	.sj-single-hero {
		padding: 38px 0 32px;
	}

	.sj-single-hero__grid,
	.sj-single-layout {
		grid-template-columns: 1fr;
	}

	.sj-single-hero__grid {
		gap: 25px;
	}

	.sj-single-hero__identity {
		grid-template-columns: 76px minmax(0, 1fr);
		gap: 17px;
	}

	.sj-single-company-logo {
		width: 76px;
		height: 76px;
		border-radius: 9px;
	}

	.sj-single-company-logo > span {
		font-size: 21px;
	}

	.sj-single-hero h1 {
		font-size: clamp(30px, 9vw, 40px);
		letter-spacing: -.5px;
	}

	.sj-single-company-line {
		font-size: 14px;
	}

	.sj-single-company-line strong {
		font-size: 16px;
	}

	.sj-single-dates {
		font-size: 13px;
	}

	.sj-single-salary-card {
		padding: 22px;
	}

	.sj-single-salary-card .sj-single-button {
		display: none;
	}

	.sj-single-facts-section {
		background: #fff;
	}

	.sj-single-facts {
		grid-template-columns: 1fr;
		box-shadow: none;
	}

	.sj-single-fact {
		min-height: 0;
		padding: 17px 19px;
	}

	.sj-single-main-section {
		padding: 40px 0 8px;
	}

	.sj-single-layout {
		gap: 32px;
	}

	.sj-single-sidebar {
		position: static;
	}

	.sj-single-contact-card {
		padding: 22px;
	}

	.sj-single-copy h2,
	.sj-single-section h2,
	.sj-single-company-box h2 {
		font-size: 25px;
	}

	.sj-single-company-box {
		grid-template-columns: 1fr;
		padding: 23px;
	}

	.sj-single-company-box__logo {
		width: 82px;
		height: 82px;
	}

	.sj-single-related-section {
		padding: 48px 0 55px;
	}

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

	.sj-single-mobile-cta {
		position: fixed;
		z-index: 9999;
		left: 0;
		right: 0;
		bottom: 0;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 14px;
		padding: 10px 14px;
		background: #fff;
		border-top: 1px solid var(--sj-border);
		box-shadow: 0 -8px 24px rgba(32, 38, 45, .12);
	}

	.sj-single-mobile-cta span,
	.sj-single-mobile-cta strong {
		display: block;
	}

	.sj-single-mobile-cta span {
		color: var(--sj-text);
		font-size: 11px;
	}

	.sj-single-mobile-cta strong {
		overflow: hidden;
		color: var(--sj-dark);
		font-size: 14px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.sj-single-mobile-cta a,
	.sj-single-mobile-cta a:visited {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 48px;
		padding: 10px 16px;
		background: var(--sj-orange);
		border-radius: 7px;
		color: #fff !important;
		font-size: 14px;
		font-weight: 800;
		text-decoration: none !important;
	}
}
.sj-salary-comparison small + small {
	margin-top: 4px;
}
