/* ACIDC Job Portal — front-end styles v1.1 (theme-agnostic, low specificity)
 *
 * The accent color is a CSS variable so it can be changed from
 * Job Portal → Settings without touching this file.
 */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Montserrat:wght@300&display=swap');

.acidc-jp-wrap,
.acidc-jp-jobs,
.acidc-jp-apply,
.acidc-jp-dashboard {
	--acidc-accent: var(--acidc-jp-accent, #1a4fd6);
	--acidc-accent-soft: color-mix(in srgb, var(--acidc-accent) 8%, #ffffff);
	--acidc-accent-dark: color-mix(in srgb, var(--acidc-accent) 82%, #000000);
	--acidc-ink: #1c2430;
	--acidc-dim: #5b6472;
	--acidc-line: #e4e7ec;
	--acidc-card: #ffffff;
	--acidc-bg-soft: #f6f7f9;
	--acidc-radius: 14px;
	--acidc-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
	--acidc-shadow-hover: 0 12px 28px -8px rgba(16, 24, 40, 0.16);
}

@supports not (color: color-mix(in srgb, red, blue)) {
	.acidc-jp-wrap,
	.acidc-jp-jobs,
	.acidc-jp-apply,
	.acidc-jp-dashboard {
		--acidc-accent-soft: #eef2fb;
		--acidc-accent-dark: #163fb0;
	}
}

.acidc-jp-wrap {
	max-width: 880px;
	margin: 0 auto;
	padding: 1rem;
}

/* ---------------------------------------------------------------- Meta pills */

.acidc-jp-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	margin: 0.75rem 0 1rem;
	padding: 0;
}

.acidc-jp-meta__item {
	align-items: center;
	background: var(--acidc-bg-soft);
	border: 1px solid var(--acidc-line);
	border-radius: 999px;
	color: var(--acidc-dim);
	display: inline-flex;
	font-size: 0.76em;
	font-weight: 500;
	gap: 0.35rem;
	letter-spacing: 0.01em;
	line-height: 1;
	padding: 0.32rem 0.62rem;
}

.acidc-jp-meta__item::before {
	background: currentColor;
	border-radius: 50%;
	content: "";
	height: 6px;
	opacity: 0.55;
	width: 6px;
}

.acidc-jp-meta__item--department { color: var(--acidc-accent-dark); background: var(--acidc-accent-soft); border-color: transparent; }
.acidc-jp-meta__item--salary { background: #e9f7ef; border-color: transparent; color: #14713d; }
.acidc-jp-meta__item--closing { background: #fdf3e3; border-color: transparent; color: #92580c; }
.acidc-jp-meta__item--remote { background: #eef7fb; border-color: transparent; color: #0b6684; }

/* ------------------------------------------------------------------ Job list */

.acidc-jp-jobs__list {
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.acidc-jp-card {
	background: var(--acidc-card);
	border: 1px solid var(--acidc-line);
	border-radius: var(--acidc-radius);
	box-shadow: var(--acidc-shadow);
	padding: 1.5rem 1.6rem;
	position: relative;
	transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.acidc-jp-card:hover {
	border-color: color-mix(in srgb, var(--acidc-accent) 35%, var(--acidc-line));
	box-shadow: var(--acidc-shadow-hover);
	transform: translateY(-2px);
}

.acidc-jp-card--closed { opacity: 0.6; }
.acidc-jp-card--closed:hover { transform: none; }

.acidc-jp-card__title {
	font-size: 1.25em;
	line-height: 1.3;
	margin: 0 0 0.15rem;
}

.acidc-jp-card__title a {
	color: var(--acidc-ink);
	text-decoration: none;
}

.acidc-jp-card__title a:hover { color: var(--acidc-accent); }

/* Make the whole card clickable without breaking inner links. */
.acidc-jp-card__title a::after {
	content: "";
	inset: 0;
	position: absolute;
}

.acidc-jp-card__excerpt {
	color: var(--acidc-dim);
	margin: 0.35rem 0 0.75rem;
}

.acidc-jp-card__actions {
	align-items: center;
	display: flex;
	gap: 0.6rem;
	margin: 0.85rem 0 0;
}

.acidc-jp-badge--closed {
	background: #fbeaea;
	border-radius: 999px;
	color: #a4282d;
	font-size: 0.8em;
	font-weight: 600;
	padding: 0.3rem 0.8rem;
}

.acidc-jp-jobs__empty,
.acidc-jp-dash__empty {
	background: var(--acidc-bg-soft);
	border: 1px dashed var(--acidc-line);
	border-radius: var(--acidc-radius);
	color: var(--acidc-dim);
	padding: 2rem 1.5rem;
	text-align: center;
}

/* ------------------------------------------------------------------- Filters */

.acidc-jp-filters {
	background: var(--acidc-bg-soft);
	border: 1px solid var(--acidc-line);
	border-radius: var(--acidc-radius);
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1.1rem;
	padding: 0.6rem;
}

.acidc-jp-filters__select {
	background: #fff;
	border: 1px solid var(--acidc-line);
	border-radius: 8px;
	color: var(--acidc-ink);
	flex: 1;
	min-width: 150px;
	padding: 0.42rem 0.55rem;
}

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

.acidc-jp-btn {
	background: var(--acidc-accent);
	border: none;
	border-radius: 8px;
	color: #fff !important;
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.65rem 1.35rem;
	text-decoration: none !important;
	transition: background 0.15s ease, box-shadow 0.15s ease;
}

.acidc-jp-btn:hover {
	background: var(--acidc-accent-dark);
	box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--acidc-accent) 55%, transparent);
}

.acidc-jp-btn--secondary { background: #57606f; }
.acidc-jp-btn--secondary:hover { background: #444c59; box-shadow: none; }

.acidc-jp-btn--ghost {
	background: transparent;
	border: 1px solid var(--acidc-line);
	color: var(--acidc-dim) !important;
}

.acidc-jp-btn--ghost:hover {
	background: var(--acidc-bg-soft);
	box-shadow: none;
	color: var(--acidc-ink) !important;
}

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

.acidc-jp-single .acidc-jp-job__header {
	background: linear-gradient(135deg, var(--acidc-accent-soft), #ffffff 70%);
	border: 1px solid var(--acidc-line);
	border-radius: var(--acidc-radius);
	margin-bottom: 1.25rem;
	padding: 2rem 1.8rem 1.5rem;
}

.acidc-jp-job__eyebrow {
	color: var(--acidc-accent-dark);
	display: block;
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.09em;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.acidc-jp-job__title {
	line-height: 1.15;
	margin: 0 0 0.25rem;
}

.acidc-jp-job__header .acidc-jp-meta { margin-bottom: 0.35rem; }

.acidc-jp-job__header .acidc-jp-meta__item {
	background: #fff;
	border-color: var(--acidc-line);
}

.acidc-jp-job__cta { margin: 1rem 0 0; }

.acidc-jp-job__content {
	font-size: 1.02em;
	line-height: 1.65;
}

.acidc-jp-job__backlink {
	display: inline-block;
	margin-bottom: 1rem;
}

.acidc-jp-job__backlink a {
	color: var(--acidc-dim);
	font-size: 0.9em;
	text-decoration: none;
}

.acidc-jp-job__backlink a:hover { color: var(--acidc-accent); }

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

.acidc-jp-apply {
	background: var(--acidc-bg-soft);
	border: 1px solid var(--acidc-line);
	border-radius: var(--acidc-radius);
	margin-top: 2.25rem;
	padding: 1.75rem 1.8rem 1.5rem;
}

.acidc-jp-apply__title {
	font-size: 1.35em;
	margin: 0 0 0.25rem;
}

.acidc-jp-apply__sub {
	color: var(--acidc-dim);
	margin: 0 0 1.25rem;
}

.acidc-jp-form__row--2col {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
	.acidc-jp-form__row--2col { grid-template-columns: 1fr; }
}

.acidc-jp-form__field { margin: 0 0 1.05rem; }

.acidc-jp-form__field label {
	display: block;
	font-size: 0.92em;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.acidc-jp-form__field--check label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 500;
}

.acidc-jp-form__field input[type="text"],
.acidc-jp-form__field input[type="email"],
.acidc-jp-form__field input[type="tel"],
.acidc-jp-form__field select,
.acidc-jp-form__field textarea {
	background: #fff;
	border: 1px solid #cdd3dc;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 0.62rem 0.75rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	width: 100%;
}

.acidc-jp-form__field input:focus,
.acidc-jp-form__field select:focus,
.acidc-jp-form__field textarea:focus {
	border-color: var(--acidc-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--acidc-accent) 18%, transparent);
	outline: none;
}

.acidc-jp-form__field input[type="file"] {
	background: #fff;
	border: 1px dashed #cdd3dc;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 0.8rem;
	width: 100%;
}

.acidc-jp-form__hint {
	color: var(--acidc-dim);
	display: block;
	font-size: 0.85em;
	margin-top: 0.3rem;
}

.acidc-jp-req { color: #c0392b; }

/* Honeypot — visually hidden but present for bots */
.acidc-jp-hp {
	left: -9999px;
	position: absolute !important;
	top: -9999px;
}

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

.acidc-jp-notice {
	border-radius: 10px;
	margin: 0 0 1rem;
	padding: 0.85rem 1.1rem;
}

.acidc-jp-notice--success { background: #e7f5ec; border: 1px solid #79c896; color: #14532d; }
.acidc-jp-notice--error { background: #fbeaea; border: 1px solid #e08d90; color: #7f1d1d; }
.acidc-jp-notice--info { background: #eef2fb; border: 1px solid #a9bdf0; color: #1e3a8a; }

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

.acidc-jp-pagination {
	margin-top: 1.5rem;
	text-align: center;
}

.acidc-jp-pagination .page-numbers {
	border: 1px solid var(--acidc-line);
	border-radius: 8px;
	display: inline-block;
	margin: 0 0.15rem;
	padding: 0.4rem 0.85rem;
	text-decoration: none;
}

.acidc-jp-pagination .page-numbers.current {
	background: var(--acidc-accent);
	border-color: var(--acidc-accent);
	color: #fff;
}

/* ------------------------------------------------------- Recruiter dashboard */

.acidc-jp-login {
	background: var(--acidc-card);
	border: 1px solid var(--acidc-line);
	border-radius: var(--acidc-radius);
	box-shadow: var(--acidc-shadow);
	margin: 2rem auto;
	max-width: 420px;
	padding: 2rem 1.9rem;
}

.acidc-jp-login__badge {
	align-items: center;
	background: var(--acidc-accent-soft);
	border-radius: 12px;
	display: inline-flex;
	font-size: 1.3em;
	height: 48px;
	justify-content: center;
	margin-bottom: 0.75rem;
	width: 48px;
}

.acidc-jp-login__title { margin: 0 0 0.25rem; }

.acidc-jp-login__sub {
	color: var(--acidc-dim);
	font-size: 0.92em;
	margin: 0 0 1.25rem;
}

.acidc-jp-login form p { margin: 0 0 1rem; }

.acidc-jp-login label {
	display: block;
	font-size: 0.92em;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.acidc-jp-login input[type="text"],
.acidc-jp-login input[type="password"] {
	background: #fff;
	border: 1px solid #cdd3dc;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 0.62rem 0.75rem;
	width: 100%;
}

.acidc-jp-login input[type="text"]:focus,
.acidc-jp-login input[type="password"]:focus {
	border-color: var(--acidc-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--acidc-accent) 18%, transparent);
	outline: none;
}

.acidc-jp-login .login-remember label {
	align-items: center;
	display: inline-flex;
	font-weight: 500;
	gap: 0.4rem;
}

.acidc-jp-login input[type="submit"] {
	background: var(--acidc-accent);
	border: none;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	padding: 0.65rem 1.35rem;
	width: 100%;
}

.acidc-jp-login input[type="submit"]:hover { background: var(--acidc-accent-dark); }

.acidc-jp-login__foot {
	font-size: 0.88em;
	margin: 0.75rem 0 0;
	text-align: center;
}

.acidc-jp-dash__head {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.acidc-jp-dash__title { margin: 0; }

.acidc-jp-dash__sub {
	color: var(--acidc-dim);
	font-size: 0.9em;
	margin: 0.2rem 0 0;
}

.acidc-jp-dash__back { margin: 0 0 1rem; }

.acidc-jp-dash__back a {
	color: var(--acidc-dim);
	font-size: 0.9em;
	text-decoration: none;
}

.acidc-jp-dash__back a:hover { color: var(--acidc-accent); }

.acidc-jp-tabs {
	border-bottom: 1px solid var(--acidc-line);
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem;
	margin-bottom: 1rem;
}

.acidc-jp-tabs__tab {
	border-bottom: 2px solid transparent;
	color: var(--acidc-dim);
	font-size: 0.92em;
	font-weight: 600;
	margin-bottom: -1px;
	padding: 0.55rem 0.8rem;
	text-decoration: none;
	white-space: nowrap;
}

.acidc-jp-tabs__tab:hover { color: var(--acidc-ink); }

.acidc-jp-tabs__tab.is-active {
	border-bottom-color: var(--acidc-accent);
	color: var(--acidc-accent-dark);
}

.acidc-jp-tabs__count {
	background: var(--acidc-bg-soft);
	border-radius: 999px;
	font-size: 0.85em;
	padding: 0.1rem 0.5rem;
}

.acidc-jp-tabs__tab.is-active .acidc-jp-tabs__count {
	background: var(--acidc-accent-soft);
}

.acidc-jp-dash__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1.25rem;
}

.acidc-jp-dash__search {
	background: #fff;
	border: 1px solid var(--acidc-line);
	border-radius: 8px;
	flex: 1;
	min-width: 200px;
	padding: 0.5rem 0.7rem;
}

.acidc-jp-dash__tablewrap {
	background: var(--acidc-card);
	border: 1px solid var(--acidc-line);
	border-radius: var(--acidc-radius);
	box-shadow: var(--acidc-shadow);
	overflow-x: auto;
}

.acidc-jp-table {
	border-collapse: collapse;
	margin: 0;
	width: 100%;
}

.acidc-jp-table th {
	background: var(--acidc-bg-soft);
	color: var(--acidc-dim);
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.06em;
	padding: 0.7rem 1rem;
	text-align: left;
	text-transform: uppercase;
}

.acidc-jp-table td {
	border-top: 1px solid var(--acidc-line);
	padding: 0.85rem 1rem;
	vertical-align: middle;
}

.acidc-jp-table__name {
	color: var(--acidc-ink);
	display: block;
	font-weight: 600;
	text-decoration: none;
}

.acidc-jp-table__name:hover { color: var(--acidc-accent); }

.acidc-jp-table__email {
	color: var(--acidc-dim);
	display: block;
	font-size: 0.85em;
}

.acidc-jp-status {
	border-radius: 999px;
	display: inline-block;
	font-size: 0.8em;
	font-weight: 600;
	line-height: 1;
	padding: 0.38rem 0.8rem;
	white-space: nowrap;
}

.acidc-jp-status--new { background: var(--acidc-accent-soft); color: var(--acidc-accent-dark); }
.acidc-jp-status--in_review { background: #fdf3e3; color: #92580c; }
.acidc-jp-status--interview { background: #eef7fb; color: #0b6684; }
.acidc-jp-status--offered { background: #f3edfb; color: #5b21b6; }
.acidc-jp-status--hired { background: #e9f7ef; color: #14713d; }
.acidc-jp-status--rejected { background: #fbeaea; color: #a4282d; }

.acidc-jp-dash__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1.4fr;
	margin-bottom: 1rem;
}

@media (max-width: 700px) {
	.acidc-jp-dash__grid { grid-template-columns: 1fr; }
}

.acidc-jp-panel {
	background: var(--acidc-card);
	border: 1px solid var(--acidc-line);
	border-radius: var(--acidc-radius);
	box-shadow: var(--acidc-shadow);
	padding: 1.4rem 1.5rem;
}

.acidc-jp-panel__title {
	color: var(--acidc-dim);
	font-size: 0.8em;
	font-weight: 700;
	letter-spacing: 0.07em;
	margin: 0 0 0.85rem;
	text-transform: uppercase;
}

.acidc-jp-panel__list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.acidc-jp-panel__list li { margin-bottom: 0.5rem; }

.acidc-jp-panel__prose { line-height: 1.6; }
.acidc-jp-panel__muted { color: var(--acidc-dim); font-style: italic; }

/* Responsive table → stacked cards on small screens */
@media (max-width: 640px) {
	.acidc-jp-table thead { display: none; }

	.acidc-jp-table tr {
		border-top: 1px solid var(--acidc-line);
		display: block;
		padding: 0.6rem 0;
	}

	.acidc-jp-table td {
		border: none;
		display: flex;
		gap: 0.75rem;
		justify-content: space-between;
		padding: 0.3rem 1rem;
	}

	.acidc-jp-table td::before {
		color: var(--acidc-dim);
		content: attr(data-label);
		font-size: 0.8em;
		font-weight: 700;
		text-transform: uppercase;
	}
}

/* ================================================================
 * Job Bank home page — [acidc_home] landing layout
 * Full-bleed sections; content re-constrained by __container.
 * ================================================================ */

.acidc-jp-home {
	--h-indigo: #312e81;
	--h-blue: #1d4ed8;
	--h-blue-2: #2563eb;
	--h-yellow: #f5a623;
	--h-ink: #1c2430;
	--h-dim: #5b6472;
	--h-line: #e6e8ef;
	/* Break out of constrained/padded block-theme wrappers to full width. */
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: 0 !important;
	color: var(--h-ink);
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}

.acidc-jp-home *,
.acidc-jp-home *::before,
.acidc-jp-home *::after { box-sizing: border-box; }

.acidc-jp-home__container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

.acidc-jp-home .center { text-align: center; }

.acidc-jp-home__h2 {
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 700;
	margin: 0 0 .35rem;
	color: var(--h-ink);
}

.acidc-jp-home__lead { color: var(--h-dim); margin: 0 0 1.8rem; }

.acidc-jp-home__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.6rem;
	flex-wrap: wrap;
}
.acidc-jp-home__row .acidc-jp-home__lead { margin: 0; }

.acidc-jp-home__morelink {
	color: var(--h-blue);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.acidc-jp-home__morelink:hover { text-decoration: underline; }

/* Buttons ------------------------------------------------------- */
.acidc-jp-home__btn {
	display: inline-block;
	background: var(--h-blue);
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;
	padding: .8rem 1.7rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.acidc-jp-home__btn:hover { background: #1740b8; box-shadow: 0 10px 22px -10px rgba(29,78,216,.7); transform: translateY(-1px); }
.acidc-jp-home__btn--light { background: #fff; color: var(--h-blue) !important; }
.acidc-jp-home__btn--light:hover { background: #f1f4ff; }
.acidc-jp-home__btn--yellow { background: var(--h-yellow); color: #3a2b00 !important; }
.acidc-jp-home__btn--yellow:hover { background: #e8990f; box-shadow: 0 10px 22px -10px rgba(245,166,35,.7); }
.acidc-jp-home__btn--ghost { background: #fff; color: var(--h-blue) !important; border: 1px solid var(--h-line); font-weight: 600; }
.acidc-jp-home__btn--ghost:hover { background: #f5f7ff; }

/* Top bar ------------------------------------------------------- */
.acidc-jp-home__topbar {
	background: #fff;
	border-bottom: 1px solid var(--h-line);
}
.acidc-jp-home__topbar-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	padding-top: 14px;
	padding-bottom: 14px;
}
.acidc-jp-home__brand { display: inline-flex; align-items: center; justify-self: start; }
.acidc-jp-home__brand img {
	width: 56px;
	height: 56px;
	display: block;
}
.acidc-jp-home__sitename {
	display: inline-flex;
	align-items: baseline;
	gap: .4em;
	justify-self: center;
	color: #14235c;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
}
.acidc-jp-home__sitename:hover { color: #14235c; }
.acidc-jp-home__sitename-acidc {
	font-family: "Montserrat", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: 1.35rem;
	letter-spacing: .12em;
}
.acidc-jp-home__sitename-jb {
	font-family: "Libre Baskerville", "Baskerville", "Baskerville Old Face", "Hoefler Text", Garamond, "Times New Roman", serif;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: .04em;
}
.acidc-jp-home__topnav {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	justify-self: end;
}
.acidc-jp-home__topnav > a:not(.acidc-jp-home__btn) {
	color: var(--h-ink);
	font-weight: 600;
	text-decoration: none;
	font-size: .95rem;
}
.acidc-jp-home__topnav > a:not(.acidc-jp-home__btn):hover { color: var(--h-blue); }
.acidc-jp-home__admin-login { white-space: nowrap; }
.acidc-jp-home__topnav .acidc-jp-home__btn { padding: .6rem 1.2rem; }
@media (max-width: 860px) {
	.acidc-jp-home__sitename { display: none; }
}
@media (max-width: 640px) {
	.acidc-jp-home__topbar-inner { grid-template-columns: auto 1fr; }
	.acidc-jp-home__brand img { width: 44px; height: 44px; }
	.acidc-jp-home__topnav { gap: .9rem; }
	.acidc-jp-home__topnav > a:not(.acidc-jp-home__btn) { display: none; }
	.acidc-jp-home__topnav > a.acidc-jp-home__admin-login { display: inline-flex; }
}

/* Hero ---------------------------------------------------------- */
.acidc-jp-home__hero {
	background: linear-gradient(135deg, var(--h-indigo) 0%, var(--h-blue) 60%, var(--h-blue-2) 100%);
	color: #fff;
	padding: 3.5rem 0 4rem;
}
.acidc-jp-home__hero-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 2.5rem;
	align-items: center;
}
.acidc-jp-home__hero-title {
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.1;
	font-weight: 800;
	margin: 0 0 1rem;
	color: #fff;
}
.acidc-jp-home__hero-sub { color: rgba(255,255,255,.85); margin: 0 0 1.5rem; font-size: 1.05rem; }

.acidc-jp-home__search {
	display: flex;
	background: #fff;
	border-radius: 12px;
	padding: 7px;
	gap: 7px;
	box-shadow: 0 18px 40px -18px rgba(0,0,0,.5);
	max-width: 560px;
}
.acidc-jp-home__search-field {
	display: flex;
	align-items: center;
	gap: .4rem;
	flex: 1;
	padding: 0 .6rem;
	min-width: 0;
}
.acidc-jp-home__search-field svg { width: 18px; height: 18px; fill: #9aa1ad; flex: none; }
.acidc-jp-home__search-field + .acidc-jp-home__search-field { border-left: 1px solid var(--h-line); }
.acidc-jp-home__search input {
	border: none;
	outline: none;
	padding: .7rem 0;
	width: 100%;
	font-size: .95rem;
	color: var(--h-ink);
	background: transparent;
}
.acidc-jp-home__search-btn {
	background: var(--h-yellow);
	color: #3a2b00;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	padding: 0 1.5rem;
	cursor: pointer;
	white-space: nowrap;
}
.acidc-jp-home__search-btn:hover { background: #e8990f; }

.acidc-jp-home__popular { color: rgba(255,255,255,.8); font-size: .85rem; margin: 1rem 0 0; }
.acidc-jp-home__popular strong { font-weight: 600; }

.acidc-jp-home__hero-foot {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.2rem;
	flex-wrap: wrap;
}
.acidc-jp-home__candcount { display: flex; align-items: center; gap: .7rem; }
.acidc-jp-home__avatars { display: inline-flex; }
.acidc-jp-home__avatars span {
	width: 34px; height: 34px;
	border-radius: 50%;
	border: 2px solid var(--h-blue);
	margin-left: -10px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: .8rem; font-weight: 700; color: #fff;
}
.acidc-jp-home__avatars span:first-child { margin-left: 0; }
.acidc-jp-home__avatars-more { background: #fff; color: var(--h-blue) !important; }
.acidc-jp-home__candcount-label { font-weight: 600; font-size: .9rem; }
.acidc-jp-home__uploadcv {
	display: inline-flex; align-items: center; gap: .4rem;
	color: #fff; text-decoration: none; font-weight: 600; font-size: .92rem;
}
.acidc-jp-home__uploadcv svg { width: 18px; height: 18px; fill: #fff; }
.acidc-jp-home__uploadcv:hover { text-decoration: underline; }

.acidc-jp-home__hero-photo img {
	width: 100%;
	height: 100%;
	max-height: 440px;
	object-fit: cover;
	border-radius: 18px;
	display: block;
	box-shadow: 0 24px 50px -20px rgba(0,0,0,.55);
}

/* How it works -------------------------------------------------- */
.acidc-jp-home__how { background: #fff; padding: 3.5rem 0; }
.acidc-jp-home__how-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 1.5rem;
}
.acidc-jp-home__how-item { text-align: center; padding: 0 .5rem; }
.acidc-jp-home__how-item h3 { margin: 1rem 0 .4rem; font-size: 1.15rem; }
.acidc-jp-home__how-item p { color: var(--h-dim); font-size: .95rem; margin: 0; }
.acidc-jp-home__how-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 72px; height: 72px; border-radius: 18px;
}
.acidc-jp-home__how-icon svg { width: 36px; height: 36px; }
.acidc-jp-home__how-icon--doc { background: #eaf1ff; }
.acidc-jp-home__how-icon--doc svg { fill: #2f6bd8; }
.acidc-jp-home__how-icon--chart { background: #fff1e6; }
.acidc-jp-home__how-icon--chart svg { fill: #f0932b; }
.acidc-jp-home__how-icon--chat { background: #e9f8ef; }
.acidc-jp-home__how-icon--chat svg { fill: #27ae60; }

/* Featured jobs ------------------------------------------------- */
.acidc-jp-home__jobs { background: #f4f5fb; padding: 3.5rem 0; }
.acidc-jp-home__jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 1.4rem;
	margin: 1.5rem 0 2rem;
}
.acidc-jp-home__job {
	background: #fff;
	border: 1px solid var(--h-line);
	border-radius: 14px;
	padding: 1.4rem;
	transition: box-shadow .18s ease, transform .18s ease;
}
.acidc-jp-home__job:hover { box-shadow: 0 16px 34px -16px rgba(16,24,40,.22); transform: translateY(-3px); }
.acidc-jp-home__job-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .9rem; }
.acidc-jp-home__job-logo {
	width: 54px; height: 54px; border-radius: 12px;
	background: #f4f5fb; border: 1px solid var(--h-line);
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 800; color: var(--h-blue); font-size: 1.3rem; overflow: hidden;
}
.acidc-jp-home__job-logo img { width: 100%; height: 100%; object-fit: cover; }
.acidc-jp-home__tag { font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; }
.acidc-jp-home__tag--open { background: #e9f8ef; color: #1c7a45; }
.acidc-jp-home__tag--muted { background: #f0f1f5; color: #8891a0; }
.acidc-jp-home__job-title { font-size: 1.1rem; margin: 0 0 .3rem; }
.acidc-jp-home__job-title a { color: var(--h-ink); text-decoration: none; }
.acidc-jp-home__job-title a:hover { color: var(--h-blue); }
.acidc-jp-home__job-dept { color: var(--h-dim); font-size: .9rem; margin: 0 0 .8rem; }
.acidc-jp-home__job-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.acidc-jp-home__chip { background: #eef1f6; color: #5b6472; font-size: .78rem; padding: .3rem .7rem; border-radius: 6px; }
.acidc-jp-home__chip--loc { background: #eaf1ff; color: #2f6bd8; }
.acidc-jp-home__empty { grid-column: 1 / -1; text-align: center; color: var(--h-dim); background: #fff; border: 1px dashed var(--h-line); border-radius: 14px; padding: 2.5rem 1rem; }

/* Featured cities ----------------------------------------------- */
.acidc-jp-home__cities { background: #fff; padding: 3.5rem 0; }
.acidc-jp-home__cities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}
.acidc-jp-home__city {
	position: relative;
	display: block;
	min-height: 230px;
	border-radius: 14px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	transition: transform .2s ease;
}
.acidc-jp-home__city:hover { transform: translateY(-3px); }
.acidc-jp-home__city-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem; }
.acidc-jp-home__city-name { display: block; color: #fff; font-weight: 700; font-size: 1.1rem; }
.acidc-jp-home__city-count { display: block; color: rgba(255,255,255,.85); font-size: .85rem; }

/* Your dream jobs CTA ------------------------------------------- */
.acidc-jp-home__cta {
	background: linear-gradient(135deg, var(--h-blue) 0%, var(--h-blue-2) 100%);
	color: #fff;
	padding: 4rem 0;
}
.acidc-jp-home__cta-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin: 0 0 .6rem; color: #fff; }
.acidc-jp-home__cta-sub { color: rgba(255,255,255,.9); margin: 0 0 1.6rem; }
.acidc-jp-home__cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin: 0; }

/* Featured candidates ------------------------------------------- */
.acidc-jp-home__candidates { background: #fff; padding: 3.5rem 0; }
.acidc-jp-home__cand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.acidc-jp-home__cand {
	border: 1px solid var(--h-line);
	border-radius: 14px;
	padding: 1.6rem 1.2rem;
	text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: .35rem;
	transition: box-shadow .18s ease, transform .18s ease;
}
.acidc-jp-home__cand:hover { box-shadow: 0 16px 34px -16px rgba(16,24,40,.2); transform: translateY(-3px); }
.acidc-jp-home__cand-avatar {
	width: 62px; height: 62px; border-radius: 50%;
	background: linear-gradient(135deg, #2563eb, #6d5cf5);
	color: #fff; font-weight: 800; font-size: 1.5rem;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: .5rem;
}
.acidc-jp-home__cand-name { font-weight: 700; }
.acidc-jp-home__cand-role { color: var(--h-dim); font-size: .88rem; margin-bottom: .7rem; }

/* Let employers find you ---------------------------------------- */
.acidc-jp-home__employers { background: #e9effc; padding: 2.6rem 0; }
.acidc-jp-home__employers-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.acidc-jp-home__emp-title { margin: 0 0 .3rem; font-size: 1.5rem; }
.acidc-jp-home__emp-sub { margin: 0; color: var(--h-dim); max-width: 640px; }

/* Responsive ---------------------------------------------------- */
@media (max-width: 900px) {
	.acidc-jp-home__hero-grid { grid-template-columns: 1fr; }
	.acidc-jp-home__hero-photo { order: -1; }
	.acidc-jp-home__hero-photo img { max-height: 300px; }
	.acidc-jp-home__how-grid { grid-template-columns: 1fr; gap: 2.2rem; }
	.acidc-jp-home__cities-grid { grid-template-columns: repeat(2, 1fr); }
	.acidc-jp-home__cand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.acidc-jp-home__search { flex-wrap: wrap; }
	.acidc-jp-home__search-field { flex: 1 1 100%; }
	.acidc-jp-home__search-field + .acidc-jp-home__search-field { border-left: none; border-top: 1px solid var(--h-line); }
	.acidc-jp-home__search-btn { flex: 1 1 100%; padding: .7rem; }
	.acidc-jp-home__cities-grid, .acidc-jp-home__cand-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- Search filters update */

.acidc-jp-filters__search {
	background: #fff;
	border: 1px solid var(--acidc-line);
	border-radius: 8px;
	color: var(--acidc-ink);
	flex: 2 1 260px;
	min-width: 200px;
	padding: 0.42rem 0.55rem;
}

.acidc-jp-filters__check {
	align-items: center;
	background: #fff;
	border: 1px solid var(--acidc-line);
	border-radius: 8px;
	color: var(--acidc-ink);
	display: inline-flex;
	gap: 0.4rem;
	min-height: 34px;
	padding: 0.32rem 0.52rem;
	font-size: 0.88rem;
}

.acidc-jp-filters__check input {
	margin: 0;
}

.acidc-jp-filters__reset {
	align-items: center;
	color: var(--acidc-dim);
	display: inline-flex;
	font-weight: 600;
	padding: 0.38rem 0.25rem;
	text-decoration: none;
}

.acidc-jp-filters__reset:hover {
	color: var(--acidc-accent-dark);
	text-decoration: underline;
}

.acidc-jp-filters .acidc-jp-btn {
	padding: 0.44rem 0.9rem;
	font-size: 0.9rem;
}

@media (max-width: 640px) {
	.acidc-jp-filters,
	.acidc-jp-filters__search,
	.acidc-jp-filters__select,
	.acidc-jp-filters__check,
	.acidc-jp-filters .acidc-jp-btn {
		width: 100%;
	}
}

/*
 * ACIDC Job Portal standalone shell
 * Keeps plugin pages visually self-contained without relying on the theme header/footer.
 */
body.acidc-jp-standalone-page {
	margin: 0;
	background: #f6f8fb;
}

.acidc-jp-portal-shell {
	min-height: 100vh;
	background: #f6f8fb;
	color: #172033;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.acidc-jp-portal-nav {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(15, 23, 42, .08);
	box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
	backdrop-filter: blur(12px);
}

.acidc-jp-portal-nav__inner {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.acidc-jp-portal-nav__brand {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	text-decoration: none;
	color: #172033;
	font-size: .92rem;
	letter-spacing: .01em;
}

.acidc-jp-portal-nav__brand img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.acidc-jp-portal-nav__links {
	display: flex;
	align-items: center;
	gap: .45rem;
	flex-wrap: wrap;
}

.acidc-jp-portal-nav__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: .38rem .68rem;
	font-size: .88rem;
	border-radius: 999px;
	text-decoration: none;
	color: #172033;
	font-weight: 500;
	background: rgba(15, 23, 42, .04);
}

.acidc-jp-portal-nav__links a:hover,
.acidc-jp-portal-nav__links a:focus {
	background: var(--acidc-jp-accent, #0a66c2);
	color: #fff;
}

.acidc-jp-portal-main {
	width: 100%;
	min-height: calc(100vh - 64px);
}

.acidc-jp-page:not(.acidc-jp-page--home) {
	padding-top: 2.25rem;
	padding-bottom: 4rem;
}

.acidc-jp-page--home {
	max-width: none;
	padding: 0;
	background: #fff;
}

.acidc-jp-page__header {
	margin-bottom: 1.25rem;
	text-align: center;
}

.acidc-jp-page__header h1 {
	margin: 0;
	font-size: clamp(1.6rem, 3.4vw, 2.35rem);
	line-height: 1.1;
	font-weight: 700;
	color: #172033;
}

@media (max-width: 680px) {
	.acidc-jp-portal-nav__inner {
		min-height: auto;
		padding: .85rem 0;
		align-items: flex-start;
		flex-direction: column;
	}

	.acidc-jp-portal-nav__links {
		width: 100%;
	}

	.acidc-jp-portal-nav__links a {
		flex: 1 1 auto;
	}
}
