/**
 * Job Vista UAE - public styles.
 *
 * Every rule is scoped under .jvu-root so nothing here can affect the
 * surrounding theme. Colours are exposed as custom properties, which lets a
 * theme override the branding without touching this file.
 */

.jvu-root {
	--jvu-primary: #012C4F;
	--jvu-primary-dark: #011d34;
	--jvu-primary-light: #e8eef3;
	--jvu-text: #1d2327;
	--jvu-muted: #646970;
	--jvu-border: #dcdcde;
	--jvu-bg: #ffffff;
	--jvu-radius: 6px;
	--jvu-success: #1a7f37;
	--jvu-error: #b32d2e;
	--jvu-info: #0b6bcb;

	box-sizing: border-box;
	color: var(--jvu-text);
	font-size: 16px;
	line-height: 1.55;
}

.jvu-root *,
.jvu-root *::before,
.jvu-root *::after {
	box-sizing: inherit;
}

/* --- Layout ------------------------------------------------------------ */

.jvu-card {
	background: var(--jvu-bg);
	border: 1px solid var(--jvu-border);
	border-radius: var(--jvu-radius);
	padding: 28px;
	margin: 0 auto 24px;
}

.jvu-auth {
	max-width: 440px;
}

.jvu-auth-wide {
	max-width: 680px;
}

.jvu-heading {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.25;
	color: var(--jvu-primary);
}

.jvu-muted {
	color: var(--jvu-muted);
}

.jvu-small {
	font-size: 13px;
}

.jvu-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 18px;
}

/* --- Fields ------------------------------------------------------------ */

.jvu-field {
	margin: 0 0 18px;
}

.jvu-field label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin: 0 0 5px;
}

.jvu-required {
	color: var(--jvu-error);
}

.jvu-hint {
	display: block;
	font-size: 13px;
	color: var(--jvu-muted);
	margin: 0 0 6px;
}

.jvu-field input[type="text"],
.jvu-field input[type="email"],
.jvu-field input[type="tel"],
.jvu-field input[type="password"],
.jvu-field input[type="url"],
.jvu-field input[type="number"],
.jvu-field input[type="date"],
.jvu-field input[type="time"],
.jvu-field select,
.jvu-field textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--jvu-border);
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
	color: var(--jvu-text);
	background: #fff;
}

.jvu-field input:focus,
.jvu-field select:focus,
.jvu-field textarea:focus {
	outline: 2px solid var(--jvu-primary);
	outline-offset: 1px;
	border-color: var(--jvu-primary);
}

.jvu-field-error input,
.jvu-field-error select,
.jvu-field-error textarea {
	border-color: var(--jvu-error);
}

.jvu-error {
	display: block;
	color: var(--jvu-error);
	font-size: 13px;
	margin: 5px 0 0;
}

.jvu-field-inline label {
	font-weight: 400;
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
}

.jvu-field-inline input[type="checkbox"] {
	margin: 3px 0 0;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

/* --- Honeypot ----------------------------------------------------------
   Positioned off-screen rather than display:none, because some bots
   specifically skip hidden inputs.                                       */

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

/* --- Buttons ----------------------------------------------------------- */

.jvu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease;
}

.jvu-btn:focus-visible {
	outline: 2px solid var(--jvu-primary);
	outline-offset: 2px;
}

.jvu-root .jvu-btn.jvu-btn-primary,
.jvu-root button.jvu-btn.jvu-btn-primary,
.jvu-root a.jvu-btn.jvu-btn-primary {
	background: var(--jvu-primary);
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

.jvu-root .jvu-btn.jvu-btn-primary:hover,
.jvu-root .jvu-btn.jvu-btn-primary:focus,
.jvu-root .jvu-btn.jvu-btn-primary:active {
	background: var(--jvu-primary-dark);
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

.jvu-btn-secondary {
	background: #fff;
	color: var(--jvu-primary);
	border-color: var(--jvu-primary);
}

.jvu-btn-secondary:hover,
.jvu-btn-secondary:focus {
	background: var(--jvu-primary-light);
}

.jvu-btn-google {
	width: 100%;
	background: #fff;
	color: #3c4043;
	border-color: #dadce0;
}

.jvu-btn-google:hover,
.jvu-btn-google:focus {
	background: #f8f9fa;
}

.jvu-btn-large {
	padding: 15px 32px;
	font-size: 17px;
	width: 100%;
}

.jvu-btn-link {
	background: none;
	border: none;
	color: var(--jvu-muted);
	padding: 6px 0;
	font-weight: 400;
	text-decoration: underline;
}

.jvu-btn-link:hover,
.jvu-btn-link:focus {
	color: var(--jvu-primary);
}

/* --- Notices ----------------------------------------------------------- */

.jvu-notice {
	padding: 13px 16px;
	border-radius: 4px;
	margin: 0 0 20px;
	border-left: 4px solid;
	font-size: 15px;
}

.jvu-notice p {
	margin: 0 0 8px;
}

.jvu-notice p:last-child {
	margin-bottom: 0;
}

.jvu-notice-success {
	background: #edfaef;
	border-left-color: var(--jvu-success);
}

.jvu-notice-error {
	background: #fcf0f1;
	border-left-color: var(--jvu-error);
}

.jvu-notice-info {
	background: #eef6fc;
	border-left-color: var(--jvu-info);
}

/* --- Divider ----------------------------------------------------------- */

.jvu-divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 22px 0;
	color: var(--jvu-muted);
	font-size: 13px;
}

.jvu-divider::before,
.jvu-divider::after {
	content: "";
	flex: 1;
	border-bottom: 1px solid var(--jvu-border);
}

.jvu-divider span {
	padding: 0 14px;
}

/* --- Auth footer ------------------------------------------------------- */

.jvu-auth-footer {
	margin: 22px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--jvu-border);
	font-size: 14px;
}

.jvu-auth-footer p {
	margin: 0 0 10px;
}

.jvu-auth-footer a {
	color: var(--jvu-primary);
}

.jvu-details summary {
	cursor: pointer;
	font-size: 14px;
	color: var(--jvu-primary);
	padding: 6px 0;
}

.jvu-form-compact {
	margin-top: 12px;
}

/* --- Panel ------------------------------------------------------------- */

.jvu-panel {
	max-width: 520px;
}

.jvu-panel-identity {
	margin: 0 0 22px;
}

.jvu-panel-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--jvu-muted);
	margin: 0 0 4px;
}

.jvu-panel-company {
	margin: 2px 0 4px;
	font-size: 17px;
	font-weight: 600;
}

.jvu-panel-actions {
	margin: 24px 0;
}

.jvu-panel-footer {
	margin: 22px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid var(--jvu-border);
}

/* --- Captcha ----------------------------------------------------------- */

.jvu-captcha {
	margin: 0 0 18px;
}

/* --- Responsive -------------------------------------------------------- */

@media screen and (max-width: 600px) {

	.jvu-card {
		padding: 20px 16px;
	}

	.jvu-grid-2 {
		grid-template-columns: 1fr;
	}

	.jvu-heading {
		font-size: 21px;
	}
}

/* --- Reduced motion ---------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

	.jvu-btn {
		transition: none;
	}
}

/* --- Job posting form -------------------------------------------------- */

.jvu-post-job {
	max-width: 820px;
}

.jvu-section-heading {
	margin: 30px 0 16px;
	padding: 0 0 8px;
	font-size: 17px;
	color: var(--jvu-primary);
	border-bottom: 2px solid var(--jvu-primary-light);
}

.jvu-fieldset {
	border: 1px solid var(--jvu-border);
	border-radius: 4px;
	padding: 14px 16px;
}

.jvu-fieldset legend {
	font-weight: 600;
	font-size: 14px;
	padding: 0 6px;
}

.jvu-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 8px 16px;
}

.jvu-checkbox-grid label {
	font-weight: 400;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.jvu-declaration {
	background: var(--jvu-primary-light);
	padding: 14px 16px;
	border-radius: 4px;
	margin: 24px 0;
}

/* Walk-in section.
   Visible by default. The collapsible class is added by JavaScript, so with
   scripting disabled nothing is ever hidden. */

.jvu-walkin-section {
	border-left: 3px solid var(--jvu-primary-light);
	padding-left: 16px;
	margin: 0 0 20px;
}

.jvu-walkin-section.jvu-collapsible {
	display: none;
}

.jvu-walkin-section.jvu-collapsible.jvu-open {
	display: block;
}

/* --- Confirmation ------------------------------------------------------ */

.jvu-success-mark {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--jvu-primary);
	color: #fff;
	font-size: 27px;
	line-height: 52px;
	text-align: center;
	margin: 0 0 16px;
}

.jvu-summary {
	margin: 20px 0;
	padding: 16px;
	background: #f7f8f9;
	border-radius: 4px;
}

.jvu-summary dt {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--jvu-muted);
	margin: 0 0 3px;
}

.jvu-summary dd {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
}

.jvu-summary dd:last-child {
	margin-bottom: 0;
}

.jvu-summary code {
	background: var(--jvu-primary-light);
	padding: 3px 8px;
	border-radius: 3px;
	font-size: 15px;
}

/* --- Job listing ------------------------------------------------------- */

.jvu-jobs,
.jvu-walkins {
	max-width: 1080px;
	margin: 0 auto;
}

.jvu-job-filters {
	background: #f7f8f9;
	border: 1px solid var(--jvu-border);
	border-radius: var(--jvu-radius);
	padding: 18px;
	margin: 0 0 22px;
}

.jvu-filter-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 14px;
}

.jvu-filter label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 5px;
}

.jvu-filter input[type="search"],
.jvu-filter select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--jvu-border);
	border-radius: 4px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
}

.jvu-filter input:focus,
.jvu-filter select:focus {
	outline: 2px solid var(--jvu-primary);
	outline-offset: 1px;
}

.jvu-filter-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 16px 0 0;
}

.jvu-filter-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	cursor: pointer;
}

.jvu-result-count {
	font-size: 14px;
	color: var(--jvu-muted);
	margin: 0 0 16px;
}

.jvu-empty {
	background: #f7f8f9;
	border-radius: var(--jvu-radius);
	padding: 40px 24px;
	text-align: center;
}

.jvu-empty p {
	margin: 0 0 8px;
}

/* --- Job card ---------------------------------------------------------- */

.jvu-job-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.jvu-job-card {
	display: flex;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--jvu-border);
	border-left: 3px solid var(--jvu-primary);
	border-radius: var(--jvu-radius);
	padding: 18px;
	transition: box-shadow .15s ease;
}

.jvu-job-card:hover {
	box-shadow: 0 2px 10px rgba(1, 44, 79, .10);
}

.jvu-job-card-logo img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	border-radius: 4px;
	background: #f7f8f9;
}

.jvu-job-card-body {
	flex: 1;
	min-width: 0;
}

.jvu-job-card-title {
	margin: 0 0 4px;
	font-size: 18px;
	line-height: 1.3;
}

.jvu-job-card-title a {
	color: var(--jvu-primary);
	text-decoration: none;
}

.jvu-job-card-title a:hover,
.jvu-job-card-title a:focus {
	text-decoration: underline;
}

.jvu-job-card-company {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--jvu-muted);
}

.jvu-job-card-meta {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	font-size: 13px;
	color: var(--jvu-muted);
}

.jvu-job-card-meta li::before {
	content: "•";
	margin-right: 6px;
	color: var(--jvu-border);
}

.jvu-job-card-meta li:first-child::before {
	content: none;
}

.jvu-meta-salary {
	font-weight: 600;
	color: var(--jvu-primary);
}

.jvu-job-card-excerpt {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #50575e;
}

.jvu-job-card-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.jvu-job-card-date {
	font-size: 12px;
	color: var(--jvu-muted);
	margin-left: auto;
}

.jvu-btn-small {
	padding: 7px 14px;
	font-size: 13px;
}

/* --- Tags -------------------------------------------------------------- */

.jvu-tag {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.jvu-tag-walkin {
	background: #fff4e5;
	color: #9a6700;
}

.jvu-tag-nofee {
	background: #edfaef;
	color: var(--jvu-success);
}

.jvu-tag-active {
	background: #edfaef;
	color: var(--jvu-success);
}

.jvu-tag-ended {
	background: #f0f0f1;
	color: var(--jvu-muted);
}

/* --- Pagination -------------------------------------------------------- */

.jvu-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin: 28px 0 0;
}

.jvu-page-link {
	display: inline-block;
	min-width: 40px;
	padding: 9px 12px;
	text-align: center;
	border: 1px solid var(--jvu-border);
	border-radius: 4px;
	text-decoration: none;
	color: var(--jvu-primary);
	font-size: 14px;
}

.jvu-page-link:hover,
.jvu-page-link:focus {
	background: var(--jvu-primary-light);
}

.jvu-page-current {
	background: var(--jvu-primary);
	border-color: var(--jvu-primary);
	color: #fff;
	font-weight: 600;
}

/* --- Walk-in cards ----------------------------------------------------- */

.jvu-walkin-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}

.jvu-walkin-card {
	background: #fff;
	border: 1px solid var(--jvu-border);
	border-top: 3px solid #d98d00;
	border-radius: var(--jvu-radius);
	padding: 18px;
	display: flex;
	flex-direction: column;
}

.jvu-walkin-card-ended {
	opacity: .72;
	border-top-color: var(--jvu-border);
}

.jvu-walkin-card-head h3 {
	margin: 0 0 4px;
	font-size: 17px;
	line-height: 1.3;
}

.jvu-walkin-card-head h3 a {
	color: var(--jvu-primary);
	text-decoration: none;
}

.jvu-walkin-card-company {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--jvu-muted);
}

.jvu-walkin-card-details {
	margin: 0 0 14px;
	flex: 1;
}

.jvu-walkin-card-details dt {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--jvu-muted);
	margin: 8px 0 2px;
}

.jvu-walkin-card-details dd {
	margin: 0;
	font-size: 14px;
}

.jvu-walkin-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-top: 12px;
	border-top: 1px solid var(--jvu-border);
}

/* --- Single job -------------------------------------------------------- */

.jvu-job-details {
	background: #f7f8f9;
	border-radius: var(--jvu-radius);
	padding: 20px 22px;
	margin: 26px 0;
}

.jvu-job-details h2 {
	margin: 0 0 14px;
	font-size: 18px;
	color: var(--jvu-primary);
}

.jvu-job-details dl {
	display: grid;
	grid-template-columns: minmax(120px, 180px) 1fr;
	gap: 8px 18px;
	margin: 0;
}

.jvu-job-details dt {
	font-weight: 600;
	font-size: 14px;
	color: var(--jvu-muted);
}

.jvu-job-details dd {
	margin: 0;
	font-size: 15px;
}

.jvu-job-section {
	margin: 26px 0;
}

.jvu-job-section h2 {
	font-size: 18px;
	color: var(--jvu-primary);
	margin: 0 0 10px;
}

/* --- Walk-in box on the job page --------------------------------------- */

.jvu-walkin-box {
	background: #fff8ec;
	border: 1px solid #f0d9a8;
	border-left: 4px solid #d98d00;
	border-radius: var(--jvu-radius);
	padding: 20px 22px;
	margin: 26px 0;
}

.jvu-walkin-box h2 {
	margin: 0 0 12px;
	font-size: 18px;
	color: #7a4f00;
}

.jvu-walkin-box dl {
	display: grid;
	grid-template-columns: minmax(120px, 170px) 1fr;
	gap: 8px 18px;
	margin: 0 0 16px;
}

.jvu-walkin-box dt {
	font-weight: 600;
	font-size: 14px;
	color: #7a4f00;
}

.jvu-walkin-box dd {
	margin: 0;
	font-size: 15px;
}

.jvu-walkin-expired {
	background: #f7f8f9;
	border-color: var(--jvu-border);
	border-left-color: var(--jvu-muted);
}

.jvu-walkin-flag {
	font-weight: 700;
	color: var(--jvu-muted);
	margin: 0 0 12px;
}

/* --- Trust note -------------------------------------------------------- */

.jvu-trust-note {
	border: 1px dashed var(--jvu-border);
	border-radius: var(--jvu-radius);
	padding: 14px 18px;
	margin: 26px 0;
	font-size: 14px;
	color: #50575e;
}

.jvu-trust-note p {
	margin: 0 0 6px;
}

.jvu-trust-note p:last-child {
	margin-bottom: 0;
}

/* --- Responsive -------------------------------------------------------- */

@media screen and (max-width: 860px) {

	.jvu-filter-row {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 600px) {

	.jvu-filter-row {
		grid-template-columns: 1fr;
	}

	.jvu-job-card {
		flex-direction: column;
		gap: 12px;
	}

	.jvu-job-card-date {
		margin-left: 0;
		width: 100%;
	}

	.jvu-job-details dl,
	.jvu-walkin-box dl {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.jvu-job-details dt,
	.jvu-walkin-box dt {
		margin-top: 10px;
	}

	.jvu-walkin-grid {
		grid-template-columns: 1fr;
	}

	.jvu-filter-actions .jvu-btn {
		width: 100%;
	}
}

/* --- Theme isolation ---------------------------------------------------
   Themes vary enormously in how aggressively they style buttons, lists and
   form controls. These rules reset the elements the plugin depends on,
   scoped entirely within .jvu-root so nothing outside is touched. They use
   normal specificity rather than !important, so a theme or child theme can
   still deliberately override any of it.                                  */

.jvu-root button,
.jvu-root input,
.jvu-root select,
.jvu-root textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
}

.jvu-root a.jvu-btn,
.jvu-root button.jvu-btn,
.jvu-root input[type="submit"].jvu-btn {
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	text-decoration: none;
	min-height: 0;
	width: auto;
	max-width: 100%;
	height: auto;
}

.jvu-root a.jvu-btn:hover,
.jvu-root a.jvu-btn:focus,
.jvu-root button.jvu-btn:hover,
.jvu-root button.jvu-btn:focus {
	text-decoration: none;
	box-shadow: none;
}

.jvu-root .jvu-btn-large {
	width: 100%;
}

.jvu-root ul,
.jvu-root ol {
	margin-top: 0;
}

.jvu-root .jvu-job-card-meta,
.jvu-root .jvu-checkbox-grid,
.jvu-root .jvu-pagination {
	list-style: none;
}

.jvu-root dl,
.jvu-root dt,
.jvu-root dd {
	margin: 0;
}

.jvu-root fieldset {
	min-width: 0;
	margin: 0 0 18px;
}

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

.jvu-root h1,
.jvu-root h2,
.jvu-root h3 {
	text-transform: none;
	letter-spacing: normal;
}

/* Some themes hide inputs they do not recognise. The honeypot must stay
   present in the DOM but off-screen, never display:none. */
.jvu-root .jvu-hp,
.jvu-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* --- Application form -------------------------------------------------- */

.jvu-apply {
	max-width: 720px;
	margin-top: 30px;
	border-top: 3px solid var(--jvu-primary);
}

.jvu-apply-success {
	max-width: 560px;
	margin-top: 30px;
}

.jvu-root input[type="file"] {
	width: 100%;
	padding: 10px;
	border: 1px dashed var(--jvu-border);
	border-radius: 4px;
	background: #fafafa;
	font-size: 14px;
}

.jvu-root input[type="file"]:focus {
	outline: 2px solid var(--jvu-primary);
	outline-offset: 1px;
}

/* --- Report a job ------------------------------------------------------ */

.jvu-report-toggle {
	margin: 26px 0;
	border-top: 1px solid var(--jvu-border);
	padding-top: 16px;
}

.jvu-report-toggle summary {
	cursor: pointer;
	font-size: 14px;
	color: var(--jvu-muted);
	padding: 4px 0;
}

.jvu-report-toggle summary:hover,
.jvu-report-toggle summary:focus {
	color: var(--jvu-primary);
}

.jvu-report-toggle form {
	max-width: 480px;
	margin-top: 14px;
}

/* --- Accessibility -----------------------------------------------------
   Focus must always be visible. Some themes remove outlines entirely,
   which makes keyboard navigation impossible; these rules restore it
   within plugin UI without touching the rest of the site.               */

.jvu-root a:focus-visible,
.jvu-root button:focus-visible,
.jvu-root input:focus-visible,
.jvu-root select:focus-visible,
.jvu-root textarea:focus-visible,
.jvu-root summary:focus-visible,
.jvu-root [tabindex]:focus-visible {
	outline: 3px solid var(--jvu-primary);
	outline-offset: 2px;
}

/* Older browsers without :focus-visible still need a visible focus ring. */
.jvu-root a:focus,
.jvu-root button:focus,
.jvu-root summary:focus {
	outline: 3px solid var(--jvu-primary);
	outline-offset: 2px;
}

.jvu-root a:focus:not(:focus-visible),
.jvu-root button:focus:not(:focus-visible),
.jvu-root summary:focus:not(:focus-visible) {
	outline: none;
}

/* Touch targets. WCAG 2.5.8 asks for 24px minimum; 44px is comfortable. */
.jvu-root .jvu-btn,
.jvu-root .jvu-page-link {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.jvu-root .jvu-btn-link {
	min-height: 32px;
}

.jvu-root input[type="checkbox"] {
	min-width: 18px;
	min-height: 18px;
}

/* Error text carries meaning, so it must not rely on colour alone. */
.jvu-error::before {
	content: "⚠ ";
	speak: never;
}

/* Screen reader only, matching WordPress's own utility. */
.jvu-root .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.jvu-root .screen-reader-text:focus {
	background-color: #fff;
	clip: auto;
	clip-path: none;
	color: var(--jvu-primary);
	display: block;
	font-size: 14px;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

@media (prefers-contrast: more) {

	.jvu-root {
		--jvu-border: #50575e;
		--jvu-muted: #1d2327;
	}
}

@media (prefers-reduced-motion: reduce) {

	.jvu-root *,
	.jvu-root *::before,
	.jvu-root *::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}

/* === Employer dashboard 2.0 ========================================== */
.jvu-employer-dashboard { max-width:1120px; margin-left:auto; margin-right:auto; }
.jvu-employer-hero { display:flex; justify-content:space-between; gap:28px; align-items:center; padding:30px 32px; border-radius:18px; background:linear-gradient(135deg, var(--jvu-primary) 0%, #09628e 100%); color:#fff; box-shadow:0 16px 38px rgba(1,44,79,.16); margin-bottom:20px; }
.jvu-employer-eyebrow { display:block; font-size:11px; font-weight:700; letter-spacing:.13em; opacity:.76; margin-bottom:7px; }
.jvu-employer-hero h2 { color:#fff; font-size:30px; line-height:1.15; margin:0 0 7px; }
.jvu-employer-hero p { color:rgba(255,255,255,.82); margin:0; max-width:650px; }
.jvu-employer-account { display:flex; flex-direction:column; text-align:right; background:rgba(255,255,255,.11); padding:11px 14px; border-radius:12px; min-width:180px; }
.jvu-employer-account span { font-weight:700; }
.jvu-employer-account small { opacity:.78; margin-top:3px; overflow-wrap:anywhere; }
.jvu-employer-metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin:0 0 18px; }
.jvu-employer-metric { position:relative; display:flex; flex-direction:column; background:#fff; border:1px solid var(--jvu-border); border-radius:14px; padding:19px 18px; box-shadow:0 5px 18px rgba(28,51,73,.055); }
.jvu-employer-metric strong { font-size:29px; line-height:1.15; color:var(--jvu-primary); }
.jvu-employer-metric > span:last-child { font-size:13px; color:var(--jvu-muted); margin-top:3px; }
.jvu-employer-metric-icon { position:absolute; right:16px; top:16px; width:30px; height:30px; border-radius:10px; display:grid; place-items:center; font-size:12px; color:#0a6693; background:#eef7fb; }
.jvu-employer-grid { display:grid; grid-template-columns:minmax(0,2fr) minmax(260px,.8fr); gap:18px; align-items:start; }
.jvu-employer-dashboard .jvu-card { max-width:none; border-radius:14px; box-shadow:0 5px 18px rgba(28,51,73,.05); }
.jvu-employer-section h3,.jvu-employer-actions-card h3 { margin:0 0 5px; color:#183d59; font-size:18px; }
.jvu-employer-section-head p { margin:0 0 17px; color:var(--jvu-muted); font-size:13px; }
.jvu-employer-job-list { display:flex; flex-direction:column; }
.jvu-employer-job-row { display:flex; justify-content:space-between; gap:14px; align-items:center; padding:14px 0; border-bottom:1px solid var(--jvu-border); }
.jvu-employer-job-row:last-child { border-bottom:0; }
.jvu-employer-job-row div { min-width:0; display:flex; flex-direction:column; }
.jvu-employer-job-row strong { color:#203d53; overflow-wrap:anywhere; }
.jvu-employer-job-row div span { margin-top:3px; font-size:12px; color:var(--jvu-muted); }
.jvu-employer-status { flex:0 0 auto; display:inline-flex; padding:5px 9px; border-radius:999px; font-size:11px; font-weight:700; background:#eef2f4; color:#596a77; }
.jvu-employer-status-publish { background:#eaf7ed; color:#16733a; }
.jvu-employer-status-pending { background:#fff5d9; color:#876100; }
.jvu-employer-status-jvu_expired,.jvu-employer-status-jvu_closed { background:#f1f2f3; color:#626c74; }
.jvu-employer-actions-card { display:flex; flex-direction:column; gap:13px; }
.jvu-employer-actions-card .jvu-btn { width:100%; justify-content:center; box-sizing:border-box; }
.jvu-employer-text-link { font-weight:600; text-decoration:none; color:var(--jvu-primary); padding:3px 0; }
.jvu-employer-account-info { display:grid; gap:3px; margin-top:5px; padding-top:15px; border-top:1px solid var(--jvu-border); }
.jvu-employer-account-info span { font-size:11px; color:var(--jvu-muted); margin-top:8px; text-transform:uppercase; letter-spacing:.04em; }
.jvu-employer-account-info strong { font-size:13px; color:#27465c; overflow-wrap:anywhere; }
.jvu-employer-empty { display:flex; flex-direction:column; align-items:center; text-align:center; padding:35px 16px; border-radius:11px; background:#f7fafb; color:#587080; }
.jvu-employer-empty strong { color:#27465c; margin-bottom:4px; }
.jvu-dashboard-notice { margin:0 0 15px; }
.jvu-profile-completion { max-width:760px !important; margin:0 auto; }
.jvu-employer-footer { display:flex; justify-content:space-between; align-items:center; color:var(--jvu-muted); font-size:12px; }

@media screen and (max-width: 820px) {
	.jvu-employer-hero { flex-direction:column; align-items:flex-start; padding:24px 22px; }
	.jvu-employer-account { text-align:left; width:100%; box-sizing:border-box; }
	.jvu-employer-metrics { grid-template-columns:repeat(2,1fr); }
	.jvu-employer-grid { grid-template-columns:1fr; }
}
@media screen and (max-width: 480px) {
	.jvu-employer-metrics { grid-template-columns:1fr; }
	.jvu-employer-hero h2 { font-size:24px; }
	.jvu-employer-job-row { align-items:flex-start; }
	.jvu-employer-footer { align-items:flex-start; flex-direction:column; gap:8px; }
}


/* === Employer dashboard 2.1 enhancements =============================== */
.jvu-employer-summary-bar{display:grid;grid-template-columns:minmax(280px,.9fr) minmax(320px,1.1fr);gap:14px;margin:0 0 16px}.jvu-employer-profile-score,.jvu-employer-summary-message{display:flex;align-items:center;gap:14px;background:#fff;border:1px solid var(--jvu-border);border-radius:14px;padding:15px 17px;box-shadow:0 5px 18px rgba(28,51,73,.045)}.jvu-employer-profile-score>div:last-child,.jvu-employer-summary-message{min-width:0}.jvu-employer-profile-score strong,.jvu-employer-summary-message strong{display:block;color:#183d59;font-size:14px}.jvu-employer-profile-score span,.jvu-employer-summary-message span{display:block;color:var(--jvu-muted);font-size:12px;line-height:1.45;margin-top:2px}.jvu-profile-ring{--jvu-progress:0%;width:48px;height:48px;flex:0 0 48px;border-radius:50%;display:grid;place-items:center;background:conic-gradient(var(--jvu-primary) var(--jvu-progress),#e9eff3 0);position:relative}.jvu-profile-ring:after{content:"";position:absolute;inset:5px;background:#fff;border-radius:50%}.jvu-profile-ring span{position:relative;z-index:1!important;font-size:11px!important;font-weight:800;color:var(--jvu-primary)!important;margin:0!important}.jvu-employer-summary-message{display:block;border-left:4px solid #0d7da8}.jvu-employer-metrics-six{grid-template-columns:repeat(6,1fr)}.jvu-employer-main-grid{display:grid;grid-template-columns:minmax(0,1.8fr) minmax(270px,.72fr);gap:18px;align-items:start}.jvu-employer-main-column,.jvu-employer-side-column{display:flex;flex-direction:column;gap:18px}.jvu-card-helper{margin:-1px 0 2px;color:var(--jvu-muted);font-size:12px}.jvu-employer-action-link{display:flex;justify-content:space-between;align-items:center;padding:11px 12px;border:1px solid var(--jvu-border);border-radius:10px;text-decoration:none;color:#24465d;background:#f8fafb;font-size:13px;font-weight:650}.jvu-employer-action-link:hover{background:#f1f7fa;border-color:#c8dbe5}.jvu-employer-action-link strong{font-size:18px;color:var(--jvu-primary)}.jvu-employer-account-card h3{margin:0;color:#183d59;font-size:18px}.jvu-employer-card-title{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}.jvu-employer-card-title p{margin:4px 0 0;color:var(--jvu-muted);font-size:12px;line-height:1.45}.jvu-verified-badge{display:inline-flex;align-items:center;white-space:nowrap;background:#eaf7ed;color:#16733a;border-radius:999px;padding:5px 9px;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.jvu-employer-candidate-list{display:flex;flex-direction:column}.jvu-employer-candidate-row{display:grid;grid-template-columns:38px minmax(0,1fr) auto;gap:11px;align-items:center;padding:12px 0;border-bottom:1px solid var(--jvu-border)}.jvu-employer-candidate-row:last-child{border-bottom:0}.jvu-candidate-avatar{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;background:linear-gradient(135deg,#e9f5fa,#dceef7);color:var(--jvu-primary);font-weight:800;font-size:14px}.jvu-candidate-main{display:flex;flex-direction:column;min-width:0}.jvu-candidate-main strong{color:#203d53;overflow-wrap:anywhere}.jvu-candidate-main span{font-size:12px;color:var(--jvu-muted);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.jvu-candidate-meta{display:flex;flex-direction:column;align-items:flex-end;gap:4px}.jvu-candidate-meta small{font-size:10px;color:var(--jvu-muted)}.jvu-candidate-status{display:inline-flex;padding:4px 8px;border-radius:999px;background:#eef2f4;color:#596a77;font-size:10px;font-weight:750;text-transform:capitalize}.jvu-candidate-status-new{background:#eaf4ff;color:#1a6090}.jvu-candidate-status-shortlisted{background:#edf8ec;color:#24723a}.jvu-candidate-status-interview{background:#f6efff;color:#68419a}.jvu-candidate-status-selected{background:#e8f8ef;color:#187043}.jvu-candidate-status-rejected{background:#fff0f0;color:#9a3d3d}
@media screen and (max-width:1100px){.jvu-employer-metrics-six{grid-template-columns:repeat(3,1fr)}}
@media screen and (max-width:820px){.jvu-employer-summary-bar,.jvu-employer-main-grid{grid-template-columns:1fr}.jvu-employer-metrics-six{grid-template-columns:repeat(2,1fr)}}
@media screen and (max-width:480px){.jvu-employer-metrics-six{grid-template-columns:1fr}.jvu-employer-profile-score{align-items:flex-start}.jvu-employer-candidate-row{grid-template-columns:36px minmax(0,1fr)}.jvu-candidate-meta{grid-column:2;align-items:flex-start;flex-direction:row}.jvu-employer-card-title{flex-direction:column}.jvu-employer-summary-bar{display:block}.jvu-employer-summary-message{margin-top:12px}}


/* --- Employer login usability ---------------------------------------- */

.jvu-password-wrap {
	position: relative;
}

.jvu-password-wrap input[type="password"],
.jvu-password-wrap input[type="text"] {
	padding-right: 72px;
}

.jvu-password-toggle {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: var(--jvu-primary);
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 8px;
	cursor: pointer;
}

.jvu-password-toggle:hover,
.jvu-password-toggle:focus-visible {
	text-decoration: underline;
}

.jvu-login-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: -2px 0 18px;
}

.jvu-login-options .jvu-field {
	margin: 0;
}

.jvu-login-forgot {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.jvu-new-employer {
	display: grid;
	gap: 10px;
	padding-top: 18px;
	margin-top: 18px;
	border-top: 1px solid var(--jvu-border);
	text-align: center;
}

.jvu-new-employer > span {
	font-size: 14px;
	font-weight: 600;
	color: var(--jvu-muted);
}

@media (max-width: 520px) {
	.jvu-login-options {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

/* --- Simplified employer job-posting experience (2.2.0) --------------- */
.jvu-post-job-simple {
	max-width: 900px;
	padding: 0;
	overflow: hidden;
}

.jvu-post-job-simple .jvu-form {
	padding: 0 28px 30px;
}

.jvu-post-job-intro {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	padding: 26px 28px;
	background: linear-gradient(135deg, var(--jvu-primary), #0b6683);
	color: #fff;
}

.jvu-post-job-intro .jvu-heading,
.jvu-post-job-intro .jvu-muted {
	color: #fff;
	margin-bottom: 6px;
}

.jvu-post-job-intro .jvu-muted {
	opacity: .9;
	max-width: 560px;
}

.jvu-post-eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .11em;
	margin-bottom: 8px;
	opacity: .85;
}

.jvu-posting-as {
	min-width: 180px;
	padding: 12px 14px;
	border-radius: 10px;
	background: rgba(255,255,255,.12);
	text-align: right;
}

.jvu-posting-as span,
.jvu-posting-as strong {
	display: block;
}

.jvu-posting-as span {
	font-size: 11px;
	opacity: .8;
	margin-bottom: 3px;
}

.jvu-quick-note {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 22px 28px 0;
	padding: 12px 14px;
	border: 1px solid #b9e4ef;
	background: #f1fbfd;
	border-radius: 8px;
	font-size: 13px;
}

.jvu-quick-note strong {
	color: var(--jvu-primary);
	white-space: nowrap;
}

.jvu-post-primary {
	margin-top: 24px;
	padding: 22px;
	border: 1px solid var(--jvu-border);
	border-radius: 10px;
	background: #fff;
}

.jvu-post-section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.jvu-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--jvu-primary);
	color: #fff;
	font-weight: 700;
}

.jvu-post-section-title h3 {
	margin: 0;
	font-size: 18px;
	color: var(--jvu-primary);
}

.jvu-post-section-title p {
	margin: 2px 0 0;
	font-size: 13px;
	color: var(--jvu-muted);
}

.jvu-post-options {
	margin-top: 14px;
	border: 1px solid var(--jvu-border);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.jvu-post-options > summary {
	position: relative;
	cursor: pointer;
	list-style: none;
	padding: 17px 48px 17px 18px;
	background: #fbfcfd;
}

.jvu-post-options > summary::-webkit-details-marker {
	display: none;
}

.jvu-post-options > summary::after {
	content: '+';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	line-height: 1;
	color: var(--jvu-primary);
}

.jvu-post-options[open] > summary::after {
	content: '−';
}

.jvu-post-options > summary span,
.jvu-post-options > summary strong,
.jvu-post-options > summary small {
	display: block;
}

.jvu-post-options > summary strong {
	font-size: 15px;
	color: var(--jvu-primary);
}

.jvu-post-options > summary small {
	margin-top: 3px;
	font-size: 12px;
	font-weight: 400;
	color: var(--jvu-muted);
}

.jvu-post-options-body {
	padding: 20px 18px 6px;
	border-top: 1px solid var(--jvu-border);
}

.jvu-walkin-toggle {
	margin-top: 18px;
	padding: 13px 14px;
	border-radius: 7px;
	background: #f7fafc;
}

.jvu-post-finish {
	margin-top: 20px;
}

.jvu-post-job-simple .jvu-declaration {
	margin: 0 0 16px;
}

.jvu-publish-job-btn {
	width: 100%;
	min-height: 48px;
	font-size: 16px;
}

.jvu-post-submit-note {
	margin: 9px 0 0;
	text-align: center;
	font-size: 12px;
	color: var(--jvu-muted);
}

@media (max-width: 680px) {
	.jvu-post-job-intro {
		align-items: flex-start;
		flex-direction: column;
		padding: 22px 20px;
	}

	.jvu-posting-as {
		width: 100%;
		text-align: left;
	}

	.jvu-post-job-simple .jvu-form {
		padding: 0 16px 22px;
	}

	.jvu-quick-note {
		align-items: flex-start;
		flex-direction: column;
		margin: 18px 16px 0;
	}

	.jvu-post-primary {
		padding: 18px 14px;
	}
}

/* v2.2.1: front-facing walk-in choice on the quick job form. */
.jvu-walkin-front {
	margin: 14px 0 18px;
}
.jvu-walkin-front-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid #cbdbe7;
	border-radius: 6px;
	background: #f7fbfd;
	cursor: pointer;
}
.jvu-walkin-front-label input {
	margin-top: 3px;
}
.jvu-walkin-front-label span {
	display: grid;
	gap: 2px;
}
.jvu-walkin-front-label small {
	font-size: 12px;
	font-weight: 400;
	opacity: .78;
}


/* Free ATS CV Builder ---------------------------------------------------- */
.jvu-cv-builder{max-width:1180px;margin:0 auto}
.jvu-cv-hero{display:flex;justify-content:space-between;gap:24px;align-items:center;padding:26px;border-radius:14px;background:#073b63;color:#fff;margin-bottom:22px}
.jvu-cv-hero h2{color:#fff;margin:4px 0 8px;font-size:30px}
.jvu-cv-hero p{margin:0;max-width:680px;color:#e8f4fb}
.jvu-cv-kicker{font-size:12px;font-weight:800;letter-spacing:.1em;color:#71e0c0}
.jvu-cv-privacy{max-width:290px;padding:12px 14px;border-radius:10px;background:rgba(255,255,255,.1);font-size:13px}
.jvu-cv-layout{display:grid;grid-template-columns:minmax(0,2fr) minmax(260px,1fr);gap:22px;align-items:start}
.jvu-cv-form-section,.jvu-cv-check,.jvu-cv-actions{background:#fff;border:1px solid #d7e2ea;border-radius:10px;padding:20px;margin-bottom:16px}
.jvu-cv-form-section h3,.jvu-cv-check h3{margin:0 0 16px;color:#092f52}
.jvu-cv-form label{display:block;font-size:13px;font-weight:700;color:#15324b;margin-bottom:12px}
.jvu-cv-form input,.jvu-cv-form textarea{width:100%;box-sizing:border-box;margin-top:6px;border:1px solid #c9d8e3;border-radius:5px;padding:11px 12px;background:#fff;color:#172b3a;font:inherit}
.jvu-cv-repeat{border:1px solid #dce6ed;border-radius:8px;padding:14px;margin-bottom:12px;background:#f9fbfc}
.jvu-cv-remove{border:0;background:transparent;color:#a32929;padding:2px 0;cursor:pointer;font-size:12px}
.jvu-cv-side{position:sticky;top:20px}
.jvu-cv-score{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.jvu-cv-score strong{font-size:30px;color:#087f73}
.jvu-cv-score span{font-size:12px;color:#587083}
.jvu-cv-check ul{list-style:none;padding:0;margin:0}
.jvu-cv-check li{padding:8px 0 8px 25px;position:relative;border-bottom:1px solid #edf2f5;font-size:13px}
.jvu-cv-check li:before{content:"○";position:absolute;left:2px;color:#8798a6}
.jvu-cv-check li.is-done:before{content:"✓";color:#087f73;font-weight:800}
.jvu-cv-tip{font-size:12px;line-height:1.5;background:#f2f8fb;padding:10px;border-radius:6px;margin:14px 0 0}
.jvu-cv-actions{display:grid;gap:10px}
.jvu-cv-preview-wrap{margin-top:28px}
.jvu-cv-preview-label{font-size:12px;font-weight:800;letter-spacing:.08em;color:#5b7182;margin-bottom:8px}
.jvu-cv-preview{background:#fff;border:1px solid #cfdbe4;max-width:820px;margin:0 auto;padding:48px 54px;color:#111;font-family:Arial,Helvetica,sans-serif;line-height:1.45;box-shadow:0 8px 30px rgba(24,55,77,.08)}
.jvu-cv-preview header{border-bottom:2px solid #222;padding-bottom:14px;margin-bottom:18px}
.jvu-cv-preview h1{font-size:28px;line-height:1.1;margin:0 0 4px;color:#111}
.jvu-cv-preview h2{font-size:16px;margin:0 0 8px;color:#333;font-weight:600}
.jvu-cv-preview h3{font-size:14px;text-transform:uppercase;letter-spacing:.04em;color:#111;border-bottom:1px solid #bbb;padding-bottom:4px;margin:20px 0 9px}
.jvu-cv-preview p{white-space:pre-line;margin:0}
.jvu-cv-contact{font-size:11px}
.jvu-cv-entry{margin:0 0 14px}
.jvu-cv-entry strong{display:block;font-size:13px}
.jvu-cv-dates{display:block;font-size:11px;color:#444;margin:2px 0 4px}
.jvu-cv-entry ul{margin:5px 0 0 18px;padding:0;font-size:12px}
@media(max-width:780px){.jvu-cv-hero{display:block}.jvu-cv-privacy{margin-top:14px;max-width:none}.jvu-cv-layout{grid-template-columns:1fr}.jvu-cv-side{position:static}.jvu-cv-preview{padding:28px 22px}.jvu-cv-form .jvu-grid-2{grid-template-columns:1fr}}
@media print{
	body *{visibility:hidden!important}
	.jvu-cv-preview,.jvu-cv-preview *{visibility:visible!important}
	.jvu-cv-preview{position:absolute;left:0;top:0;width:100%;max-width:none;box-sizing:border-box;border:0;box-shadow:none;padding:12mm 14mm}
	.jvu-cv-preview-label{display:none!important}
	@page{size:A4;margin:0}
}


/* v3.0.1 Professional ATS CV template ---------------------------------- */
.jvu-cv-preview-toolbar{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	max-width:820px;
	margin:0 auto 10px;
}
.jvu-cv-preview-toolbar small{
	display:block;
	margin-top:3px;
	color:#6b7e8d;
	font-size:11px;
}
.jvu-cv-template-badge{
	display:inline-flex;
	align-items:center;
	padding:6px 10px;
	border:1px solid #b7d9d0;
	border-radius:999px;
	background:#f3fbf8;
	color:#116a5b;
	font-size:11px;
	font-weight:800;
	white-space:nowrap;
}
.jvu-cv-template-classic{
	max-width:820px;
	min-height:1120px;
	padding:54px 60px 58px;
	border:1px solid #d6dee4;
	border-radius:2px;
	background:#fff;
	color:#1b2730;
	font-family:"Arial","Helvetica",sans-serif;
	font-size:12px;
	line-height:1.55;
	letter-spacing:0;
}
.jvu-cv-resume-header{
	padding:0 0 20px;
	margin:0 0 24px;
	border-bottom:2px solid #153f5c;
}
.jvu-cv-name-block h1{
	margin:0;
	color:#102f47;
	font-size:31px;
	font-weight:700;
	line-height:1.05;
	letter-spacing:.01em;
	text-transform:none;
}
.jvu-cv-name-block h2{
	margin:7px 0 12px;
	color:#3c6077;
	font-size:15px;
	font-weight:600;
	line-height:1.3;
	letter-spacing:.02em;
}
.jvu-cv-contact{
	margin:0;
	color:#344d5e;
	font-size:10.8px;
	line-height:1.45;
	word-break:break-word;
}
.jvu-cv-resume-body section{
	margin:0 0 21px;
	break-inside:avoid;
}
.jvu-cv-resume-body section:last-child{
	margin-bottom:0;
}
.jvu-cv-template-classic h3{
	margin:0 0 10px;
	padding:0 0 5px;
	border-bottom:1px solid #9fb0bb;
	color:#153f5c;
	font-size:12.5px;
	font-weight:700;
	line-height:1.2;
	letter-spacing:.07em;
	text-transform:uppercase;
}
.jvu-cv-summary{
	color:#263943;
	font-size:11.7px;
	line-height:1.58;
}
.jvu-cv-entry{
	position:relative;
	margin:0 0 16px;
	padding:0 0 14px;
	border-bottom:1px solid #e5e9ec;
	break-inside:avoid;
}
.jvu-cv-entry:last-child{
	margin-bottom:0;
	padding-bottom:0;
	border-bottom:0;
}
.jvu-cv-entry strong{
	display:block;
	padding-right:145px;
	color:#182e3d;
	font-size:12.5px;
	font-weight:700;
	line-height:1.35;
}
.jvu-cv-dates{
	position:absolute;
	top:0;
	right:0;
	display:block;
	max-width:135px;
	color:#5f6f7a;
	font-size:10.4px;
	font-weight:600;
	line-height:1.35;
	text-align:right;
}
.jvu-cv-entry ul{
	margin:8px 0 0 17px;
	padding:0;
	color:#293b47;
	font-size:11.4px;
	line-height:1.5;
}
.jvu-cv-entry li{
	margin:0 0 4px;
	padding-left:2px;
}
.jvu-cv-skills{
	color:#263943;
	font-size:11.5px;
	line-height:1.65;
}
.jvu-cv-template-classic [data-out="certifications"],
.jvu-cv-template-classic [data-out="languages"]{
	font-size:11.5px;
	line-height:1.6;
	color:#263943;
}
@media(max-width:780px){
	.jvu-cv-preview-toolbar{align-items:flex-start}
	.jvu-cv-template-classic{
		min-height:0;
		padding:34px 26px;
	}
	.jvu-cv-name-block h1{font-size:26px}
	.jvu-cv-entry strong{padding-right:0}
	.jvu-cv-dates{
		position:static;
		max-width:none;
		margin-top:3px;
		text-align:left;
	}
}
@media print{
	.jvu-cv-template-classic{
		min-height:0;
		width:100%;
		max-width:none;
		padding:14mm 16mm 15mm;
		border:0;
		border-radius:0;
		box-shadow:none;
		font-size:10.5pt;
		line-height:1.45;
	}
	.jvu-cv-resume-header{margin-bottom:6mm;padding-bottom:5mm}
	.jvu-cv-name-block h1{font-size:23pt}
	.jvu-cv-name-block h2{font-size:11.5pt}
	.jvu-cv-contact{font-size:8.5pt}
	.jvu-cv-template-classic h3{font-size:9.5pt;margin-bottom:3mm}
	.jvu-cv-summary,.jvu-cv-entry ul,.jvu-cv-skills,
	.jvu-cv-template-classic [data-out="certifications"],
	.jvu-cv-template-classic [data-out="languages"]{font-size:9pt}
	.jvu-cv-entry strong{font-size:9.5pt}
	.jvu-cv-dates{font-size:8.2pt}
	.jvu-cv-resume-body section{margin-bottom:5mm}
	.jvu-cv-entry{margin-bottom:4mm;padding-bottom:3mm}
}


/* v3.3.0 Recruiter-style job posting form ------------------------------- */
.jvu-recruiter-post-root{max-width:1180px;margin:0 auto}
.jvu-recruiter-topbar{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;padding:24px 26px;margin-bottom:18px;border-radius:12px;background:linear-gradient(135deg,#073b63,#0d5b80);color:#fff}
.jvu-recruiter-topbar h2{margin:3px 0 6px;color:#fff;font-size:30px}
.jvu-recruiter-topbar p{margin:0;color:#dceef8}
.jvu-recruiter-kicker{font-size:11px;font-weight:800;letter-spacing:.12em;color:#ffc246}
.jvu-recruiter-account{min-width:190px;padding:12px 14px;border-radius:8px;background:rgba(255,255,255,.1)}
.jvu-recruiter-account span{display:block;font-size:10px;text-transform:uppercase;letter-spacing:.08em;color:#d9edf7}
.jvu-recruiter-account strong{display:block;margin-top:3px;color:#fff;font-size:14px}
.jvu-recruiter-layout{display:grid;grid-template-columns:minmax(0,2.2fr) minmax(260px,.9fr);gap:20px;align-items:start}
.jvu-recruiter-main,.jvu-recruiter-sidebar{min-width:0}
.jvu-recruiter-card,.jvu-recruiter-help-card{background:#fff;border:1px solid #d7e1e8;border-radius:10px;box-shadow:0 4px 18px rgba(21,54,78,.04)}
.jvu-recruiter-card{padding:22px}
.jvu-recruiter-card-title{display:flex;gap:12px;align-items:center;padding-bottom:17px;margin-bottom:18px;border-bottom:1px solid #e5ebef}
.jvu-recruiter-card-title h3{margin:0;color:#06407a;font-size:16px;text-transform:uppercase;letter-spacing:.02em}
.jvu-recruiter-card-title p{margin:4px 0 0;color:#71818d;font-size:11px}
.jvu-recruiter-icon{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#1268bd;color:#fff;font-weight:800}
.jvu-recruiter-form .jvu-field{margin-bottom:14px}
.jvu-recruiter-form .jvu-field label,.jvu-recruiter-form label{font-size:12px;font-weight:700;color:#1d2f3d}
.jvu-recruiter-form input[type="text"],.jvu-recruiter-form input[type="email"],.jvu-recruiter-form input[type="tel"],.jvu-recruiter-form input[type="number"],.jvu-recruiter-form input[type="date"],.jvu-recruiter-form input[type="time"],.jvu-recruiter-form select,.jvu-recruiter-form textarea{width:100%;box-sizing:border-box;min-height:43px;border:1px solid #cfd9e0;border-radius:4px;background:#fff;color:#1a2c39;padding:10px 11px;font-size:13px;box-shadow:none}
.jvu-recruiter-form textarea{min-height:100px;resize:vertical}
.jvu-recruiter-form input:focus,.jvu-recruiter-form select:focus,.jvu-recruiter-form textarea:focus{outline:none;border-color:#1774c8;box-shadow:0 0 0 2px rgba(23,116,200,.11)}
.jvu-recruiter-form .jvu-hint{margin-top:4px;color:#7a8994;font-size:10px}
.jvu-recruiter-form .jvu-error{font-size:11px}
.jvu-recruiter-form .jvu-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:14px 16px}
.jvu-recruiter-form .jvu-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.jvu-recruiter-subsection{padding-top:18px;margin-top:18px;border-top:1px solid #e6ecef}
.jvu-recruiter-subsection h4{margin:0 0 14px;color:#0d4f84;font-size:13px;text-transform:uppercase;letter-spacing:.03em}
.jvu-recruiter-form .jvu-checkboxes{display:flex;flex-wrap:wrap;gap:8px 16px}
.jvu-recruiter-form .jvu-checkboxes label{font-weight:500}
.jvu-recruiter-form .jvu-field-inline{margin:10px 0}
.jvu-recruiter-form .jvu-walkin-front{margin:0}
.jvu-recruiter-form .jvu-walkin-front-label{background:#f4f9fc;border-color:#cddfe9}
.jvu-walkin-recruiter-block .jvu-walkin-section{margin-top:14px}
.jvu-recruiter-captcha{margin:18px 0}
.jvu-recruiter-submit{padding-top:20px;margin-top:20px;border-top:1px solid #e4eaee;text-align:right}
.jvu-recruiter-submit .jvu-declaration{text-align:left;background:#f7fafc;border:1px solid #e0e8ed;border-radius:6px;padding:10px 12px}
.jvu-recruiter-submit .jvu-publish-job-btn{min-width:135px;background:#1268bd!important;border-color:#1268bd!important;color:#fff!important}
.jvu-recruiter-submit .jvu-publish-job-btn:hover{background:#0a569f!important;border-color:#0a569f!important;color:#fff!important}
.jvu-recruiter-submit p{margin:7px 0 0;color:#7b8b97;font-size:10px}
.jvu-recruiter-sidebar{display:grid;gap:15px;position:sticky;top:18px}
.jvu-recruiter-help-card{padding:18px}
.jvu-recruiter-help-card h3{display:flex;align-items:center;gap:8px;margin:0 0 12px;color:#06407a;font-size:14px}
.jvu-recruiter-help-card h3 span{display:grid;place-items:center;flex:0 0 24px;width:24px;height:24px;border-radius:50%;background:#eef6fc;color:#e89a00;font-size:13px}
.jvu-recruiter-help-card ul{list-style:none;padding:0;margin:0}
.jvu-recruiter-help-card li{position:relative;padding:7px 0 7px 22px;color:#344956;font-size:12px;line-height:1.45}
.jvu-recruiter-help-card li:before{content:"✓";position:absolute;left:2px;top:7px;color:#f0a000;font-weight:800}
.jvu-recruiter-help-card p{margin:0;color:#506572;font-size:12px;line-height:1.55}
@media(max-width:900px){.jvu-recruiter-layout{grid-template-columns:1fr}.jvu-recruiter-sidebar{position:static;grid-template-columns:1fr 1fr}.jvu-recruiter-topbar{display:block}.jvu-recruiter-account{margin-top:14px}}
@media(max-width:640px){.jvu-recruiter-card{padding:16px}.jvu-recruiter-form .jvu-grid-2,.jvu-recruiter-form .jvu-grid-3,.jvu-recruiter-sidebar{grid-template-columns:1fr}.jvu-recruiter-topbar{padding:20px}.jvu-recruiter-topbar h2{font-size:25px}.jvu-recruiter-card-title{align-items:flex-start}.jvu-recruiter-card-title h3{font-size:14px}.jvu-recruiter-submit{text-align:stretch}.jvu-recruiter-submit .jvu-publish-job-btn{width:100%}}


/* v3.3.1 Job preview modal ---------------------------------------------- */
.jvu-recruiter-submit-actions{display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap}
.jvu-preview-job-btn{min-width:130px;border:1px solid #1268bd!important;color:#1268bd!important;background:#fff!important}
.jvu-preview-job-btn:hover{background:#eef6fc!important;color:#0a569f!important}
.jvu-job-preview-modal[hidden]{display:none!important}
.jvu-job-preview-modal{position:fixed;inset:0;z-index:99999;display:grid;place-items:center;padding:22px}
.jvu-job-preview-backdrop{position:absolute;inset:0;background:rgba(8,26,42,.68)}
.jvu-job-preview-dialog{position:relative;width:min(820px,100%);max-height:90vh;display:flex;flex-direction:column;background:#fff;border-radius:12px;box-shadow:0 24px 70px rgba(0,0,0,.28);overflow:hidden}
.jvu-job-preview-head{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;padding:20px 22px;background:linear-gradient(135deg,#073b63,#0d5b80);color:#fff}
.jvu-job-preview-head h2{margin:4px 0 0;color:#fff;font-size:22px}
.jvu-job-preview-close{border:0;background:transparent;color:#fff;font-size:30px;line-height:1;cursor:pointer;padding:0 4px}
.jvu-job-preview-content{overflow:auto;padding:24px}
.jvu-job-preview-hero{padding-bottom:18px;margin-bottom:18px;border-bottom:1px solid #dce5ea}
.jvu-job-preview-hero h1{margin:0 0 6px;color:#113c5a;font-size:28px;line-height:1.2}
.jvu-job-preview-hero>p{margin:0 0 10px;color:#506775;font-weight:700}
.jvu-job-preview-meta{display:flex;flex-wrap:wrap;gap:8px}
.jvu-job-preview-meta span{display:inline-flex;padding:5px 8px;border-radius:999px;background:#f1f6f9;color:#3d5869;font-size:11px}
.jvu-job-preview-section{margin:0 0 20px}
.jvu-job-preview-section:last-child{margin-bottom:0}
.jvu-job-preview-section h3{margin:0 0 8px;color:#0b4b7d;font-size:14px;text-transform:uppercase;letter-spacing:.03em}
.jvu-job-preview-section p{margin:0 0 5px;color:#334956;font-size:13px;line-height:1.6}
.jvu-job-preview-text{white-space:pre-wrap;color:#334956;font-size:13px;line-height:1.65}
.jvu-job-preview-actions{display:flex;justify-content:flex-end;gap:10px;padding:16px 22px;border-top:1px solid #e1e8ed;background:#f8fafb}
.jvu-job-preview-actions .jvu-btn-primary{background:#1268bd!important;color:#fff!important}
body.jvu-preview-open{overflow:hidden}
@media(max-width:640px){.jvu-recruiter-submit-actions{display:grid;grid-template-columns:1fr}.jvu-recruiter-submit-actions .jvu-btn{width:100%}.jvu-job-preview-modal{padding:8px}.jvu-job-preview-dialog{max-height:96vh;border-radius:8px}.jvu-job-preview-content{padding:18px}.jvu-job-preview-actions{display:grid;grid-template-columns:1fr}.jvu-job-preview-actions .jvu-btn{width:100%}}


/* v3.3.3 Read-only job preview ----------------------------------------- */
.jvu-job-preview-readonly{
	display:inline-block;
	margin-top:7px;
	padding:4px 8px;
	border:1px solid rgba(255,255,255,.26);
	border-radius:999px;
	background:rgba(255,255,255,.10);
	color:#e9f5fb;
	font-size:10px;
	font-weight:700;
	letter-spacing:.02em;
}
.jvu-job-preview-content{
	user-select:text;
}
.jvu-job-preview-content input,
.jvu-job-preview-content select,
.jvu-job-preview-content textarea{
	display:none!important;
}
.jvu-preview-edit-btn{
	border-color:#1268bd!important;
	color:#1268bd!important;
	background:#fff!important;
}
.jvu-preview-edit-btn:hover{
	background:#eef6fc!important;
	color:#0a569f!important;
}


/* v3.4.0 — Guided Free ATS CV Builder ---------------------------------- */
.jvu-cv-wizard{max-width:1100px;margin:0 auto}
.jvu-cv-wizard .jvu-cv-hero{margin-bottom:18px}
.jvu-cv-progress{margin:0 0 18px;padding:15px 18px;border:1px solid #d8e4eb;border-radius:10px;background:#fff}
.jvu-cv-progress-top{display:flex;justify-content:space-between;gap:12px;margin-bottom:9px;color:#526b7c;font-size:12px}
.jvu-cv-progress-top strong{color:#0b4f7d}
.jvu-cv-progress-track{height:7px;border-radius:999px;background:#e7eef3;overflow:hidden}
.jvu-cv-progress-track span{display:block;height:100%;width:16.666%;border-radius:999px;background:#1268bd;transition:width .2s ease}
.jvu-cv-wizard-layout{max-width:900px;margin:0 auto}
.jvu-cv-step{padding:24px;border:1px solid #d7e2e9;border-radius:12px;background:#fff;box-shadow:0 5px 18px rgba(20,52,74,.04)}
.jvu-cv-step[hidden]{display:none!important}
.jvu-cv-step-heading{display:flex;align-items:flex-start;gap:12px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid #e5ecef}
.jvu-cv-step-heading>span{display:grid;place-items:center;flex:0 0 34px;width:34px;height:34px;border-radius:50%;background:#1268bd;color:#fff;font-weight:800}
.jvu-cv-step-heading h3{margin:0;color:#0a426e;font-size:19px}
.jvu-cv-step-heading p{margin:4px 0 0;color:#6b7d89;font-size:12px}
.jvu-cv-wizard .jvu-cv-form label{display:block;font-size:12px;font-weight:700;color:#19384e;margin-bottom:14px}
.jvu-cv-wizard .jvu-cv-form input,.jvu-cv-wizard .jvu-cv-form textarea{width:100%;box-sizing:border-box;margin-top:6px;padding:11px 12px;border:1px solid #ccd9e1;border-radius:5px;background:#fff;color:#162d3c;font:inherit}
.jvu-cv-wizard .jvu-cv-form input:focus,.jvu-cv-wizard .jvu-cv-form textarea:focus{outline:none;border-color:#1268bd;box-shadow:0 0 0 2px rgba(18,104,189,.1)}
.jvu-cv-template-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.jvu-cv-template-option{position:relative;padding:14px;border:2px solid #dbe4ea;border-radius:10px;background:#fff;text-align:left;cursor:pointer;transition:.18s ease}
.jvu-cv-template-option:hover{border-color:#8db8d8;transform:translateY(-1px)}
.jvu-cv-template-option.is-selected{border-color:#1268bd;box-shadow:0 0 0 2px rgba(18,104,189,.08)}
.jvu-cv-template-option strong{display:block;margin-top:10px;color:#143a55;font-size:14px}
.jvu-cv-template-option small{display:block;margin-top:3px;color:#6d7f8c;font-size:11px}
.jvu-cv-template-option em{display:inline-block;margin-top:8px;padding:3px 7px;border-radius:999px;background:#edf8f4;color:#16715f;font-style:normal;font-size:9px;font-weight:800}
.jvu-template-thumb{display:block;height:145px;padding:13px;border:1px solid #d5dee4;background:#fff;box-shadow:0 2px 7px rgba(19,47,66,.06)}
.jvu-template-thumb i{display:block;height:5px;margin-bottom:9px;background:#ced9df}
.jvu-template-thumb i:first-child{height:15px;width:55%;background:#315d79}
.jvu-template-thumb-classic{border-top:6px solid #174f73}
.jvu-template-thumb-modern{border-top:6px solid #087d78}
.jvu-template-thumb-modern i:first-child{background:#087d78}
.jvu-template-thumb-executive{border-top:6px solid #34383c}
.jvu-template-thumb-executive i:first-child{background:#34383c;width:70%}
.jvu-cv-wizard-actions{display:flex;justify-content:space-between;gap:12px;margin-top:16px}
.jvu-cv-wizard-actions-right{display:flex;gap:10px;margin-left:auto}
.jvu-cv-check-inline{display:grid;grid-template-columns:160px 1fr;gap:15px;margin-bottom:18px}
.jvu-cv-check-inline .jvu-cv-score{margin:0}
.jvu-cv-check-inline ul{display:grid;grid-template-columns:1fr 1fr;gap:0 16px;margin:0}
.jvu-cv-step .jvu-cv-preview{margin:0 auto}
.jvu-cv-template-modern .jvu-cv-resume-header{border-bottom-color:#087d78}
.jvu-cv-template-modern .jvu-cv-name-block h1,.jvu-cv-template-modern h3{color:#086762}
.jvu-cv-template-modern h3{border-bottom-color:#a5cfca}
.jvu-cv-template-executive{font-family:Georgia,"Times New Roman",serif}
.jvu-cv-template-executive .jvu-cv-resume-header{border-bottom:1px solid #34383c;text-align:center}
.jvu-cv-template-executive .jvu-cv-name-block h1{color:#222;font-family:Georgia,"Times New Roman",serif;letter-spacing:.02em}
.jvu-cv-template-executive .jvu-cv-name-block h2{color:#555}
.jvu-cv-template-executive .jvu-cv-contact{text-align:center}
.jvu-cv-template-executive h3{color:#292929;border-bottom-color:#bbb;letter-spacing:.1em}

/* v3.4.0 — Mature Latest Jobs ------------------------------------------ */
.jvu-job-filters-pro{padding:18px;border:1px solid #d8e3ea;border-radius:12px;background:#fff;box-shadow:0 4px 16px rgba(20,54,78,.04)}
.jvu-job-filter-grid{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:12px}
.jvu-job-filter-grid .jvu-filter{min-width:0}
.jvu-job-filter-grid label,.jvu-filter-sort label{display:block;margin:0 0 5px;color:#405c6d;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.jvu-job-filter-grid input,.jvu-job-filter-grid select,.jvu-filter-sort select{width:100%;height:40px;box-sizing:border-box;border:1px solid #cfdce4;border-radius:5px;background:#fff;padding:7px 9px;color:#223b4b;font-size:12px}
.jvu-filter-actions-pro{display:flex;align-items:end;gap:10px;margin-top:12px;padding-top:12px;border-top:1px solid #e7edf1}
.jvu-filter-actions-pro .jvu-filter-check{margin-right:auto}
.jvu-filter-sort{min-width:165px}
.jvu-job-card-pro{display:grid;grid-template-columns:64px 1fr;gap:16px;padding:18px;border:1px solid #dbe4ea;border-radius:10px;background:#fff;transition:.18s ease}
.jvu-job-card-pro:hover{border-color:#b5cbd9;box-shadow:0 7px 22px rgba(18,55,80,.07);transform:translateY(-1px)}
.jvu-job-card-logo-placeholder{display:grid;place-items:center;width:56px;height:56px;border-radius:9px;background:#edf4f8;color:#0d5787;font-size:22px;font-weight:800}
.jvu-job-card-pro-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.jvu-job-card-pro .jvu-job-card-title{margin:0 0 4px;font-size:18px}
.jvu-job-card-pro .jvu-job-card-company{margin:0;color:#577080;font-size:12px;font-weight:600}
.jvu-job-card-facts{display:flex;flex-wrap:wrap;gap:7px 14px;margin:13px 0 10px}
.jvu-job-card-facts span{display:inline-flex;align-items:center;gap:5px;color:#526b79;font-size:11px}
.jvu-job-card-facts b{font-style:normal;font-weight:400}
.jvu-job-card-facts .jvu-job-fact-salary{color:#116b59;font-weight:700}
.jvu-job-card-facts .jvu-job-fact-safe{color:#10725f;font-weight:700}
.jvu-job-card-pro .jvu-job-card-excerpt{margin:0 0 13px;color:#60727d;font-size:12px;line-height:1.55}
.jvu-job-card-pro-footer{display:flex;justify-content:space-between;align-items:center;gap:12px;padding-top:12px;border-top:1px solid #edf1f3}
.jvu-job-card-deadline{color:#7a6250;font-size:10px;font-weight:700}
.jvu-job-card-pro-footer .jvu-btn-primary{color:#fff!important;background:#1268bd!important;border-color:#1268bd!important}
.jvu-job-card-pro-footer .jvu-btn-primary:hover{color:#fff!important;background:#0c579f!important}
@media(max-width:980px){.jvu-job-filter-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){
	.jvu-cv-template-grid{grid-template-columns:1fr}
	.jvu-template-thumb{height:100px}
	.jvu-cv-wizard-actions,.jvu-cv-wizard-actions-right{display:grid;grid-template-columns:1fr;width:100%}
	.jvu-cv-wizard-actions-right{margin:0}
	.jvu-cv-wizard-actions .jvu-btn{width:100%}
	.jvu-cv-check-inline{grid-template-columns:1fr}
	.jvu-cv-check-inline ul{grid-template-columns:1fr}
	.jvu-job-filter-grid{grid-template-columns:1fr}
	.jvu-filter-actions-pro{align-items:stretch;flex-direction:column}
	.jvu-filter-actions-pro .jvu-filter-check{margin-right:0}
	.jvu-filter-sort{width:100%}
	.jvu-job-card-pro{grid-template-columns:1fr}
	.jvu-job-card-pro-head{display:block}
	.jvu-job-card-pro-head .jvu-tag{display:inline-block;margin-top:8px}
	.jvu-job-card-pro-footer{align-items:stretch;flex-direction:column}
	.jvu-job-card-pro-footer .jvu-btn{width:100%}
}
@media print{
	.jvu-cv-wizard .jvu-cv-hero,.jvu-cv-progress,.jvu-cv-step-heading,.jvu-cv-check-inline,.jvu-cv-preview-toolbar,.jvu-cv-wizard-actions{display:none!important}
	.jvu-cv-step[data-cv-step="6"]{display:block!important;padding:0;border:0;box-shadow:none}
	.jvu-cv-step[data-cv-step="6"] .jvu-cv-preview{display:block!important}
}
