/**
 * Jobs Katta (built on the Nova engine) - main stylesheet
 *
 * A trustworthy "sarkari" navy + saffron palette, built for a Marathi
 * government-jobs portal. Font is Mukta (Devanagari-capable, clean and
 * functional) for both headings and body, matching real sarkari-job portals.
 * Organised top to bottom: tokens, base, layout, header, components, content,
 * sidebar, footer, then responsive rules.
 */

/* ----------------------------------------------------------------------------
   1. Design tokens
---------------------------------------------------------------------------- */
:root {
	--nova-ink: #0b1f3a;
	--nova-primary: #0d3b7a;
	--nova-primary-deep: #082a58;
	--nova-accent: #f97316;
	--nova-accent-soft: #fb923c;
	--nova-mist: #eaf1fb;
	--nova-mist-2: #f5f8fd;
	--nova-paper: #ffffff;
	--nova-white: #ffffff;
	--nova-gold: #138a4e;
	--nova-text: #1c2b3f;
	--nova-body: #46586e;
	--nova-muted: #64748b;
	--nova-border: #e1e8f2;
	--nova-border-soft: rgba(13, 59, 122, 0.12);
	--nova-footer-bg: #081b33;
	--nova-shadow: 0 24px 70px rgba(11, 31, 58, 0.12);
	--nova-shadow-sm: 0 12px 28px rgba(13, 59, 122, 0.18);
	--nova-radius: 24px;
	--nova-radius-md: 18px;
	--nova-radius-sm: 14px;
	--nova-display: 'Mukta', 'Noto Sans Devanagari', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--nova-font: 'Mukta', 'Noto Sans Devanagari', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ----------------------------------------------------------------------------
   2. Base
---------------------------------------------------------------------------- */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--nova-paper);
	color: var(--nova-text);
	font-family: var(--nova-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

a {
	color: inherit;
}

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

input, select, textarea, button {
	font: inherit;
}

button {
	cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(79, 70, 229, 0.28);
	outline-offset: 3px;
}

.nova-skip {
	position: absolute;
	left: 16px;
	top: -100px;
	background: var(--nova-ink);
	color: #fff;
	padding: 10px 16px;
	border-radius: 10px;
	font-weight: 800;
	z-index: 50;
	transition: top 0.18s ease;
}

.nova-skip:focus {
	top: 16px;
}

/* ----------------------------------------------------------------------------
   3. Layout
---------------------------------------------------------------------------- */
.nova-container {
	width: min(var(--nova-container-max, 1180px), calc(100% - 40px));
	margin-inline: auto;
}

.nova-site-main {
	display: block;
}

/* ----------------------------------------------------------------------------
   4. Header and navigation
---------------------------------------------------------------------------- */
.nova-site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-header-inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.nova-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--nova-ink);
}

.nova-brand-mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--nova-accent), var(--nova-primary-deep));
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 0.02em;
	box-shadow: var(--nova-shadow-sm);
}

.nova-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.nova-brand-text strong {
	font-family: var(--nova-display);
	font-size: 20px;
	letter-spacing: -0.03em;
	color: var(--nova-ink);
}

.nova-brand-text small {
	font-size: 12px;
	color: var(--nova-muted);
	font-weight: 700;
}

.nova-brand-logo img {
	max-width: var(--nova-logo-max, 180px);
	max-height: 96px;
	width: auto;
	height: auto;
}

.nova-primary-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nova-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-menu a {
	display: block;
	text-decoration: none;
	color: var(--nova-ink);
	font-weight: 700;
	font-size: 14px;
	padding: 10px 13px;
	border-radius: 999px;
	transition: background 0.16s ease, color 0.16s ease;
}

.nova-menu a:hover,
.nova-menu .current-menu-item > a {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
}

.nova-nav-cta,
.nova-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	border-radius: 999px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 15px;
	border: 1px solid transparent;
	min-height: 46px;
	padding: 11px 20px;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.nova-nav-cta,
.nova-btn-primary {
	background: var(--nova-primary);
	color: #fff;
	box-shadow: var(--nova-shadow-sm);
}

.nova-nav-cta:hover,
.nova-btn-primary:hover {
	background: var(--nova-primary-deep);
	transform: translateY(-1px);
}

.nova-btn-soft {
	background: #fff;
	color: var(--nova-primary-deep);
	border-color: var(--nova-border);
}

.nova-btn-soft:hover {
	border-color: var(--nova-accent);
	transform: translateY(-1px);
}

.nova-menu-toggle {
	display: none;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--nova-border);
	background: #fff;
	border-radius: 999px;
	padding: 10px 16px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-menu-toggle-bars,
.nova-menu-toggle-bars::before,
.nova-menu-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--nova-primary-deep);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nova-menu-toggle-bars {
	position: relative;
}

.nova-menu-toggle-bars::before,
.nova-menu-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nova-menu-toggle-bars::before {
	top: -6px;
}

.nova-menu-toggle-bars::after {
	top: 6px;
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars {
	background: transparent;
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars::before {
	transform: translateY(6px) rotate(45deg);
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* ----------------------------------------------------------------------------
   5. Buttons shared
---------------------------------------------------------------------------- */
.nova-pill {
	display: inline-flex;
	align-items: center;
	width: max-content;
	border-radius: 999px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	padding: 6px 11px;
	font-family: var(--nova-display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

/* ----------------------------------------------------------------------------
   6. Hero
---------------------------------------------------------------------------- */
.nova-hero {
	position: relative;
	overflow: hidden;
	padding: 40px 0 34px;
	background: linear-gradient(180deg, var(--nova-mist) 0, var(--nova-paper) 100%);
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-hero::after {
	content: "";
	position: absolute;
	inset: auto -120px -240px auto;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(79, 70, 229, 0.08);
	pointer-events: none;
}

.nova-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.78fr);
	gap: 34px;
	align-items: center;
}

.nova-eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 7px 13px;
	border-radius: 999px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.nova-hero h1,
.nova-single-hero h1,
.nova-archive-hero h1,
.nova-page-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: var(--nova-ink);
}

.nova-hero p,
.nova-single-hero p,
.nova-archive-hero p {
	max-width: 690px;
	margin: 0 0 24px;
	color: var(--nova-muted);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.66;
}

.nova-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0;
}

/* Compact, search-first homepage hero */
.nova-home-hero-inner {
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}

.nova-home-hero-inner h1 {
	margin: 6px 0 10px;
	font-size: clamp(30px, 5vw, 46px);
	line-height: 1.12;
}

.nova-home-hero-inner > p {
	margin: 0 auto;
	max-width: 640px;
	color: var(--nova-muted);
	font-size: 17px;
}

.nova-hero-search {
	max-width: 640px;
	margin: 22px auto 6px;
}

.nova-hero-search .nova-search-form {
	display: flex;
	gap: 8px;
}

.nova-hero-search .nova-search-form input[type="search"] {
	flex: 1 1 auto;
	min-height: 52px;
	padding: 12px 18px;
	border: 1.5px solid var(--nova-border);
	border-radius: 999px;
	font-size: 16px;
	background: #fff;
}

.nova-hero-search .nova-search-form input[type="search"]:focus {
	outline: none;
	border-color: var(--nova-primary);
	box-shadow: 0 0 0 4px rgba(13, 59, 122, 0.12);
}

.nova-hero-search .nova-search-form button {
	flex: 0 0 auto;
	min-height: 52px;
	padding: 12px 26px;
	border: 0;
	border-radius: 999px;
	background: var(--nova-primary);
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.nova-hero-search .nova-search-form button:hover {
	background: var(--nova-primary-deep);
}

.nova-home-hero .nova-hero-actions {
	justify-content: center;
	margin: 18px 0 0;
}

.nova-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.nova-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	border: 1px solid var(--nova-border);
	color: var(--nova-primary-deep);
	border-radius: 999px;
	padding: 8px 13px;
	font-size: 13px;
	font-weight: 700;
}

.nova-trust-row span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--nova-accent);
}

/* Cards that share the elevated panel look */
.nova-hero-calc,
.nova-summary-card,
.nova-widget,
.nova-article-card,
.nova-category-card,
.nova-feature-card,
.nova-guide-card,
.nova-empty-card,
.nova-calc-shell {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
}

.nova-hero-calc {
	padding: 26px;
}

.nova-hero-calc h2 {
	margin: 10px 0 6px;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.04em;
}

.nova-hero-calc p {
	font-size: 15px;
	margin: 0 0 18px;
	color: var(--nova-muted);
}

.nova-mini-bmi-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 16px 0;
}

.nova-mini-bmi-grid label {
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-mini-bmi-grid input,
.nova-search-form input,
.nova-directory-search input {
	width: 100%;
	margin-top: 6px;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-hero-calc .nova-btn {
	width: 100%;
}

.nova-mini-result {
	margin: 16px 0 12px;
	padding: 14px 16px;
	border-radius: var(--nova-radius-md);
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-weight: 700;
	line-height: 1.45;
}

.nova-mini-result strong {
	font-family: var(--nova-display);
}

.nova-mini-bar {
	height: 10px;
	border-radius: 999px;
	background: var(--nova-mist);
	overflow: hidden;
	margin-bottom: 16px;
}

.nova-mini-bar [data-bar-fill] {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: var(--nova-accent);
	transition: width 0.5s ease, background 0.3s ease;
}

/* ----------------------------------------------------------------------------
   7. Sections and grids
---------------------------------------------------------------------------- */
.nova-section {
	padding: 76px 0;
}

.nova-section-tint {
	background: linear-gradient(180deg, var(--nova-mist-2) 0, var(--nova-paper) 100%);
	border-block: 1px solid var(--nova-border-soft);
}

.nova-section-head {
	max-width: 720px;
	margin-bottom: 42px;
}

.nova-section-head h2 {
	margin: 0 0 8px;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.02;
	letter-spacing: -0.05em;
	color: var(--nova-ink);
}

.nova-section-head p {
	margin: 0;
	color: var(--nova-muted);
	font-size: 18px;
}

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

.nova-calc-card {
	display: flex;
}

.nova-calc-card-link {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 22px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nova-calc-card-link:hover {
	transform: translateY(-4px);
	border-color: var(--nova-accent);
	box-shadow: 0 24px 70px rgba(79, 70, 229, 0.16);
}

.nova-calc-card h3 {
	margin: 16px 0 8px;
	font-size: 23px;
	line-height: 1.1;
	letter-spacing: -0.035em;
	color: var(--nova-ink);
}

.nova-calc-card p {
	margin: 0 0 20px;
	color: var(--nova-muted);
	font-size: 15px;
}

.nova-card-action {
	margin-top: auto;
	color: var(--nova-primary);
	font-family: var(--nova-display);
	font-weight: 800;
	text-decoration: none;
}

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

.nova-category-card {
	display: block;
	text-decoration: none;
	padding: 24px;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.nova-category-card:hover {
	transform: translateY(-4px);
	border-color: var(--nova-accent);
}

.nova-category-card > span {
	color: var(--nova-gold);
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
}

.nova-category-card h3 {
	margin: 8px 0;
	font-size: 25px;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: var(--nova-ink);
}

.nova-category-card p,
.nova-feature-card p,
.nova-guide-card p,
.nova-empty-card p {
	color: var(--nova-muted);
	margin: 0;
}

.nova-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.nova-feature-card {
	padding: 32px 30px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nova-feature-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(19, 138, 78, 0.12);
	border: 1.5px solid var(--nova-gold);
}

.nova-feature-check::after {
	content: "";
	width: 14px;
	height: 8px;
	margin-top: -3px;
	border-left: 3px solid var(--nova-gold);
	border-bottom: 3px solid var(--nova-gold);
	transform: rotate(-45deg);
}

.nova-feature-card h3 {
	margin: 16px 0 8px;
	font-size: 21px;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.nova-home-faq-wrap {
	max-width: 860px;
}

/* ----------------------------------------------------------------------------
   8. Interior heroes and breadcrumb
---------------------------------------------------------------------------- */
.nova-single-hero,
.nova-archive-hero,
.nova-page-hero {
	padding: 54px 0;
	background:
		radial-gradient(circle at 18% 20%, #e8ebff, transparent 38%),
		linear-gradient(180deg, #fff 0, var(--nova-paper) 100%);
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-single-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 30px;
	align-items: end;
}

.nova-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--nova-muted);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
}

.nova-breadcrumb a {
	color: var(--nova-primary-deep);
	text-decoration: none;
}

.nova-breadcrumb a:hover {
	text-decoration: underline;
}

.nova-breadcrumb-sep {
	color: var(--nova-border);
}

.nova-breadcrumb-current {
	color: var(--nova-muted);
}

.nova-summary-card {
	padding: 24px;
}

.nova-summary-card h2 {
	font-size: 26px;
	line-height: 1.08;
	letter-spacing: -0.04em;
	margin: 14px 0 8px;
}

.nova-summary-card p {
	font-size: 15px;
	margin: 0 0 18px;
	color: var(--nova-muted);
}

.nova-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 18px;
	color: var(--nova-muted);
	font-size: 14px;
}

.nova-post-meta strong {
	color: var(--nova-ink);
	font-weight: 700;
}

.nova-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.nova-post-meta span::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--nova-accent);
}

.nova-post-meta .nova-meta-author::before {
	display: none;
}

/* ----------------------------------------------------------------------------
   9. Content layout and article typography
---------------------------------------------------------------------------- */
.nova-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 780px) 340px;
	gap: 28px;
	align-items: start;
	padding: 44px 0 72px;
}

.nova-page-wrap {
	padding: 44px 0 72px;
}

.nova-page-wrap .nova-article-card {
	max-width: 820px;
	margin-inline: auto;
}

.nova-article-card {
	padding: 34px;
}

.nova-article-card > :first-child {
	margin-top: 0;
}

.nova-article-card h2 {
	margin: 42px 0 13px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.045em;
	color: var(--nova-ink);
	scroll-margin-top: 100px;
}

.nova-article-card h3 {
	margin: 30px 0 12px;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--nova-primary-deep);
	scroll-margin-top: 100px;
}

.nova-article-card p,
.nova-article-card li {
	color: var(--nova-body);
}

.nova-article-card a {
	color: var(--nova-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Buttons and job-card links must not inherit content-link styling when
   placed inside article prose. */
.nova-article-card a.jk-btn,
.nova-article-card .jk-apply-row a,
.nova-article-card .jk-apply-footer a {
	text-decoration: none;
}

.nova-article-card a.jk-btn-apply,
.nova-article-card a.jk-btn-notice {
	color: #fff;
}

.nova-article-card a.jk-btn-official {
	color: var(--nova-primary-deep);
}

.nova-article-card ul,
.nova-article-card ol {
	padding-left: 22px;
}

.nova-article-card li {
	margin: 8px 0;
}

.nova-article-card table {
	width: 100%;
	border-collapse: collapse;
	margin: 22px 0;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	overflow: hidden;
}

.nova-article-card th,
.nova-article-card td {
	padding: 14px;
	border-bottom: 1px solid var(--nova-border);
	text-align: left;
}

.nova-article-card th {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
}

.nova-article-card blockquote {
	margin: 24px 0;
	padding: 6px 0 6px 20px;
	border-left: 4px solid var(--nova-accent);
	color: var(--nova-ink);
	font-size: 19px;
}

.nova-link-pages {
	margin-top: 24px;
	font-weight: 700;
}

/* Table of contents */
.nova-toc {
	margin: 0 0 28px;
	padding: 20px 22px;
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-toc-title {
	margin: 0 0 12px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nova-primary-deep);
}

.nova-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: novatoc;
}

.nova-toc-list li {
	margin: 7px 0;
}

.nova-toc-list a {
	color: var(--nova-body);
	text-decoration: none;
	border-left: 2px solid transparent;
	padding-left: 12px;
	display: inline-block;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.nova-toc-list a:hover {
	color: var(--nova-primary);
}

.nova-toc-l3 {
	padding-left: 16px;
	font-size: 15px;
}

.nova-toc-list a.is-active {
	color: var(--nova-primary-deep);
	font-weight: 700;
	border-left-color: var(--nova-accent);
}

/* Key takeaways */
.nova-takeaway {
	margin: 26px 0;
	padding: 22px 24px;
	background: linear-gradient(135deg, var(--nova-mist), #fff);
	border: 1px solid var(--nova-border);
	border-left: 5px solid var(--nova-accent);
	border-radius: var(--nova-radius-md);
}

.nova-takeaway-title {
	margin: 0 0 10px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 18px;
	color: var(--nova-ink);
}

.nova-takeaway-body p {
	margin: 0 0 8px;
}

.nova-takeaway-body :last-child {
	margin-bottom: 0;
}

/* Callouts */
.nova-callout {
	margin: 24px 0;
	padding: 18px 20px;
	border: 1px solid var(--nova-border);
	border-left: 5px solid var(--nova-accent);
	border-radius: var(--nova-radius-md);
	background: #fff;
}

.nova-callout-title {
	margin: 0 0 6px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-callout-body :last-child {
	margin-bottom: 0;
}

.nova-callout-info {
	border-left-color: var(--nova-accent);
	background: var(--nova-mist-2);
}

.nova-callout-tip {
	border-left-color: var(--nova-gold);
	background: #fff7ed;
}

.nova-callout-warning {
	border-left-color: #dc2626;
	background: #fef2f2;
}

/* Affiliate disclosure */
.nova-disclosure {
	margin: 20px 0;
	padding: 12px 16px;
	font-size: 13px;
	color: var(--nova-muted);
	background: var(--nova-mist-2);
	border: 1px dashed var(--nova-border);
	border-radius: var(--nova-radius-sm);
}

/* References */
.nova-references {
	margin: 32px 0 0;
	padding: 24px;
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-references-title {
	margin: 0 0 12px;
	font-size: 20px;
	letter-spacing: -0.03em;
}

.nova-references-body ol,
.nova-references-body ul {
	margin: 0;
	padding-left: 20px;
}

.nova-references-body li {
	margin: 8px 0;
	font-size: 14px;
	color: var(--nova-muted);
}

/* Ad slots */
.nova-ad {
	margin: 26px 0;
	padding: 14px;
	border: 1px dashed var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: var(--nova-mist-2);
	text-align: center;
}

.nova-ad-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nova-muted);
	margin-bottom: 8px;
}

.nova-inline-disclaimer {
	margin: 18px 0;
	font-size: 13px;
	color: var(--nova-muted);
	font-style: italic;
}

/* Author and reviewer box */
.nova-author-box {
	margin: 36px 0 0;
	padding: 24px;
	background: linear-gradient(135deg, #fff, var(--nova-mist-2));
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-author-main {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.nova-author-avatar {
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid #fff;
	box-shadow: var(--nova-shadow-sm);
}

.nova-author-eyebrow {
	margin: 0 0 2px;
	font-family: var(--nova-display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nova-primary);
}

.nova-author-name {
	margin: 0 0 6px;
	font-family: var(--nova-display);
	font-size: 20px;
	font-weight: 800;
}

.nova-author-name a {
	color: var(--nova-ink);
	text-decoration: none;
}

.nova-author-bio {
	margin: 0;
	color: var(--nova-muted);
	font-size: 15px;
}

.nova-author-reviewer {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--nova-border);
	color: var(--nova-ink);
	font-size: 14px;
}

.nova-reviewer-badge {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--nova-accent);
	position: relative;
}

.nova-reviewer-badge::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 11px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.nova-reviewer-date {
	color: var(--nova-muted);
}

/* Related articles */
.nova-related {
	margin: 40px 0 0;
}

.nova-related-title {
	margin: 0 0 18px;
	font-size: 26px;
	letter-spacing: -0.04em;
}

.nova-related .nova-card-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ----------------------------------------------------------------------------
   10. FAQ
---------------------------------------------------------------------------- */
.nova-faq-heading {
	margin: 0 0 16px;
	font-size: 28px;
	letter-spacing: -0.04em;
}

.nova-faq-list {
	display: grid;
	gap: 12px;
	margin: 24px 0;
}

.nova-faq-item {
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: #fff;
	overflow: hidden;
}

.nova-faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-faq-item summary::-webkit-details-marker {
	display: none;
}

.nova-faq-icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.nova-faq-icon::before,
.nova-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--nova-primary);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nova-faq-icon::before {
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px;
}

.nova-faq-icon::after {
	top: 0;
	left: 7px;
	width: 2px;
	height: 16px;
}

.nova-faq-item[open] .nova-faq-icon::after {
	transform: scaleY(0);
	opacity: 0;
}

.nova-faq-answer {
	padding: 0 20px 18px;
	color: var(--nova-muted);
}

.nova-faq-answer p {
	margin: 0 0 10px;
}

.nova-faq-answer :last-child {
	margin-bottom: 0;
}

/* ----------------------------------------------------------------------------
   11. Article shell
---------------------------------------------------------------------------- */
.nova-calc-shell {
	overflow: hidden;
	margin: 30px 0;
	scroll-margin-top: 100px;
}

.nova-calc-shell-head {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-start;
	padding: 22px 24px;
	background: linear-gradient(135deg, var(--nova-mist-2), #fff);
	border-bottom: 1px solid var(--nova-border);
}

.nova-calc-shell-head h2 {
	margin: 10px 0 0;
	font-size: 30px;
	letter-spacing: -0.04em;
}

.nova-calc-shell-note {
	max-width: 360px;
	margin: 0;
	color: var(--nova-muted);
	font-size: 14px;
}

.nova-calc-shell-body {
	padding: 24px;
}

/* ----------------------------------------------------------------------------
   12. Sidebar widgets
---------------------------------------------------------------------------- */
.nova-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 100px;
}

.nova-widget {
	padding: 20px;
}

.nova-widget-title {
	margin: 0 0 14px;
	font-size: 19px;
	letter-spacing: -0.03em;
}

.nova-search-form {
	display: flex;
	gap: 8px;
}

.nova-search-form input {
	margin: 0;
	min-width: 0;
	flex: 1;
}

.nova-search-form button {
	border: 0;
	background: var(--nova-primary);
	color: #fff;
	border-radius: var(--nova-radius-sm);
	font-family: var(--nova-display);
	font-weight: 800;
	padding: 0 16px;
}

.nova-search-form button:hover {
	background: var(--nova-primary-deep);
}

.nova-mini-list {
	display: grid;
	gap: 10px;
}

.nova-mini-list a {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	text-decoration: none;
	padding: 12px 14px;
	border-radius: var(--nova-radius-sm);
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-weight: 700;
	transition: background 0.15s ease;
}

.nova-mini-list a:hover {
	background: #e5e9ff;
}

.nova-mini-list small {
	color: var(--nova-primary);
	font-weight: 800;
}

.nova-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nova-chip-list a,
.nova-chip-list button {
	border: 1px solid var(--nova-border);
	background: #fff;
	color: var(--nova-primary-deep);
	border-radius: 999px;
	padding: 9px 13px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nova-chip-list a:hover,
.nova-chip-list button:hover {
	border-color: var(--nova-accent);
}

.nova-chip-list button.is-active {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

.nova-trust-widget {
	background: linear-gradient(135deg, #fff 0, var(--nova-mist-2) 100%);
}

.nova-trust-widget h3 {
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0 0 8px;
}

.nova-trust-widget p {
	margin: 0;
	color: var(--nova-muted);
	font-size: 14px;
}

/* ----------------------------------------------------------------------------
   13. Directory and archive
---------------------------------------------------------------------------- */
.nova-archive-hero-inner {
	max-width: 820px;
}

.nova-all-hero .nova-archive-hero-inner {
	max-width: 900px;
}

.nova-directory-search {
	margin-top: 24px;
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	padding: 16px;
	box-shadow: var(--nova-shadow);
}

.nova-directory-search label {
	display: block;
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	color: var(--nova-ink);
	margin-bottom: 7px;
}

.nova-directory-search input {
	margin: 0;
	font-size: 18px;
	padding: 15px;
}

.nova-filter-chips {
	margin-bottom: 24px;
}

.nova-guide-card,
.nova-empty-card {
	padding: 28px;
}

.nova-guide-card {
	margin-top: 28px;
}

.nova-guide-card h2,
.nova-empty-card h2 {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

/* ----------------------------------------------------------------------------
   14. Comments
---------------------------------------------------------------------------- */
.nova-comments {
	margin: 40px 0 0;
	padding-top: 32px;
	border-top: 1px solid var(--nova-border);
}

.nova-comments-title {
	margin: 0 0 20px;
	font-size: 24px;
	letter-spacing: -0.04em;
}

.nova-comment-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.nova-comment-list .children {
	list-style: none;
	margin: 0 0 0 28px;
	padding: 0;
}

.nova-comment-list li article {
	padding: 16px 0;
	border-bottom: 1px solid var(--nova-border);
}

.nova-comment-list .comment-author {
	font-family: var(--nova-display);
	font-weight: 700;
	color: var(--nova-ink);
}

.nova-comment-list .comment-meta {
	font-size: 13px;
	color: var(--nova-muted);
	margin-bottom: 8px;
}

.nova-comment-list .comment-meta a {
	color: var(--nova-muted);
	text-decoration: none;
}

.nova-comment-respond {
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	padding: 24px;
}

.nova-comment-respond label {
	display: block;
	font-weight: 700;
	margin: 12px 0 6px;
	font-size: 14px;
}

.nova-comment-respond input[type="text"],
.nova-comment-respond input[type="email"],
.nova-comment-respond input[type="url"],
.nova-comment-respond textarea {
	width: 100%;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-comment-respond .form-submit {
	margin-top: 16px;
}

.nova-comment-respond .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nova-primary);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-family: var(--nova-display);
	font-weight: 800;
	min-height: 46px;
	padding: 11px 22px;
}

.nova-comment-respond .submit:hover {
	background: var(--nova-primary-deep);
}

/* ----------------------------------------------------------------------------
   15. Pagination
---------------------------------------------------------------------------- */
.nova-pagination {
	margin-top: 32px;
}

.nova-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.nova-pagination a,
.nova-pagination span {
	padding: 9px 14px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--nova-border);
	text-decoration: none;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-pagination .current {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

/* ----------------------------------------------------------------------------
   16. Footer
---------------------------------------------------------------------------- */
.nova-site-footer {
	background: var(--nova-footer-bg);
	color: #cbd5e1;
	margin-top: 0;
	padding: 56px 0 24px;
}

.nova-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 34px;
}

.nova-footer-about .nova-brand,
.nova-footer-about .nova-brand-text strong {
	color: #fff;
}

.nova-footer-about .nova-brand-text small {
	color: #94a3b8;
}

.nova-footer-about p {
	max-width: 520px;
	color: #94a3b8;
	margin: 16px 0 0;
}

.nova-footer-col h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 18px;
}

.nova-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-footer-menu li {
	margin: 8px 0;
}

.nova-footer-menu a {
	color: #cbd5e1;
	text-decoration: none;
}

.nova-footer-menu a:hover {
	color: #fff;
	text-decoration: underline;
}

.nova-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 36px;
	padding-top: 18px;
	color: #94a3b8;
	font-size: 14px;
}

/* ----------------------------------------------------------------------------
   17. Footer logo, category nav, and core widgets
---------------------------------------------------------------------------- */
.nova-footer-brand-logo {
	display: inline-flex;
	align-items: center;
}

.nova-footer-logo-img,
.nova-footer-brand img {
	max-width: var(--nova-footer-logo-max, 170px);
	height: auto;
	width: auto;
}

/* Category cross-navigation */
.nova-cat-nav-bar {
	border-bottom: 1px solid var(--nova-border-soft);
	background: #fff;
	padding: 14px 0;
}

.nova-cat-nav {
	flex-wrap: wrap;
	gap: 10px;
}

.nova-cat-nav a {
	white-space: nowrap;
	padding: 11px 17px;
	font-size: 14px;
}

.nova-chip-list a.is-active {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

.nova-cat-search {
	max-width: 520px;
}

.nova-cat-cta {
	margin-top: 28px;
	text-align: center;
}

/* Styling for core and block widgets, so any default widgets still look native */
.nova-widget .wp-block-search__inside-wrapper,
.nova-footer-widget .wp-block-search__inside-wrapper {
	display: flex;
	gap: 8px;
}

.nova-widget .wp-block-search__input,
.nova-footer-widget .wp-block-search__input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-widget .wp-block-search__button,
.nova-footer-widget .wp-block-search__button {
	margin: 0;
	border: 0;
	background: var(--nova-primary);
	color: #fff;
	border-radius: var(--nova-radius-sm);
	font-family: var(--nova-display);
	font-weight: 800;
	padding: 0 16px;
	cursor: pointer;
}

.nova-widget ul,
.nova-footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-widget li,
.nova-footer-widget li {
	margin: 8px 0;
}

.nova-widget a,
.nova-footer-widget a {
	text-decoration: none;
	color: inherit;
}

.nova-widget .wp-block-categories a,
.nova-widget .wp-block-latest-posts a,
.nova-widget .wp-block-archives a,
.nova-widget .wp-block-page-list a {
	color: var(--nova-primary-deep);
	font-weight: 700;
}

.nova-widget .wp-block-categories a:hover,
.nova-widget .wp-block-latest-posts a:hover,
.nova-widget .wp-block-archives a:hover {
	text-decoration: underline;
}

.nova-widget .wp-block-tag-cloud a,
.nova-footer-widget .wp-block-tag-cloud a {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 6px 12px;
	border: 1px solid var(--nova-border);
	border-radius: 999px;
	font-size: 13px !important;
	background: #fff;
	color: var(--nova-primary-deep);
}

/* ----------------------------------------------------------------------------
   18. WordPress core helpers
---------------------------------------------------------------------------- */
.wp-block-image img {
	border-radius: var(--nova-radius-md);
}

.alignwide {
	max-width: 1040px;
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.nova-404 {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
}

/* ----------------------------------------------------------------------------
   19. Responsive
---------------------------------------------------------------------------- */
@media (max-width: 960px) {
	.nova-header-inner {
		min-height: 70px;
	}

	.nova-menu-toggle {
		display: inline-flex;
	}

	.nova-primary-nav {
		display: none;
		position: absolute;
		left: 18px;
		right: 18px;
		top: 78px;
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		border: 1px solid var(--nova-border);
		border-radius: var(--nova-radius);
		padding: 16px;
		box-shadow: var(--nova-shadow);
	}

	.nova-primary-nav.is-open {
		display: flex;
	}

	.nova-menu {
		display: grid;
		gap: 4px;
	}

	.nova-nav-cta {
		width: 100%;
	}

	.nova-hero-grid,
	.nova-single-hero-grid,
	.nova-content-layout {
		grid-template-columns: 1fr;
	}

	.nova-sidebar {
		position: static;
	}

	.nova-card-grid,
	.nova-category-grid,
	.nova-feature-grid,
	.nova-related .nova-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.nova-container {
		width: min(100% - 28px, 1180px);
	}

	.nova-hero,
	.nova-single-hero,
	.nova-archive-hero,
	.nova-page-hero {
		padding: 42px 0;
	}

	.nova-hero h1,
	.nova-single-hero h1,
	.nova-archive-hero h1,
	.nova-page-hero h1 {
		font-size: 40px;
	}

	.nova-card-grid,
	.nova-category-grid,
	.nova-feature-grid,
	.nova-mini-bmi-grid,
	.nova-related .nova-card-grid {
		grid-template-columns: 1fr;
	}

	.nova-article-card,
	.nova-calc-shell-body {
		padding: 22px;
	}

	.nova-calc-shell-head {
		flex-direction: column;
		padding: 20px;
	}

	.nova-footer-grid {
		grid-template-columns: 1fr;
	}

	.nova-search-form {
		flex-direction: column;
	}

	.nova-search-form button {
		min-height: 46px;
		padding: 11px;
	}

	.nova-article-card table {
		display: block;
		overflow-x: auto;
	}

	.nova-brand-text small {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ----------------------------------------------------------------------------
   20. Language switcher
---------------------------------------------------------------------------- */
.nova-lang-switch {
	margin-inline: 8px;
}

.nova-lang-switch-wrap {
	order: 2;
	margin-left: auto;
}

@media (max-width: 960px) {
	.nova-lang-switch-wrap {
		order: 0;
		margin-left: 0;
	}
}

.nova-lang-switch select {
	appearance: none;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	border: 1px solid var(--nova-border-soft);
	border-radius: 999px;
	padding: 8px 30px 8px 14px;
	font-family: var(--nova-font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%230d3b7a' stroke-width='1.6'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

/* Hide Google's own injected chrome so only our dropdown shows. */
.nova-goog-translate-mount {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

body {
	top: 0 !important;
}

.goog-te-banner-frame {
	display: none !important;
}

/* ----------------------------------------------------------------------------
   21. Homepage quick links
---------------------------------------------------------------------------- */
.nova-quicklinks {
	padding-top: 10px;
	padding-bottom: 10px;
}

.nova-quicklinks-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.nova-quicklink-chip {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid var(--nova-border-soft);
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.nova-quicklink-chip:hover {
	background: var(--nova-primary);
	color: #fff;
	transform: translateY(-1px);
}

/* ----------------------------------------------------------------------------
   22. Ad slots
---------------------------------------------------------------------------- */
.jk-ad-slot {
	display: block;
	text-align: center;
	overflow: hidden;
}

.jk-ad-slot .jk-ad-widget,
.jk-ad-slot ins,
.jk-ad-slot iframe,
.jk-ad-slot img {
	max-width: 100%;
}

.jk-ad-label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nova-muted);
	margin-bottom: 6px;
}

.jk-ad-header {
	padding: 12px 0;
	background: var(--nova-mist-2);
	border-bottom: 1px solid var(--nova-border-soft);
}

.jk-ad-below-title {
	margin: 0 0 22px;
	padding-bottom: 6px;
}

.jk-ad-infeed {
	margin: 30px 0;
	padding: 6px 0;
}

.jk-ad-sidebar {
	margin-bottom: 22px;
}

.jk-ad-footer {
	padding: 18px 0;
	background: var(--nova-footer-bg);
}

.jk-ad-footer .jk-ad-label {
	color: rgba(255, 255, 255, 0.55);
}

/* ----------------------------------------------------------------------------
   23. Recruitment info card (job-portal signature)
---------------------------------------------------------------------------- */
.jk-job-card {
	margin: 0 0 30px;
	padding: 24px;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: linear-gradient(180deg, var(--nova-mist-2), var(--nova-white));
	box-shadow: var(--nova-shadow-sm);
}

.jk-job-card-title {
	margin: 0 0 16px;
	font-size: 20px;
	color: var(--nova-primary-deep);
	display: flex;
	align-items: center;
	gap: 10px;
}

.jk-job-card-title::before {
	content: "";
	width: 6px;
	height: 22px;
	border-radius: 3px;
	background: var(--nova-accent);
	display: inline-block;
}

.jk-info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 18px;
	font-size: 15.5px;
}

.jk-info-table th,
.jk-info-table td {
	text-align: start;
	padding: 11px 14px;
	border: 1px solid var(--nova-border);
	vertical-align: top;
}

.jk-info-table th {
	width: 42%;
	background: var(--nova-mist);
	color: var(--nova-ink);
	font-weight: 700;
	font-family: var(--nova-display);
}

.jk-info-table td {
	background: var(--nova-white);
	color: var(--nova-text);
}

/* Important dates strip */
.jk-dates {
	margin: 0 0 20px;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	overflow: hidden;
}

.jk-dates-head {
	display: block;
	padding: 9px 14px;
	background: var(--nova-primary);
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 14px;
}

.jk-dates-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0;
}

.jk-date {
	padding: 12px 14px;
	border-top: 1px solid var(--nova-border);
	border-inline-end: 1px solid var(--nova-border);
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.jk-date-label {
	font-size: 12px;
	color: var(--nova-muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.jk-date-value {
	font-size: 16px;
	font-weight: 700;
	color: var(--nova-ink);
	font-family: var(--nova-display);
}

.jk-date-last {
	background: #fff7ed;
}

.jk-date-last .jk-date-value {
	color: #b45309;
}

/* Apply / official buttons */
.jk-apply-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.jk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 180px;
	min-height: 52px;
	padding: 13px 22px;
	border-radius: 999px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	border: 2px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.jk-btn:hover {
	transform: translateY(-1px);
}

.jk-btn-apply {
	background: var(--nova-accent);
	color: #fff;
	box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}

.jk-btn-apply:hover {
	background: #ea580c;
}

.jk-btn-notice {
	background: var(--nova-primary);
	color: #fff;
	box-shadow: var(--nova-shadow-sm);
}

.jk-btn-notice:hover {
	background: var(--nova-primary-deep);
}

.jk-btn-official {
	background: #fff;
	color: var(--nova-primary-deep);
	border-color: var(--nova-primary);
}

.jk-btn-official:hover {
	background: var(--nova-mist);
}

.jk-apply-footer {
	margin: 30px 0 8px;
	padding: 22px;
	border: 1px dashed var(--nova-primary);
	border-radius: var(--nova-radius-md);
	background: var(--nova-mist-2);
}

.jk-apply-footer-note {
	margin: 0 0 14px;
	font-weight: 700;
	color: var(--nova-primary-deep);
}

/* ----------------------------------------------------------------------------
   24. Homepage recruitment board
---------------------------------------------------------------------------- */
.jk-board {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.jk-board-col {
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: var(--nova-white);
	overflow: hidden;
	box-shadow: var(--nova-shadow);
	display: flex;
	flex-direction: column;
}

.jk-board-col-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 18px;
	background: var(--nova-primary);
	color: #fff;
}

.jk-board-col-head h3 {
	margin: 0;
	color: #fff;
	font-size: 17px;
}

.jk-board-seeall {
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.16);
	padding: 5px 11px;
	border-radius: 999px;
	white-space: nowrap;
}

.jk-board-seeall:hover {
	background: rgba(255, 255, 255, 0.28);
}

.jk-board-list {
	list-style: none;
	margin: 0;
	padding: 6px 0;
}

.jk-board-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 18px;
	border-bottom: 1px solid var(--nova-border-soft);
}

.jk-board-list li:last-child {
	border-bottom: 0;
}

.jk-board-list li a {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding: 14px 0;
	text-decoration: none;
	color: var(--nova-text);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.45;
	flex: 1 1 auto;
}

.jk-board-list li a:hover .jk-board-text {
	color: var(--nova-primary-deep);
	text-decoration: underline;
}

.jk-board-dot {
	width: 7px;
	height: 7px;
	margin-top: 8px;
	border-radius: 50%;
	background: var(--nova-accent);
	flex: 0 0 auto;
}

.jk-board-badge {
	flex: 0 0 auto;
	font-size: 11.5px;
	font-weight: 700;
	color: #b45309;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	padding: 3px 8px;
	border-radius: 999px;
	white-space: nowrap;
}

.jk-board-empty {
	margin: 0;
	padding: 20px 18px;
	color: var(--nova-muted);
	font-size: 14px;
}

/* Compact facts on listing cards */
.jk-card-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 4px 0 2px;
}

.jk-card-fact {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--nova-primary-deep);
	background: var(--nova-mist);
	padding: 4px 10px;
	border-radius: 999px;
}

.jk-card-fact-date {
	color: #b45309;
	background: #fff7ed;
}

/* ----------------------------------------------------------------------------
   25. Sticky sidebar (better ad viewability + navigation)
---------------------------------------------------------------------------- */
@media (min-width: 961px) {
	.nova-sidebar {
		position: sticky;
		top: 96px;
		align-self: start;
	}
}

/* ----------------------------------------------------------------------------
   26. Component responsive
---------------------------------------------------------------------------- */
@media (max-width: 960px) {
	.jk-board {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.nova-lang-switch select {
		font-size: 13px;
		padding: 7px 26px 7px 12px;
	}

	.nova-header-inner {
		gap: 10px;
	}

	.nova-quicklink-chip {
		font-size: 13px;
		padding: 8px 14px;
	}

	.jk-job-card {
		padding: 18px;
	}

	.jk-info-table th {
		width: 46%;
	}

	.jk-btn {
		min-width: 100%;
	}
}
