/* ============================================================
   NexHire Business Portal — Global Stylesheet
   Brand: Navy #182B68 | Green #98C75B | Blue #1F4D84
   Font: Poppins (Google Fonts)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green:       #98C75B;
  --navy:        #182B68;
  --blue:        #1F4D84;
  --navy-dark:   #111f4d;
  --green-dark:  #46906E;
  --blue-dark:   #163a66;
  --white:       #ffffff;
  --off-white:   #f4f7fb;
  --gray-100:    #e8edf5;
  --gray-300:    #c2ccd8;
  --gray-400:    #9aaab8;
  --gray-600:    #637088;
  --gray-900:    #1c2230;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(24,43,104,.10);
  --shadow-lg:   0 12px 40px rgba(24,43,104,.18);
  --transition:  0.32s cubic-bezier(.4,0,.2,1);
  --nav-height:  68px;
  --ic-green:    #46906E;
  --ic-blue:     #1F4D84;
  --ic-navy:     #182B68;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.8; font-weight: 300; }

/* ---------- Utilities ---------- */
.nh-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.nh-section   { padding: 96px 0; }
.nh-section--alt { background: var(--off-white); }
.text-center  { text-align: center; }

.nh-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.nh-eyebrow--light { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(152,199,91,.35);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24,43,104,.35);
  color: var(--white);
}

/* Login / logout button in nav */
.btn-login {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  transition: var(--transition);
  cursor: pointer;
}
.btn-login:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* ---------- Page Shell ---------- */
.nh-page { display: flex; flex-direction: column; min-height: 100vh; }
.nh-main  { flex: 1; }

/* ---------- Navbar ---------- */
.nh-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  justify-content: space-between;
}
.nh-navbar.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 2px 24px rgba(24,43,104,.08);
}
.nh-navbar__brand { display: flex; align-items: center; }
.nh-navbar__logo { height: 36px; width: auto; display: block; }
.nh-navbar__actions { display: flex; align-items: center; gap: 16px; }
.nh-navbar__user { font-size: .88rem; font-weight: 600; color: var(--gray-600); }

/* ── Page needs room for fixed nav ── */
.nh-page { padding-top: var(--nav-height); }

/* ---------- Hero ---------- */
.nh-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--green-dark) 100%);
  overflow: hidden;
  padding: 80px 0;
}
.nh-hero__canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: .5;
  pointer-events: none;
}
.nh-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.nh-hero__content { max-width: 660px; }
.nh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(152,199,91,.18);
  border: 1px solid rgba(152,199,91,.35);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.nh-hero h1 { color: var(--white); margin-bottom: 20px; }
.nh-hero h1 span { color: var(--green); }
.nh-hero__subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}
.nh-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Value Strip ---------- */
.nh-value-strip { background: var(--off-white); padding-bottom: 0; }
.nh-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(-48px);
  background: var(--white);
  max-width: 1160px;
  margin: 0 auto;
}
.nh-value-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.nh-value-item:last-child { border-right: none; }
.nh-value-item:hover { background: var(--off-white); }
.nh-value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--ic-green);
}
.nh-value-icon svg { width: 28px; height: 28px; }
.nh-value-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}
.nh-value-label { font-size: .82rem; color: var(--gray-600); font-weight: 600; }

/* ---------- Two-column Cards ---------- */
.nh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.nh-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.nh-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nh-card--green { border-top: 4px solid var(--green); }
.nh-card--blue  { border-top: 4px solid var(--blue);  }
.nh-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.nh-card__icon svg { width: 26px; height: 26px; }
.nh-card__icon--green { background: rgba(152,199,91,.12); color: var(--ic-green); }
.nh-card__icon--blue  { background: rgba(31,77,132,.12);  color: var(--ic-blue);  }
.nh-card h3 { margin-bottom: 12px; }
.nh-card p  { font-size: .93rem; }

/* ---------- Compare ---------- */
.nh-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.nh-compare__traditional {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--gray-100);
}
.nh-compare__nexhire {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.nh-compare__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.nh-compare__traditional .nh-compare__label { color: var(--gray-400); }
.nh-compare__nexhire    .nh-compare__label { color: rgba(152,199,91,.75); }
.nh-compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nh-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
}
.nh-compare__traditional .nh-compare__list li { color: var(--gray-600); }
.nh-compare__nexhire    .nh-compare__list li { color: rgba(255,255,255,.85); }
.nh-compare__x     { color: #e05c5c; flex-shrink: 0; margin-top: 2px; }
.nh-compare__check { color: #98C75B; flex-shrink: 0; margin-top: 2px; }
.nh-compare__nexhire .nh-compare__cta { margin-top: 28px; }

/* ---------- Why NexHire ---------- */
.nh-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nh-why-visual {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-why-list { display: flex; flex-direction: column; gap: 24px; }
.nh-why-item { display: flex; gap: 20px; align-items: flex-start; }
.nh-why-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(31,77,132,.10);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nh-why-icon svg { width: 22px; height: 22px; }
.nh-why-item h4 { margin-bottom: 4px; }
.nh-why-item p  { font-size: .91rem; }

/* ---------- Feature Grid ---------- */
.nh-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.nh-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.nh-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.nh-feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.nh-feature-card:hover::before { transform: scaleX(1); }
.nh-feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.nh-feature-icon svg { width: 26px; height: 26px; }
.nh-fi--green { background: rgba(152,199,91,.12); color: var(--ic-green); }
.nh-fi--blue  { background: rgba(31,77,132,.12);  color: var(--ic-blue);  }
.nh-fi--navy  { background: rgba(24,43,104,.10);  color: var(--ic-navy);  }
.nh-feature-card h3 { margin-bottom: 10px; }
.nh-feature-card p  { font-size: .92rem; }

/* ---------- Process Steps ---------- */
.nh-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.nh-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 0;
}
.nh-process-step { text-align: center; position: relative; z-index: 1; }
.nh-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(31,77,132,.2);
  transition: var(--transition);
}
.nh-process-step:hover .nh-step-num {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1);
}
.nh-process-step h4 { margin-bottom: 8px; }
.nh-process-step p  { font-size: .88rem; }

/* ---------- CTA Banner ---------- */
.nh-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--blue-dark) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nh-cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.nh-cta-banner p  { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 36px; }
.nh-cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Header (inner pages) ---------- */
.nh-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  padding: 56px 0 48px;
}
.nh-page-header h1 { color: var(--white); margin-bottom: 10px; }
.nh-page-header p  { color: rgba(255,255,255,.75); }

/* ---------- Candidates Page ---------- */
.nh-candidates-body {
  padding: 48px 24px 80px;
  max-width: 1160px;
  margin: 0 auto;
}
.nh-candidates-toolbar {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.nh-candidates-count { font-size: .88rem; font-weight: 600; color: var(--gray-600); }
.nh-candidates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Candidate Tile ---------- */
.nh-candidate-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
}
.nh-candidate-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(152,199,91,.4);
}
.nh-candidate-tile__header { display: flex; align-items: center; gap: 14px; }
.nh-candidate-tile__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.nh-candidate-tile__name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.nh-candidate-tile__role { font-size: .82rem; color: var(--gray-600); }
.nh-candidate-tile__location { font-size: .84rem; color: var(--gray-600); }
.nh-candidate-tile__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.nh-candidate-tile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.nh-candidate-tile__exp { font-size: .82rem; color: var(--gray-600); font-weight: 600; }

/* ---------- Tags ---------- */
.nh-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  background: rgba(31,77,132,.08);
  color: var(--blue);
  border: 1px solid rgba(31,77,132,.15);
}

/* ---------- Badges ---------- */
.nh-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
}
.nh-badge--available::before   { content: '●'; font-size: .55rem; }
.nh-badge--unavailable::before { content: '●'; font-size: .55rem; }
.nh-badge--available   { background: rgba(152,199,91,.12); color: var(--green-dark); }
.nh-badge--unavailable { background: rgba(99,112,136,.10); color: var(--gray-600); }

/* ---------- Candidate Detail ---------- */
.nh-detail-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.nh-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 28px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.nh-back-link:hover { color: var(--navy); }
.nh-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.nh-detail-card__banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 48px 40px;
  text-align: center;
}
.nh-detail-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(152,199,91,.25);
  border: 3px solid rgba(255,255,255,.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.nh-detail-card__name { color: var(--white); font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.nh-detail-card__role { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 10px; }
.nh-detail-card__body { padding: 40px; }
.nh-detail-section { margin-bottom: 32px; }
.nh-detail-section:last-child { margin-bottom: 0; }
.nh-detail-section__title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.nh-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.nh-detail-meta__item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.nh-detail-meta__label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.nh-detail-meta__value { font-size: .93rem; font-weight: 600; color: var(--navy); }

/* ---------- Empty State ---------- */
.nh-empty { text-align: center; padding: 80px 24px; color: var(--gray-600); }
.nh-empty__icon { font-size: 3rem; margin-bottom: 16px; opacity: .5; }

/* ---------- Footer ---------- */
.nh-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
}
.nh-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.nh-footer__logo { height: 36px; width: auto; display: block; margin-bottom: 8px; }
.nh-footer__tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: 6px; }
.nh-footer__links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.nh-footer__links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.nh-footer__links a:hover { color: var(--green); }
.nh-footer__bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------- Welcome / Login Screen ---------- */
.nh-welcome {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--green-dark) 100%);
  padding: 40px 24px;
}
.nh-welcome__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(24,43,104,.28);
}
.nh-welcome__logo-img {
  height: 48px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}
.nh-welcome__card h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.nh-welcome__card h1 span { color: var(--green); }
.nh-welcome__card > p {
  font-size: .93rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.7;
}
.nh-welcome__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.nh-welcome__actions .btn { justify-content: center; width: 100%; }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.nh-welcome__signup-hint {
  font-size: .82rem;
  color: var(--gray-600);
  margin: 0;
}
.nh-welcome__signup-hint a {
  color: var(--blue);
  font-weight: 600;
  transition: var(--transition);
}
.nh-welcome__signup-hint a:hover { color: var(--navy); }

/* ---------- Blazor Error UI ---------- */
#blazor-error-ui {
  background: lightyellow;
  bottom: 0; left: 0;
  box-shadow: 0 -1px 2px rgba(0,0,0,.2);
  display: none;
  padding: 0.6rem 1.25rem 0.7rem;
  position: fixed;
  width: 100%;
  z-index: 9999;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: .75rem; top: .5rem; }
.blazor-error-boundary { background: #b32121; padding: 1rem 1rem 1rem 3.7rem; color: white; border-radius: var(--radius); }
.blazor-error-boundary::after { content: "An error has occurred."; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nh-features-grid   { grid-template-columns: repeat(2, 1fr); }
  .nh-candidates-grid { grid-template-columns: repeat(2, 1fr); }
  .nh-two-col         { grid-template-columns: 1fr; }
  .nh-compare         { grid-template-columns: 1fr; }
  .nh-why-grid        { grid-template-columns: 1fr; gap: 40px; }
  .nh-why-visual      { height: 260px; }
  .nh-value-grid      { grid-template-columns: repeat(2, 1fr); transform: translateY(-24px); }
  .nh-process-steps   { grid-template-columns: repeat(2, 1fr); }
  .nh-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nh-features-grid   { grid-template-columns: 1fr; }
  .nh-candidates-grid { grid-template-columns: 1fr; }
  .nh-hero__actions   { flex-direction: column; }
  .nh-cta-actions     { flex-direction: column; align-items: center; }
  .nh-detail-meta     { grid-template-columns: 1fr; }
  .nh-footer__inner   { flex-direction: column; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .nh-value-grid    { grid-template-columns: 1fr 1fr; }
  .nh-process-steps { grid-template-columns: 1fr; }
}

/* ---------- Candidates Toolbar — View Toggle ---------- */
.nh-candidates-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.nh-view-toggle { display: flex; gap: 4px; }
.nh-view-toggle__btn {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.nh-view-toggle__btn:hover { background: var(--off-white); color: var(--navy); }
.nh-view-toggle__btn--active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---------- List View ---------- */
.nh-candidates-list { display: flex; flex-direction: column; gap: 10px; }
.nh-candidate-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  color: inherit;
}
.nh-candidate-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(152,199,91,.4);
}
.nh-candidate-row--unlocked { border-left: 3px solid var(--green); }
.nh-candidate-row__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
}
.nh-candidate-row__info { flex: 1; min-width: 0; }
.nh-candidate-row__name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.nh-candidate-row__role { font-size: .82rem; color: var(--gray-600); }
.nh-candidate-row__status { flex-shrink: 0; }
.nh-candidate-row__lock { flex-shrink: 0; font-size: 1.1rem; }

/* ---------- Lock Icons ---------- */
.nh-lock-icon { font-size: .82rem; color: var(--gray-400); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.nh-lock-icon--open { color: var(--green-dark); }

/* ---------- Unlocked Tile State ---------- */
.nh-candidate-tile--unlocked { border-left: 3px solid var(--green); }

/* ---------- Credits Badge (page header) ---------- */
.nh-credits-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(152,199,91,.18);
  border: 1px solid rgba(152,199,91,.35);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
}
.nh-credits-badge__icon { font-size: .7rem; }

/* ---------- Credits in Navbar ---------- */
.nh-navbar__credits {
  font-size: .84rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(152,199,91,.12);
  border: 1px solid rgba(152,199,91,.3);
  padding: 5px 14px;
  border-radius: 50px;
}
.nh-navbar__admin-link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--blue);
  transition: var(--transition);
}
.nh-navbar__admin-link:hover { background: var(--blue); color: var(--white); }

/* ---------- Unlock Gate ---------- */
.nh-detail-card__avatar--locked {
  background: rgba(99,112,136,.15);
  font-size: 1.8rem;
}
.nh-detail-card__body--locked { display: flex; align-items: center; justify-content: center; min-height: 240px; }
.nh-unlock-gate {
  text-align: center;
  max-width: 420px;
  padding: 16px;
}
.nh-unlock-gate__icon { font-size: 3rem; margin-bottom: 16px; opacity: .5; }
.nh-unlock-gate h3 { color: var(--navy); margin-bottom: 10px; }
.nh-unlock-gate p { font-size: .93rem; margin-bottom: 12px; }
.nh-unlock-gate__credits { font-size: .88rem !important; color: var(--gray-600); }
.nh-unlock-gate__btn { margin-top: 8px; }
.nh-unlock-gate__error {
  background: rgba(224,92,92,.1);
  border: 1px solid rgba(224,92,92,.3);
  color: #c0392b;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .88rem;
  margin-bottom: 12px;
}

/* ---------- Admin Header ---------- */
.nh-admin-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Admin Table ---------- */
.nh-admin-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  background: var(--white);
}
.nh-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}
.nh-admin-table th {
  background: var(--off-white);
  color: var(--gray-600);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}
.nh-admin-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
  color: var(--gray-900);
}
.nh-admin-table tr:last-child td { border-bottom: none; }
.nh-admin-table tr:hover td { background: var(--off-white); }
.nh-admin-table__actions { display: flex; gap: 12px; align-items: center; }
.nh-admin-action {
  font-size: .83rem;
  font-weight: 700;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: var(--transition);
}
.nh-admin-action:hover { color: var(--navy); }
.nh-admin-action--danger { color: #c0392b; }
.nh-admin-action--danger:hover { color: #922b21; }

/* ---------- Admin Form ---------- */
.nh-admin-form-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.nh-admin-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}
.nh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.nh-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.nh-form-group--checkbox { flex-direction: row; align-items: center; gap: 10px; }
.nh-form-label { font-size: .83rem; font-weight: 700; color: var(--navy); }
.nh-form-label--inline { font-weight: 600; color: var(--gray-900); margin: 0; }
.nh-form-hint { font-weight: 400; color: var(--gray-400); font-size: .78rem; }
.nh-form-input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .93rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.nh-form-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,77,132,.12); }
.nh-form-textarea { resize: vertical; min-height: 120px; }
.nh-form-error {
  background: rgba(224,92,92,.1);
  border: 1px solid rgba(224,92,92,.3);
  color: #c0392b;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .88rem;
  margin-bottom: 16px;
}
.nh-form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- Delete Confirm Modal ---------- */
.nh-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,43,104,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(2px);
}
.nh-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-lg);
}
.nh-modal h3 { color: var(--navy); margin-bottom: 12px; }
.nh-modal p  { margin-bottom: 24px; }
.nh-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.nh-modal__btn--danger { background: #c0392b; border-color: #c0392b; }
.nh-modal__btn--danger:hover { background: #922b21; border-color: #922b21; }

/* ---------- Access Denied ---------- */
.nh-access-denied {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--green-dark) 100%);
  padding: 40px 24px;
}
.nh-access-denied__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(24,43,104,.28);
}
.nh-access-denied__icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  opacity: .8;
}
.nh-access-denied__card h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.nh-access-denied__card p {
  font-size: .93rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.7;
}
.nh-access-denied__card a { color: var(--blue); font-weight: 600; }
.nh-access-denied__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.nh-access-denied__actions .btn { justify-content: center; width: 100%; }

/* ---------- Responsive additions ---------- */
@media (max-width: 768px) {
  .nh-form-row { grid-template-columns: 1fr; }
  .nh-admin-header { flex-direction: column; align-items: flex-start; }
  .nh-candidate-row__status { display: none; }
}

/* ---------- Search Bar ---------- */
.nh-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.nh-search-bar__input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.nh-search-bar__icon {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  color: var(--gray-400);
  pointer-events: none;
  flex-shrink: 0;
}
.nh-search-bar__input {
  width: 100%;
  padding: 11px 40px 11px 42px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .93rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
}
.nh-search-bar__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,77,132,.12);
}
.nh-search-bar__input::placeholder { color: var(--gray-400); }
.nh-search-bar__clear {
  position: absolute;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-300);
  color: var(--gray-900);
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0;
  line-height: 1;
  transition: var(--transition);
}
.nh-search-bar__clear:hover { background: var(--gray-400); }

/* ---------- Filter Toggle Button ---------- */
.nh-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  font-size: .88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nh-filter-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.nh-filter-toggle--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.nh-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
}
.nh-filter-toggle--active .nh-filter-badge {
  background: var(--green);
  color: var(--white);
}

/* ---------- Filter Panel ---------- */
.nh-filter-panel {
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.nh-filter-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px 28px;
}
.nh-filter-panel__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: flex-end;
}
.nh-filter-group__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.nh-filter-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nh-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  user-select: none;
}
.nh-filter-chip input[type="radio"] { display: none; }
.nh-filter-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.nh-filter-chip--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.nh-filter-select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .88rem;
  color: var(--gray-900);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  appearance: auto;
}
.nh-filter-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,77,132,.12);
}
.nh-filter-skill-input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .88rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
}
.nh-filter-skill-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,77,132,.12);
}
.nh-filter-skill-input::placeholder { color: var(--gray-400); }
.nh-filter-clear-btn {
  font-size: .83rem;
  font-weight: 700;
  color: #c0392b;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: var(--transition);
}
.nh-filter-clear-btn:hover { color: #922b21; text-decoration: underline; }

/* ---------- Candidate Row extras ---------- */
.nh-candidate-row {
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.nh-candidate-row__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 140px;
}
.nh-candidate-row__location,
.nh-candidate-row__exp {
  font-size: .8rem;
  color: var(--gray-600);
}
.nh-candidate-row__exp { font-weight: 600; }

/* ---------- Candidate Tile as button ---------- */
.nh-candidate-tile {
  text-align: left;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Tag extras ---------- */
.nh-tag--more {
  background: rgba(24,43,104,.06);
  color: var(--gray-600);
  border-color: transparent;
}

/* ---------- Candidate Hover Panel ---------- */
.nh-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,43,104,.45);
  backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: nh-fade-in .18s ease;
}
@keyframes nh-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.nh-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  animation: nh-slide-up .22s cubic-bezier(.4,0,.2,1);
}
@keyframes nh-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.nh-panel__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  z-index: 1;
  line-height: 1;
}
.nh-panel__close:hover { background: rgba(255,255,255,.35); }
.nh-panel__banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 36px 32px 28px;
  text-align: center;
}
.nh-panel__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(152,199,91,.25);
  border: 3px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.nh-panel__name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.25;
}
.nh-panel__role {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  margin-bottom: 2px;
}
.nh-panel__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-100);
}
.nh-panel__meta-item {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nh-panel__meta-item:first-child { border-right: 1px solid var(--gray-100); }
.nh-panel__meta-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.nh-panel__meta-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.nh-panel__section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.nh-panel__section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.nh-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nh-panel__cta {
  padding: 20px;
}
.nh-panel__credits-note {
  font-size: .83rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  text-align: center;
}

/* ---------- Responsive: search & filter ---------- */
@media (max-width: 768px) {
  .nh-search-bar { flex-wrap: wrap; }
  .nh-filter-panel__grid { grid-template-columns: 1fr; }
  .nh-candidate-row__meta { display: none; }
  .nh-panel { max-width: 100%; }
}

/* ---------- Panel meta grid (4 cells) ---------- */
.nh-panel__meta { grid-template-columns: 1fr 1fr; }

/* ---------- Career History Timeline ---------- */
.nh-career-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--gray-100);
  margin-left: 10px;
}
.nh-career-item {
  display: flex;
  gap: 20px;
  padding: 0 0 28px 0;
  position: relative;
}
.nh-career-item:last-child { padding-bottom: 0; }
.nh-career-item__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
  flex-shrink: 0;
  margin-left: -8px;
  margin-top: 4px;
}
.nh-career-item__content { flex: 1; }
.nh-career-item__role {
  font-weight: 700;
  font-size: .97rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.nh-career-item__company {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 2px;
}
.nh-career-item__period {
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.nh-career-item__summary {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- Education & Licences List ---------- */
.nh-cred-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nh-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.nh-cred-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.nh-cred-item__title {
  font-weight: 700;
  font-size: .93rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.nh-cred-item__institution {
  font-size: .85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 2px;
}
.nh-cred-item__date {
  font-size: .8rem;
  color: var(--gray-400);
}

/* ---------- Admin form: collection items ---------- */
.nh-form-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 28px 0 24px;
}
.nh-collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.nh-collection-item {
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.nh-collection-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.nh-collection-item__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ---------- Admin form: work type checkboxes ---------- */
.nh-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.nh-checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  user-select: none;
}
.nh-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}
