/**
 * NITYA VIKAS — Careers / jobs pages
 */

/* —— Listing page layout (fix hero / cards overlap on mobile) —— */
.nv-jobs-page .nv-jobs-main {
  overflow-x: hidden;
}

.nv-jobs-page .archive-header {
  display: none;
}

.nv-jobs-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(260px, 42vw, 420px);
  display: flex;
  align-items: flex-end;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  margin: 0;
  overflow: hidden;
}

.nv-jobs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--nv-jobs-hero-bg);
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .nv-jobs-hero__bg {
    background-position: center center;
  }
}

.nv-jobs-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(26, 35, 50, 0.92) 0%, rgba(49, 64, 86, 0.78) 45%, rgba(49, 64, 86, 0.55) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.4) 0%, transparent 50%);
}

.nv-jobs-hero__inner {
  position: relative;
  z-index: 2;
  max-width: min(920px, 100%);
  color: #fff;
}

.nv-jobs-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary-color, #92d04f);
  color: #1a2332;
  margin-bottom: 1rem;
}

.nv-jobs-hero__title {
  font-family: var(--arch-font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nv-jobs-hero__lead {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 0 1.25rem;
  max-width: none;
}

@media (min-width: 992px) {
  .nv-jobs-hero__lead {
    max-width: 34em;
  }
}

.nv-jobs-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nv-jobs-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nv-jobs-hero__stat i {
  color: var(--primary-color, #92d04f);
}

/* Listing section — clear separation from hero */
.nv-jobs-listing {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 120px, #f8fafc 100%);
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.5rem, 6vw, 4rem);
  margin-top: 0;
}

.nv-jobs-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(49, 64, 86, 0.06);
}

.nv-jobs-empty__icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(146, 208, 79, 0.15);
  color: var(--primary-color, #92d04f);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.nv-jobs-empty h2 {
  font-size: 1.25rem;
  color: #314056;
  margin-bottom: 0.5rem;
}

/* —— Job cards (modern) —— */
.nv-job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.nv-job-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.35rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(49, 64, 86, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  min-height: 0;
}

.nv-job-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color, #92d04f), #7ab83a);
}

.nv-job-card--featured .nv-job-card__accent {
  background: linear-gradient(90deg, var(--accent-color, #efc066), #d4a84a);
}

.nv-job-card--featured {
  border-color: rgba(239, 192, 102, 0.45);
  background: linear-gradient(165deg, #fffdf8 0%, #fff 40%);
}

.nv-job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(49, 64, 86, 0.12);
  border-color: rgba(146, 208, 79, 0.5);
  color: inherit;
}

.nv-job-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.nv-job-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(146, 208, 79, 0.2), rgba(146, 208, 79, 0.08));
  color: #314056;
  font-size: 1.25rem;
}

.nv-job-card--featured .nv-job-card__icon {
  background: linear-gradient(135deg, rgba(239, 192, 102, 0.35), rgba(239, 192, 102, 0.12));
}

.nv-job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.nv-job-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(146, 208, 79, 0.18);
  color: #314056;
}

.nv-job-tag--gold {
  background: rgba(239, 192, 102, 0.4);
  color: #5c4a1a;
}

.nv-job-tag--muted {
  background: #f1f5f9;
  color: #64748b;
}

.nv-job-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.nv-job-card__excerpt {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nv-job-card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  font-size: 0.82rem;
  color: #64748b;
}

.nv-job-card__details li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.nv-job-card__details li:last-child {
  margin-bottom: 0;
}

.nv-job-card__details i {
  color: var(--primary-color, #92d04f);
  font-size: 0.95rem;
}

.nv-job-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--secondary-color, #314056);
  color: #fff;
  transition: background 0.2s, gap 0.2s;
}

.nv-job-card:hover .nv-job-card__cta {
  background: var(--primary-color, #92d04f);
  color: #1a2332;
  gap: 0.65rem;
}

/* —— Job single page —— */
.nv-job-single-page .archive-main {
  padding: 0;
}

.nv-job-single {
  overflow-x: hidden;
}

.nv-job-single-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(220px, 38vw, 340px);
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 3vw, 2.5rem);
}

.nv-job-single-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--nv-job-hero-bg);
  background-size: cover;
  background-position: center 40%;
}

.nv-job-single-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(20, 28, 42, 0.94) 0%, rgba(49, 64, 86, 0.82) 50%, rgba(49, 64, 86, 0.65) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.5) 0%, transparent 45%);
}

.nv-job-single-hero__inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.nv-job-single-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.nv-job-single-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.nv-job-single-breadcrumb a:hover {
  color: var(--primary-color, #92d04f);
}

.nv-job-single-breadcrumb__sep {
  opacity: 0.45;
}

.nv-job-single-breadcrumb > span:last-child {
  opacity: 0.7;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nv-job-single-hero__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.nv-job-single-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  background: rgba(239, 192, 102, 0.35);
  color: #fff;
  margin-right: 0.35rem;
  margin-bottom: 0.5rem;
}

.nv-job-single-badge--open {
  background: rgba(146, 208, 79, 0.35);
}

.nv-job-single-badge--closed {
  background: rgba(248, 113, 113, 0.35);
}

.nv-job-single-hero__title {
  font-family: var(--arch-font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.35rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nv-job-single-hero__dept {
  font-size: 1rem;
  opacity: 0.85;
  margin: 0;
}

.nv-job-single-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--primary-color, #92d04f);
  color: #1a2332;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(146, 208, 79, 0.35);
}

.nv-job-single-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(146, 208, 79, 0.45);
  color: #1a2332;
}

.nv-job-single-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.nv-job-single-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.nv-job-single-facts i {
  color: var(--primary-color, #92d04f);
  font-size: 1rem;
}

.nv-job-single-body {
  background: #f1f5f9;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 2;
}

.nv-job-single-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  box-shadow: 0 4px 24px rgba(49, 64, 86, 0.06);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}

.nv-job-single-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eef2f7;
}

.nv-job-single-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(146, 208, 79, 0.25), rgba(146, 208, 79, 0.08));
  color: #314056;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nv-job-single-card__icon--gold {
  background: linear-gradient(135deg, rgba(239, 192, 102, 0.35), rgba(239, 192, 102, 0.1));
}

.nv-job-single-card__head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.nv-job-single-prose {
  line-height: 1.75;
  color: #475569;
  font-size: 0.98rem;
}

.nv-job-single-prose p {
  margin-bottom: 1rem;
}

.nv-job-single-prose ul,
.nv-job-single-prose ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.nv-job-single-prose li {
  margin-bottom: 0.4rem;
}

.nv-job-single-prose h2,
.nv-job-single-prose h3 {
  font-size: 1.05rem;
  color: #314056;
  margin: 1.25rem 0 0.5rem;
}

.nv-job-single-help {
  background: rgba(146, 208, 79, 0.12);
  border: 1px solid rgba(146, 208, 79, 0.35);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  color: #314056;
  margin-top: 0.5rem;
}

.nv-job-single-sticky {
  position: sticky;
  top: 100px;
}

.nv-job-apply--panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 8px 32px rgba(49, 64, 86, 0.1);
  margin-bottom: 1.25rem;
}

.nv-job-apply__header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #eef2f7;
}

.nv-job-apply__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary-color, #314056), #1e293b);
  color: var(--primary-color, #92d04f);
  font-size: 1.25rem;
}

.nv-job-apply__header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.25rem;
}

.nv-job-apply__header p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.nv-job-apply-form .nv-job-field {
  margin-bottom: 1rem;
}

.nv-job-apply-form .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 0.35rem;
}

.nv-job-apply-form .form-control {
  border-radius: 10px;
  border-color: #e2e8f0;
}

.nv-job-apply-form .form-control:focus {
  border-color: var(--primary-color, #92d04f);
  box-shadow: 0 0 0 3px rgba(146, 208, 79, 0.2);
}

.nv-job-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.nv-job-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary-color, #314056) 0%, #1e293b 100%);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.nv-job-submit-btn:hover {
  background: linear-gradient(135deg, #3d5268 0%, #314056 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(49, 64, 86, 0.25);
  color: #fff;
}

.nv-job-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.nv-resume-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 1.35rem 1rem;
  text-align: center;
  background: #fafbfc;
  transition: border-color 0.2s, background 0.2s;
}

.nv-resume-zone i {
  font-size: 2rem;
  color: var(--primary-color, #92d04f);
  display: block;
  margin-bottom: 0.5rem;
}

.nv-resume-zone__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
  margin: 0 0 0.2rem;
}

.nv-resume-zone__hint {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0 0 0.75rem;
}

.nv-resume-zone.has-file {
  border-color: var(--primary-color, #92d04f);
  background: rgba(146, 208, 79, 0.08);
}

.nv-resume-zone input[type="file"] {
  max-width: 100%;
  font-size: 0.85rem;
}

.nv-resume-status {
  font-size: 0.82rem;
  margin-top: 0.5rem;
  min-height: 1.25em;
}

.nv-job-closed {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  color: #92400e;
}

.nv-job-closed i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.nv-alert-success {
  background: rgba(146, 208, 79, 0.12);
  border: 1px solid rgba(146, 208, 79, 0.45);
  color: #314056;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.nv-alert-success--large {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}

.nv-alert-success__icon {
  font-size: 1.75rem;
  color: var(--primary-color, #92d04f);
  flex-shrink: 0;
}

.nv-alert-success--large strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.nv-job-single-back-btn {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  background: #f1f5f9;
  color: #314056;
  text-decoration: none;
  transition: background 0.2s;
}

.nv-job-single-back-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.nv-job-single-summary {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 12px rgba(49, 64, 86, 0.04);
}

.nv-job-single-summary h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 0 0 1rem;
}

.nv-job-single-summary dl {
  margin: 0;
}

.nv-job-single-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem;
}

.nv-job-single-summary dl > div:last-child {
  border-bottom: none;
}

.nv-job-single-summary dt {
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

.nv-job-single-summary dd {
  color: #1e293b;
  font-weight: 600;
  text-align: right;
  margin: 0;
}

.nv-job-single-footer-link {
  margin: 2rem 0 0;
  text-align: center;
}

.nv-job-single-footer-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.nv-job-single-footer-link a:hover {
  color: var(--primary-color, #92d04f);
}

.nv-job-mobile-apply {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.85rem 1.25rem;
  padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  background: linear-gradient(135deg, var(--secondary-color, #314056), #1e293b);
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.nv-job-mobile-apply i {
  color: var(--primary-color, #92d04f);
}

@media (max-width: 991px) {
  .nv-job-single-sticky {
    position: static;
  }

  .nv-job-single-aside {
    order: -1;
  }

  .nv-job-single-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .nv-job-single-hero {
    min-height: 0;
    padding: 1.25rem 0 1.5rem;
  }

  .nv-job-single-hero__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .nv-job-single-hero__cta {
    display: none;
  }

  .nv-job-single-body {
    padding-top: 1.25rem;
    padding-bottom: 5rem;
  }

  .nv-job-single-card {
    padding: 1.25rem;
  }

  .nv-job-mobile-apply {
    display: flex;
  }

  .nv-job-single-breadcrumb > span:last-child {
    white-space: normal;
  }
}

/* —— Mobile: prevent hero / cards overlap —— */
@media (max-width: 768px) {
  .nv-jobs-hero {
    min-height: 0;
    padding: 2rem 0 1.75rem;
    align-items: flex-end;
  }

  .nv-jobs-hero__bg {
    background-position: center center;
  }

  .nv-jobs-hero__title {
    font-size: 1.65rem;
  }

  .nv-jobs-hero__lead {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .nv-jobs-listing {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    background: #f8fafc;
  }

  .nv-job-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nv-job-card {
    padding: 1.25rem;
  }

  .nv-job-card:hover {
    transform: translateY(-2px);
  }

  .nv-job-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .nv-job-card__tags {
    justify-content: flex-start;
  }

  .nv-job-card__cta {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .nv-jobs-hero__stat {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }
}

[data-theme="dark"] .nv-jobs-listing {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="dark"] .nv-job-card {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}

[data-theme="dark"] .nv-job-card__title {
  color: #f1f5f9;
}

[data-theme="dark"] .nv-job-card__excerpt,
[data-theme="dark"] .nv-job-card__details {
  color: #94a3b8;
}

[data-theme="dark"] .nv-job-single-body {
  background: #0f172a;
}

[data-theme="dark"] .nv-job-single-card,
[data-theme="dark"] .nv-job-apply--panel,
[data-theme="dark"] .nv-job-single-summary {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .nv-job-single-card__head h2,
[data-theme="dark"] .nv-job-apply__header h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .nv-job-single-prose {
  color: #cbd5e1;
}

[data-theme="dark"] .nv-job-apply {
  background: #0f172a;
  border-color: #334155;
}
