/*
 * Jobmycv interface system
 * A single final visual layer. It deliberately replaces the old stacked
 * campaign skins with a compact, black-and-white product interface.
 */
:root {
  --jp-blue: #111111;
  --jp-blue-hover: #2b2b2b;
  --jp-blue-light: #f2f2f2;
  --jp-bg: #ffffff;
  --jp-bg-light: #f7f7f7;
  --jp-text: #111111;
  --jp-text-muted: #666666;
  --jp-text-light: #858585;
  --jp-border: #dfdfdf;
  --jp-border-light: #ededed;
  --jp-green: #166534;
  --jp-red: #b42318;
  --jp-radius: 8px;
  --jp-shadow: none;
}

/* One intentional link policy, scoped to the Jobmycv interface shells. */
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap, .jp-header, .jp-footer, .jp-site-content) a,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap, .jp-header, .jp-footer, .jp-site-content) a:hover,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap, .jp-header, .jp-footer, .jp-site-content) a:focus,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap, .jp-header, .jp-footer, .jp-site-content) a:focus-visible { text-decoration: none; }
.jp-detail-richtext a, .jp-job-content a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
body { background: #fff; }
body.jp-detail-open { overflow: hidden; }
.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap,
.jp-main button, .jp-main input, .jp-main select, .jp-main textarea,
.jp-dashboard button, .jp-dashboard input, .jp-dashboard select, .jp-dashboard textarea,
.jp-auth-page button, .jp-auth-page input, .jp-auth-page select, .jp-auth-page textarea,
.jpauth-wrap button, .jpauth-wrap input, .jpauth-wrap select, .jpauth-wrap textarea { font-family: Inter, Arial, sans-serif; }
.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap { color: var(--jp-text); font-size: 16px; line-height: 1.35; }
.jp-site-content { min-height: 100vh; }

/* Shared controls: compact, tactile and deliberately quiet. */
.jp-btn, .jp-detail-apply-btn, .jp-fixed-apply-btn, .jp-mobile-apply-footer .jp-detail-apply-btn {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid #111;
  border-radius: 7px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.01em;
  box-shadow: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.jp-btn:hover, .jp-detail-apply-btn:hover, .jp-fixed-apply-btn:hover,
.jp-mobile-apply-footer .jp-detail-apply-btn:hover {
  background: #323232;
  color: #fff;
  transform: translateY(-1px);
}
.jp-btn:focus-visible, .jp-detail-apply-btn:focus-visible, .jp-fixed-apply-btn:focus-visible,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap, .jp-header, .jp-footer, .jp-site-content) a:focus-visible,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap) button:focus-visible,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap) input:focus-visible,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap) select:focus-visible,
:where(.jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap) textarea:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.jp-btn--outline, .jp-btn--ghost {
  border-color: #d7d7d7 !important;
  background: #fff !important;
  color: #111 !important;
}
.jp-btn--outline:hover, .jp-btn--ghost:hover { background: #f4f4f4 !important; }
.jp-input, .jp-select, .jp-textarea, .jp-sort-select {
  min-height: 42px;
  border: 1px solid #d6d6d6;
  border-radius: 7px;
  background: #fff;
  color: #111;
  font-size: 15px;
  line-height: 1.25;
  box-shadow: none;
}
.jp-input:focus, .jp-select:focus, .jp-textarea:focus, .jp-sort-select:focus {
  border-color: #111;
  box-shadow: 0 0 0 2px #ececec;
}

/* Public header */
.jp-header { min-height: 60px; border-bottom: 1px solid #e5e5e5; background: #fff; box-shadow: none; }
.jp-header__inner { width: 100%; min-height: 60px; padding: 0 18px; }
.jp-header__logo .jp-logo-img { width: 126px; height: auto; }
.jp-header__nav { gap: 5px; }
.jp-header__search { border: 1px solid #dedede; border-radius: 7px; box-shadow: none; }
.jp-header__search input { font-size: 14px; }

/* Home and archive: full-width, edge-aware job browser */
.wi-split-page {
  display: flex;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  height: 100dvh;
  overflow-x: clip;
  background: #fff;
}
.wi-split-page .wi-split__left {
  display: flex;
  width: 100%;
  min-width: 0;
  flex: 1 1 100%;
  flex-direction: column;
  border: 0;
  background: #fff;
  transition: flex-basis .32s cubic-bezier(.2,.7,.2,1), width .32s cubic-bezier(.2,.7,.2,1);
}
.wi-split-page .wi-split__right {
  position: relative;
  width: 0;
  min-width: 0;
  flex: 0 0 0;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: flex-basis .32s cubic-bezier(.2,.7,.2,1), width .32s cubic-bezier(.2,.7,.2,1), opacity .18s ease;
}
.wi-split-page.is-detail-open .wi-split__left {
  width: 45%;
  flex: 0 0 45%;
  border-right: 1px solid #e2e2e2;
}
.wi-split-page.is-detail-open .wi-split__right {
  width: 55%;
  flex: 1 1 55%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wi-split__search {
  order: -1;
  flex: 0 0 auto;
  padding: 0 !important;
  background: #fff;
}
.wi-split__left-scroll { min-height: 0; flex: 1; overflow-y: auto; background: #fff; scrollbar-color: #cfcfcf transparent; }
.wi-split-page .wi-split__left {
  position: sticky;
  top: 0;
  height: 100dvh;
  align-self: flex-start;
}
.wi-split-page.is-detail-closing .wi-split__left,
.wi-split-page.is-detail-closing .wi-split__right {
  transition: none !important;
}
.wi-listing-utility {
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: clamp(2px, .5vw, 6px) clamp(4px, .5vw, 6px) !important;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  color: #111;
}
.wi-listing-utility__bar {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: clamp(32px, 4.5vw, 40px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(4px, 1vw, 12px);
  flex-wrap: nowrap;
}
.wi-listing-utility__brand {
  display: inline-flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.wi-listing-utility__wordmark {
  display: block;
  width: clamp(88px, 18vw, 132px);
  max-width: 100%;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  object-position: left center;
}
.wi-listing-utility__icon {
  display: none;
  width: clamp(26px, 8vw, 32px);
  height: clamp(26px, 8vw, 32px);
  flex: 0 0 auto;
  object-fit: contain;
}
.wi-listing-utility__actions {
  display: flex;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(0px, .75vw, 6px);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.wi-listing-utility__account { position: relative; flex: 0 0 auto; }
.wi-listing-utility__action {
  display: inline-flex;
  width: clamp(28px, 8vw, 36px);
  height: clamp(28px, 8vw, 36px);
  flex: 0 0 clamp(28px, 8vw, 36px);
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  font-size: clamp(13px, 3.8vw, 16px);
  line-height: 1;
  cursor: pointer;
}
.wi-listing-utility__action:hover, .wi-listing-utility__action[aria-expanded="true"] { background: #f1f1f1; color: #111; }
.wi-listing-utility__location-summary { display: none; margin-top: 3px; color: #4c4c4c; font-size: 13px; }
.wi-listing-utility__location-summary .fa, .wi-listing-utility__change { color: #111; }
.wi-listing-utility__location-label { color: #777; }
.wi-listing-utility__search-panel, .wi-listing-utility__location-panel { margin: 6px 16px 8px; }
.wi-listing-utility__use-location {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #dedede;
  border-radius: 7px;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.wi-listing-utility__use-location:hover,
.wi-listing-utility__use-location:focus-visible {
  border-color: #111;
  background: #f5f5f5;
  color: #111;
}
.wi-listing-utility__use-location:disabled { cursor: wait; opacity: .65; }
.wi-listing-utility__search-panel .wi-split__search-input,
.wi-listing-utility__location-panel #jp-listing-location {
  min-height: 42px;
  border: 1px solid #dedede !important;
  border-radius: 7px !important;
  background: #fff !important;
  font-size: 15px !important;
  box-shadow: none !important;
}
.wi-listing-utility__search-panel .wi-split__search-btn, .wi-listing-utility__location-submit {
  min-height: 42px;
  border: 1px solid #111 !important;
  border-radius: 7px !important;
  background: #111 !important;
  color: #fff;
}
.wi-listing-utility__location-panel { padding: 8px; border: 1px solid #e5e5e5; border-radius: 7px; background: #fff; }
.wi-listing-utility__nearby { border: 1px solid #dedede !important; border-radius: 7px !important; background: #fff !important; color: #111 !important; }
.wi-listing-utility__account-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 7px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.wi-listing-utility__account-menu a { font-size: 14px; }
.wi-listing-utility__avatar, .wi-listing-utility__account-avatar { display: inline-grid; width: clamp(22px, 7vw, 28px); height: clamp(22px, 7vw, 28px); place-items: center; border-radius: 50%; background: #111; background-position: center; background-size: cover; color: #fff; font-size: clamp(10px, 3vw, 12px); font-weight: 800; }
.wi-listing-utility__avatar--photo, .wi-listing-utility__account-avatar.is-photo { color: transparent; }
.wi-listing-utility__account-name { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-bottom: 1px solid #e8e8e8; }
.wi-listing-utility__account-name > span:last-child { display: grid; gap: 2px; }
.wi-listing-utility__account-name small { color: #777; font-size: 11px; font-weight: 500; }
.wi-listing-utility__account-menu { min-width: 220px; overflow: hidden; background: #fff; }
.wi-listing-utility__account-menu li:not(.wi-listing-utility__account-name) a { display: block; padding: 9px 12px; color: #222; text-decoration: none; }
.wi-listing-utility__account-menu li:not(.wi-listing-utility__account-name) a:hover { background: #f5f5f5; }
.wi-listing-utility__location-presets { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.wi-listing-utility__location-presets button { padding: 5px 8px; border: 1px solid #ddd; border-radius: 99px; background: #fff; color: #333; font-size: 12px; }
.wi-listing-utility__location-presets button:hover, .wi-listing-utility__location-presets button:focus-visible { border-color: #111; background: #f4f4f4; }
.wi-listing-utility.is-condensed { padding-top: clamp(2px, .5vw, 4px) !important; padding-bottom: clamp(2px, .5vw, 4px) !important; background: #fff; }
.wi-listing-utility.is-condensed .wi-listing-utility__brand { flex: 0 0 auto; }
.wi-listing-utility.is-condensed .wi-listing-utility__wordmark { display: none; }
.wi-listing-utility.is-condensed .wi-listing-utility__icon { display: block; }
.wi-split__welcome { margin: 0; padding: 9px 16px; border: 0; border-bottom: 1px solid #ededed; background: #fff; }
.wi-split__welcome-name { font-size: 16px; color: #111; }
.wi-split__welcome-sub, .wi-split__match-key { font-size: 13px; }
.wi-split__list-header { min-height: 42px; padding: 6px 16px; border: 0; border-bottom: 1px solid #ededed; background: #fff; }
.wi-split__list-count { font-size: 15px; color: #111; font-weight: 750; }
.wi-split__chip, .wi-split__filter-btn { padding: 6px 9px; border: 1px solid #e0e0e0 !important; border-radius: 99px !important; background: #fff !important; color: #333 !important; font-size: 12px !important; }

/* Listing cards are information rows, not floating containers. */
.jp-job-card {
  position: relative;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #ededed !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: background .16s ease;
}
.jp-job-card:hover, .jp-job-card.is-active { background: #f7f7f7 !important; }
.jp-job-card.is-active { box-shadow: inset 3px 0 0 #111 !important; }
.jp-job-card__link { display: block; padding: 15px 50px 14px 16px !important; color: #111; text-decoration: none; }
.jp-job-card__title { margin: 0 0 5px !important; color: #111 !important; font-size: clamp(17px, 1.45vw, 21px) !important; font-weight: 800 !important; line-height: 1.15 !important; letter-spacing: -.025em; }
.jp-job-card__company, .jp-job-card__salary-line { margin: 0 0 5px !important; color: #454545 !important; font-size: 14px !important; font-weight: 650 !important; }
.jp-job-card__meta-row { display: flex !important; flex-wrap: wrap; gap: 4px 12px !important; margin-top: 5px !important; color: #666 !important; font-size: 13px !important; line-height: 1.2 !important; }
.jp-job-card__meta-row span + span::before { content: none !important; }
.jp-job-card__company > i, .jp-job-card__salary-line > i,
.jp-job-card__meta-row span > i { margin-right: 7px; }
.jp-listing-page .wi-split__list-controls button > i,
.jp-listing-page .wi-listing-utility__location-summary > i { margin-right: 6px; }
.jp-job-card__tags { margin-top: 8px !important; gap: 5px !important; }
.jp-job-tag { padding: 3px 6px !important; border: 1px solid #e0e0e0 !important; border-radius: 4px !important; background: #fff !important; color: #565656 !important; font-size: 11px !important; }
.jp-job-card__actions { top: 12px !important; right: 12px !important; }
.jp-card-action-btn { width: 30px !important; height: 30px !important; border: 0 !important; border-radius: 50% !important; background: transparent !important; color: #333 !important; }
.jp-card-action-btn:hover, .jp-card-action-btn.is-saved { background: #ececec !important; color: #111 !important; }

/* The selected detail reads as a sheet, with detail growing heavier downward. */
#jp-detail-panel-wrap {
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #e4e7ec;
  background: #fff;
}
#jp-detail-panel { min-height: 100%; padding-bottom: 82px; }
.jp-loading { display: flex; min-height: 260px; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #555; font-size: 14px; text-align: center; }
.jp-loading--detail {
  min-height: 100%;
  align-items: stretch;
  justify-content: flex-start;
  padding: 56px 18px 90px;
  text-align: left;
}
.jp-loading__detail-layout { display: block; width: 100%; }
.jp-loading__detail-header,
.jp-loading__detail-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}
.jp-loading__detail-header { padding-top: 0; }
.jp-loading__detail-section { gap: 10px; }
.jp-loading__line {
  display: block;
  height: 12px;
  border-radius: 5px;
  background: linear-gradient(90deg, #eeeeee 20%, #f8f8f8 50%, #eeeeee 80%);
  background-size: 200% 100%;
  animation: jpLoadingSkeleton 1.2s ease-in-out infinite;
}
.jp-loading__line--eyebrow { width: 86px; height: 9px; }
.jp-loading__line--title { width: min(78%, 360px); height: 28px; }
.jp-loading__line--company { width: min(48%, 220px); }
.jp-loading__line--meta { width: min(62%, 280px); }
.jp-loading__line--section { width: 130px; height: 17px; margin-bottom: 3px; }
.jp-loading__line--long { width: 100%; }
.jp-loading__line--medium { width: 76%; }
.jp-loading__line--short { width: 53%; }
@keyframes jpLoadingSkeleton {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.jp-loading__progress {
  width: min(220px, 62vw);
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8e8e8;
}
.jp-loading__progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #111;
  animation: jpLoadingProgress 1.05s ease-in-out infinite;
}
.jp-loading--detail .jp-loading__progress { align-self: center; margin-top: 22px; }
.jp-loading--detail > span { align-self: center; }
@keyframes jpLoadingProgress {
  0% { transform: translateX(-115%); }
  55% { transform: translateX(150%); }
  100% { transform: translateX(250%); }
}
.jp-loading--error { gap: 9px; }
#jp-detail-panel .jp-detail__header,
#jp-detail-panel .jp-detail-section,
#jp-detail-panel .jp-highlights-section {
  margin: 0 !important;
  padding: 16px 18px !important;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}
#jp-detail-panel .jp-detail__header {
  position: relative;
  padding: 0 18px !important;
  border-bottom: 0 !important;
}
#jp-detail-panel .jp-detail__title-row { margin: 0; }
#jp-detail-panel .jp-detail__header-copy {
  position: sticky;
  top: 0;
  z-index: 8;
  margin: 0 -18px;
  padding: 56px 18px 16px;
  border-bottom: 1px solid #e4e7ec;
  background: #fff;
  box-shadow: 0 3px 12px rgba(23, 33, 49, .06);
}
#jp-detail-panel .jp-detail-panel__topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid #e4e7ec;
  background: #fff;
}
#jp-detail-panel .jp-detail-panel__topbar .jp-detail-panel__close {
  position: static;
  display: inline-flex !important;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 750;
}
#jp-detail-panel .jp-detail-panel__topbar .jp-detail-panel__close:hover,
#jp-detail-panel .jp-detail-panel__topbar .jp-detail-panel__close:focus-visible {
  border-color: #111;
  background: #f5f5f5;
  color: #111;
}
#jp-detail-panel .jp-detail__header-copy { top: 58px; }
#jp-detail-panel .jp-detail__header-copy .jp-detail__title {
  max-width: 100%;
  overflow-wrap: anywhere;
}
#jp-detail-panel .jp-detail-info-list {
  margin: 0;
  padding: 13px 0 5px;
  border-bottom: 0;
}
#jp-detail-panel .jp-detail-info-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 0;
}
#jp-detail-panel .jp-detail-info-row:last-child { border-bottom: 0; }
#jp-detail-panel .jp-detail-info-row__label {
  color: #777;
  font-size: 12px;
  font-weight: 700;
}
#jp-detail-panel .jp-detail-info-row__value {
  color: #222;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
  overflow-wrap: anywhere;
}
#jp-detail-panel .jp-detail__source {
  margin: 0;
  padding: 12px 0 0;
  color: #777;
  font-size: 12px;
}
#jp-detail-panel .jp-detail__source i { margin-right: 6px; }
.jp-detail-panel__close, .wi-split-page .jp-mobile-detail-back {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 4;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-weight: 750;
}
.jp-detail-panel__close:hover, .wi-split-page .jp-mobile-detail-back:hover { background: #f0f0f0; }
.wi-split-page .jp-mobile-detail-back { z-index: 20; }
/* The desktop browser keeps its detail visible; only mobile needs Back. */
.jp-detail-panel__close { display: none !important; }
#jp-detail-panel .jp-detail__eyebrow { margin: 0 0 7px; color: #777; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
#jp-detail-panel .jp-detail__title { margin: 0 0 6px; color: #111; font-size: clamp(24px, 2vw, 32px); font-weight: 850; line-height: 1.05; letter-spacing: -.045em; }
#jp-detail-panel .jp-detail__company { margin: 0 0 8px; font-size: 15px; font-weight: 700; }
#jp-detail-panel .jp-detail__salary-band { margin: 0 0 8px; color: #111; font-size: 20px; font-weight: 850; }
#jp-detail-panel .jp-detail__location-band { margin: 0; color: #595959; font-size: 14px; }
#jp-detail-panel .jp-detail__tags-row { gap: 5px; margin: 12px 0 0; }
#jp-detail-panel .jp-detail__tag-pill { padding: 4px 7px; border: 1px solid #dedede; border-radius: 4px; background: #fff; color: #444; font-size: 12px; }
#jp-detail-panel .jp-detail__action-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 13px 0 16px;
  border-bottom: 0;
}
#jp-detail-panel .jp-detail__primary-action { margin-left: 0; }
#jp-detail-panel .jp-btn--icon { width: 34px; height: 34px; border: 1px solid #dedede; border-radius: 50%; background: #fff; color: #222; }
#jp-detail-panel .jp-section-title {
  margin: 0 0 10px;
  padding-top: 14px;
  border-top: 1px solid #e8e8e8;
  color: #111;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-transform: none;
}
#jp-detail-panel .jp-section-title > i { margin-right: 7px; color: #666; }
#jp-detail-panel .jp-job-content, #jp-detail-panel .jp-role-item__val, #jp-detail-panel .jp-detail-richtext { color: #3f3f3f; font-size: 15px; line-height: 1.42; }
#jp-detail-panel .jp-role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
#jp-detail-panel .jp-role-item {
  min-height: 68px;
  padding: 11px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fafafa;
}
#jp-detail-panel .jp-role-item__icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 7px;
  background: #f0f0f0;
  color: #555;
}
#jp-detail-panel .jp-role-item__label { color: #777; font-size: 12px; font-weight: 700; }
#jp-detail-panel .jp-role-item__val { color: #222; font-size: 14px; font-weight: 650; }
#jp-detail-panel .jp-highlights-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
#jp-detail-panel .jp-highlight-card { justify-content: flex-start; min-height: 48px; padding: 10px; border: 1px solid #e5e7eb; border-radius: 8px; background: #fafafa; color: #333; font-size: 13px; }
#jp-detail-panel .jp-detail-benefits { gap: 5px; }
#jp-detail-panel .jp-detail-benefit { padding: 6px 0; border: 0; border-radius: 0; background: transparent; color: #333; font-size: 14px; }
#jp-detail-panel .jp-detail-company, #jp-detail-panel .jp-faq-item { border: 0; border-radius: 0; background: transparent; box-shadow: none; }
#jp-detail-panel .jp-detail-company { padding: 16px 18px; background: #f4f4f4; }
#jp-detail-panel .jp-detail-direct-link { display: inline-flex; align-items: center; gap: 6px; color: #555; font-size: 13px; font-weight: 700; text-decoration: none; }
#jp-detail-panel .jp-detail-footer-links {
  margin: 0;
  padding: 18px 0 24px;
  border-top: 0;
}
.jp-detail-fixed-apply {
  position: sticky !important;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 66px;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 0 !important;
  background: #fff !important;
  box-shadow: 0 -8px 22px rgba(0,0,0,.08) !important;
}
.jp-detail-fixed-apply .jp-fixed-apply-btn { flex: 1; min-height: 45px; border-radius: 7px; }
.jp-fixed-apply-hint { display: none; }
.jp-detail-fixed-apply.is-sticky .jp-fixed-apply-btn { animation: jpApplySettle .24s cubic-bezier(.2,.8,.2,1) both; }
@keyframes jpApplySettle { from { transform: translateY(8px); opacity: .7; } to { transform: translateY(0); opacity: 1; } }

/* Direct job pages: one calm reading column with related labels and values
 * kept together instead of the old wide, disconnected two-sided layout. */
.jp-detail-page {
  width: 100%;
  min-height: calc(100vh - 60px);
  padding: 28px 20px 72px !important;
  background: #f6f6f6;
}
.jp-detail-page .jp-single-job-outer {
  width: min(100%, 920px);
  max-width: 920px;
  margin: 0 auto;
  padding: 0 !important;
}
.jp-single-job-layout {
  display: block !important;
  padding: 0 !important;
}
.jp-single-job-main {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.jp-detail-card {
  overflow: hidden;
  border: 1px solid #dedede !important;
  border-radius: 16px !important;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,17,17,.07) !important;
}
.jp-detail-page .jp-detail-topbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-bottom: 1px solid #ececec;
  background: #fff;
}
.jp-detail-page .jp-detail-browse-home {
  color: #555;
  font-size: 13px;
  font-weight: 700;
}
.jp-detail-page .jp-detail-top-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}
.jp-detail-page .jp-detail-icon-btn {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  color: #333;
}
.jp-detail-page .jp-detail-icon-btn:hover { background: #f3f3f3; }
.jp-detail-page .jp-detail-hero {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 30px 22px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}
.jp-detail-page .jp-detail-brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 25px;
  font-weight: 850;
}
.jp-detail-page .jp-detail-heading { min-width: 0; }
.jp-detail-page .jp-detail-heading h1 {
  margin: 3px 0 7px;
  color: #111;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.05em;
  overflow-wrap: anywhere;
}
.jp-detail-page .jp-detail-heading p {
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 650;
}
.jp-detail-page .jp-detail-eyebrow {
  margin: 0;
  color: #777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.jp-detail-page .jp-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 30px;
  border: 0;
}
.jp-detail-page .jp-detail-facts > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 14px 12px 14px 0;
  color: #444;
  font-size: 13px;
  line-height: 1.3;
}
.jp-detail-page .jp-detail-facts > div + div { padding-left: 12px; border-left: 0; }
.jp-detail-page .jp-detail-facts i { color: #777; }
.jp-detail-page .jp-detail-facts strong { color: #111; overflow-wrap: anywhere; }
.jp-detail-page .jp-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 18px 30px 4px;
}
.jp-detail-page .jp-detail-tags span {
  padding: 6px 10px;
  border: 1px solid #dedede;
  border-radius: 99px;
  background: #fafafa;
  color: #444;
  font-size: 12px;
  font-weight: 700;
}
.jp-detail-page .jp-apply-box {
  margin: 18px 30px 0;
  padding: 16px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #f7f7f7;
}
.jp-detail-page .jp-apply-box__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.jp-detail-page .jp-apply-box__facts > div {
  display: flex;
  min-width: 130px;
  align-items: flex-start;
  gap: 8px;
  color: #666;
  font-size: 12px;
}
.jp-detail-page .jp-apply-box__facts i { padding-top: 2px; color: #777; }
.jp-detail-page .jp-apply-box__facts span { display: grid; gap: 3px; }
.jp-detail-page .jp-apply-box__facts strong { color: #111; font-size: 13px; }
.jp-detail-page .jp-apply-box__hint {
  margin: 13px 0 0;
  color: #666;
  font-size: 12px;
}
.jp-detail-page .jp-detail-section {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin: 0 30px;
  padding: 19px 0;
  border-top: 0;
}
.jp-detail-page .jp-detail-section:first-of-type { margin-top: 22px; }
.jp-detail-page .jp-detail-section__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #f0f0f0;
  color: #444;
}
.jp-detail-page .jp-detail-section__body { min-width: 0; }
.jp-detail-page .jp-detail-section__body h2 {
  margin: 0 0 10px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  color: #111;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.jp-detail-page .jp-detail-richtext {
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.65;
}
.jp-detail-page .jp-detail-company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: start;
  margin: 0;
  padding: 24px 30px;
  border-top: 0;
  background: #fafafa;
}
.jp-detail-page .jp-detail-company__about { min-width: 0; }
.jp-detail-page .jp-detail-company h2 { margin: 0 0 7px; font-size: 18px; }
.jp-detail-page .jp-detail-company p { margin: 0; color: #666; font-size: 13px; line-height: 1.5; }
.jp-detail-page .jp-detail-company__facts,
.jp-detail-page .jp-detail-contact {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 180px;
}
.jp-detail-page .jp-detail-company__facts p,
.jp-detail-page .jp-detail-contact > span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #666;
}
.jp-detail-page .jp-detail-company__facts strong,
.jp-detail-page .jp-detail-contact strong { display: block; color: #111; }
.jp-detail-page .jp-detail-contact {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 0;
}
.jp-detail-page .jp-contact-masked { font-size: 12px; }
.jp-detail-page .jp-job-apply-cta {
  width: min(100%, 860px);
  margin: 14px auto 0;
}
.jp-single-job-layout > .jp-browse-jobs-sidebar { display: none !important; }
.jp-detail-page .jp-detail-topbar, .jp-detail-page .jp-detail-hero, .jp-detail-page .jp-detail-section, .jp-detail-page .jp-detail-company { border-radius: 0; box-shadow: none; }

/* Authentication: one focused form surface with a restrained visual lead-in. */
.jp-auth-page { display: grid; grid-template-columns: minmax(260px, 38%) minmax(0, 1fr); min-height: 100vh; background: #fff; }
.jp-auth-hero { min-height: 100%; padding: 28px; background: #111; color: #fff; }
.jp-auth-hero__decoration { display: none; }
.jp-auth-hero__logo { margin: 0 0 54px; }
.jp-auth-hero__headline { max-width: 440px; margin: 0 0 12px; color: #fff; font-size: clamp(31px, 4vw, 54px); font-weight: 850; line-height: .98; letter-spacing: -.06em; }
.jp-auth-hero__sub { max-width: 430px; margin: 0; color: #c7c7c7; font-size: 16px; line-height: 1.4; }
.jp-auth-hero__features { margin-top: 46px; gap: 8px; }
.jp-auth-hero__feature { padding: 8px 0; color: #e6e6e6; font-size: 14px; }
.jp-auth-hero__icon { width: 28px; height: 28px; border: 1px solid #454545; border-radius: 50%; background: transparent; color: #fff; }
.jp-auth-form-side { display: flex; width: 100%; padding: 24px; background: #fff; }
.jp-auth-card { width: min(100%, 520px); margin: auto; padding: 0 !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
.jp-auth-card__title { margin: 0 0 5px; color: #111; font-size: clamp(28px, 3vw, 40px); font-weight: 850; line-height: 1; letter-spacing: -.045em; }
.jp-auth-card__subtitle { margin: 0 0 22px; font-size: 15px; line-height: 1.35; }
.jp-auth-form .jp-field-group, #jp-register-form .jp-form-group { margin-bottom: 13px; }
.jp-field-label, .jp-label { margin-bottom: 5px; color: #333; font-size: 13px; font-weight: 750; }
.jp-auth-tabs { margin: 0 0 18px; border-bottom: 1px solid #ddd; }
.jp-auth-tab { padding: 10px 0; color: #777; font-size: 14px; font-weight: 750; }
.jp-auth-tab.is-active { color: #111; border-bottom-color: #111; }
.jp-auth-card [style*="background:var(--jp-blue-light)"] {
  border: 1px solid #dedede !important;
  border-radius: 7px !important;
  background: #f5f5f5 !important;
  color: #333 !important;
}
.jp-auth-card [style*="color:var(--jp-blue)"] { color: #111 !important; }
.jp-auth-card [style*="accent-color:var(--jp-blue)"] { accent-color: #111 !important; }
.jp-auth-card [style*="border-top:1px solid var(--jp-border)"] { border-top-color: #dedede !important; }

/* Dashboards: dense monochrome workspace with no decorative card noise. */
.jp-dashboard { display: grid; grid-template-columns: 230px minmax(0,1fr); width: 100%; min-height: 100vh; background: #fff; }
.jp-dashboard__sidebar { position: sticky; top: 0; display: flex; height: 100vh; flex-direction: column; padding: 14px 10px; border: 0; border-right: 1px solid #dedede; border-radius: 0; background: #111; color: #fff; }
.jp-dashboard__sidebar-logo { padding: 5px 8px 18px; border: 0; }
.jp-dashboard__sidebar-logo .jp-logo-text { color: #fff; font-size: 21px; font-weight: 850; letter-spacing: -.04em; }
.jp-dashboard__user-card, .jp-profile-completion { padding: 10px 8px; border: 0; border-top: 1px solid #333; border-radius: 0; background: transparent; }
.jp-dashboard__user-name, .jp-dashboard__user-role, .jp-dashboard__user-headline, .jp-profile-completion { color: #ececec; }
.jp-dashboard__avatar { background: #fff; color: #111; }
.jp-profile-completion__bar { background: #444; }
.jp-profile-completion__fill { background: #fff !important; }
.jp-dashboard__nav { margin-top: 8px; }
.jp-dashboard__nav-item { position: relative; min-height: 38px; margin: 0; padding: 9px 8px; border: 0; border-radius: 5px; color: #c9c9c9; font-size: 14px; font-weight: 650; }
.jp-dashboard__nav-item:hover, .jp-dashboard__nav-item.is-active { border: 0; background: #fff; color: #111; }
.jp-dashboard__nav-divider { height: 1px; margin: 8px; background: #333; }
.jp-dashboard__main { min-width: 0; padding: 16px !important; background: #fff; }
.jp-dashboard__quick-links { top: 10px; right: 14px; }
.jp-dashboard__header { margin-bottom: 16px; }
.jp-dashboard__title { color: #111; font-size: clamp(27px, 3vw, 38px); font-weight: 850; line-height: 1; letter-spacing: -.05em; }
.jp-dashboard__subtitle { margin: 5px 0 0; font-size: 14px; }
.jp-stats-grid { gap: 0; border-top: 1px solid #dedede; border-left: 1px solid #dedede; }
.jp-stat-card { padding: 16px; border: 0; border-right: 1px solid #dedede; border-bottom: 1px solid #dedede; border-radius: 0; background: #fff; text-align: left; }
.jp-stat-card__icon { display: none; }
.jp-stat-card__value { margin: 0; color: #111; font-size: 30px; font-weight: 850; line-height: 1; letter-spacing: -.05em; }
.jp-stat-card__label { margin-top: 5px; color: #666; font-size: 12px; font-weight: 700; }
.jp-panel { margin: 16px 0 0; border: 1px solid #dedede; border-radius: 0; background: #fff; box-shadow: none; }
.jp-panel__header { min-height: 46px; padding: 10px 14px; border-bottom: 1px solid #dedede; }
.jp-panel__title { font-size: 17px; font-weight: 850; letter-spacing: -.02em; }
.jp-panel__body { padding: 14px; }
.jp-panel__body[style*="padding:0"] { padding: 0 !important; }
.jp-panel__body[style*="padding:40px"],
.jp-panel__body[style*="padding:48px"] { padding: 18px !important; }
.jp-panel__body[style*="text-align:center"] { text-align: center; }
.jp-table { min-width: 650px; color: #222; font-size: 14px; }
.jp-panel__body { overflow-x: auto; }
.jp-table th, .jp-table td { padding: 11px 12px; border-bottom: 1px solid #e5e5e5; }
.jp-table th { background: #f5f5f5; color: #666; font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.jp-table tr:hover td { background: #f8f8f8; }
.jp-status { border: 1px solid #d6d6d6; border-radius: 99px; background: #fff; color: #333; font-size: 11px; font-weight: 750; }
.jp-dashboard__mobile-toggle { display: none; }

@media (max-width: 900px) {
  .wi-split-page { height: auto; min-height: 100vh; overflow: visible; }
  .wi-split-page .wi-split__left, .wi-split-page.is-detail-open .wi-split__left { width: 100%; flex: 1 1 100%; border-right: 0; }
  .wi-split-page .wi-split__left-scroll { overflow: visible; }
  .wi-split-page .wi-split__right, .wi-split-page.is-detail-open .wi-split__right {
    position: fixed; inset: 0; z-index: 1000; width: 100%; height: 100dvh; flex: none; transform: translateX(100%); overflow-y: auto; opacity: 1; visibility: hidden; pointer-events: none; border: 1px solid #e4e7ec; transition: transform .28s cubic-bezier(.2,.7,.2,1), visibility 0s linear .28s;
  }
  .wi-split-page.is-detail-open .wi-split__right { transform: translateX(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
  /* Opening shows the loading state in place; only closing keeps the sheet
   * swipe so the result never animates in before its content is ready. */
  .wi-split-page.is-detail-loading .wi-split__right {
    transform: translateX(0);
    transition: none !important;
  }
  .wi-split-page.is-detail-closing .wi-split__right {
    transform: translateX(100%) !important;
    visibility: hidden !important;
    transition: none !important;
  }
  .wi-split-page .jp-mobile-detail-back { position: sticky; top: 8px; left: 8px; margin: 8px; background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,.12); }
  #jp-detail-panel { padding-bottom: 76px; }
  .jp-auth-page { display: block; min-height: 100dvh; }
  .jp-auth-hero { min-height: auto; padding: 20px 18px; }
  .jp-auth-hero__logo { margin-bottom: 30px; }
  .jp-auth-hero__headline { font-size: 34px; }
  .jp-auth-hero__features { display: none; }
  .jp-auth-form-side { min-height: 62dvh; padding: 22px 18px; }
  .jp-dashboard { display: block; }
  .jp-dashboard__mobile-toggle { position: sticky; top: 0; z-index: 20; display: flex; width: 100%; align-items: center; gap: 7px; padding: 12px 14px; border: 0; background: #111; color: #fff; font-size: 14px; font-weight: 750; }
  .jp-dashboard__sidebar { display: none; position: fixed; top: 43px; left: 0; z-index: 30; width: min(86vw, 280px); height: calc(100dvh - 43px); }
  .jp-dashboard__sidebar.is-open { display: flex; }
  .jp-dashboard__main { padding: 12px !important; }
  .jp-dashboard__title { font-size: 29px; }
  .jp-dashboard__header { gap: 10px; align-items: flex-start; }
  .jp-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .jp-main, .jp-dashboard, .jp-auth-page, .jpauth-wrap { font-size: 15px; }
  .jp-header__inner { padding: 0 12px; }
  .wi-listing-utility__search-panel, .wi-listing-utility__location-panel { margin-left: 12px; margin-right: 12px; }
  .wi-split__welcome, .wi-split__list-header { padding-left: 12px; padding-right: 12px; }
  .jp-job-card__link { padding: 13px 43px 13px 12px !important; }
  .jp-job-card__title { font-size: 17px !important; }
  #jp-detail-panel .jp-detail__header, #jp-detail-panel .jp-detail-section, #jp-detail-panel .jp-highlights-section { padding-left: 14px !important; padding-right: 14px !important; }
  .jp-detail-fixed-apply { padding: 8px 10px !important; }
  .jp-auth-card__title { font-size: 31px; }
  .jp-stats-grid { grid-template-columns: 1fr 1fr; }
  .jp-stat-card { padding: 13px; }
}

/* Standalone application conversation: compact OLX/WhatsApp-like thread. */
.jp-conversation-page { min-height: calc(100vh - 60px); padding: 28px 16px 56px; background: #f7f7f7; }
.jp-conversation-page__shell { width: min(760px, 100%); margin: 0 auto; }
.jp-conversation-page__header { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.jp-conversation-page__heading { display: flex; min-width: 0; align-items: center; gap: 12px; }
.jp-conversation-page__heading h1 { margin: 0; font-size: 21px; line-height: 1.15; }
.jp-conversation-page__heading p { margin: 4px 0 0; color: #707070; font-size: 13px; }
.jp-conversation-page__avatar { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 50%; background: #111; color: #fff; }
.jp-conversation { overflow: hidden; border: 1px solid #dedede; border-radius: 10px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.jp-conversation__summary { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid #ededed; font-size: 13px; }
.jp-conversation__summary span { color: #777; }
.jp-conversation__messages { display: flex; min-height: 360px; max-height: min(62vh, 620px); flex-direction: column; gap: 10px; overflow-y: auto; padding: 20px 16px; background: #fafafa; }
.jp-conversation__messages .jp-message-item { width: min(78%, 500px); margin: 0; padding: 9px 12px; border: 1px solid #e5e5e5; border-radius: 10px; background: #fff; }
.jp-conversation__messages .jp-message-item--mine { align-self: flex-end; border-color: #d5d5d5; background: #eeeeee; }
.jp-conversation__messages .jp-message-item--theirs { align-self: flex-start; }
.jp-conversation__messages .jp-message-item__meta { display: flex; justify-content: space-between; gap: 10px; color: #777; font-size: 11px; }
.jp-conversation__messages .jp-message-item__meta strong { color: #333; }
.jp-conversation__messages .jp-message-item p { margin: 4px 0 0; color: #222; font-size: 14px; white-space: normal; overflow-wrap: anywhere; }
.jp-conversation__form, .jp-conversation .jp-chat-page__form { display: flex; align-items: flex-end; gap: 10px; padding: 12px; border-top: 1px solid #e5e5e5; background: #fff; }
.jp-conversation .jp-chat-page__form .jp-textarea { min-height: 44px; flex: 1; resize: vertical; }
.jp-conversation .jp-chat-page__form .jp-btn { min-width: 78px; }
.jp-conversation-page__empty { padding: 56px 24px; border: 1px solid #e2e2e2; border-radius: 10px; background: #fff; text-align: center; }
.jp-conversation-page__empty > i { font-size: 30px; color: #777; }
.jp-conversation-page__empty h2 { margin: 14px 0 6px; font-size: 20px; }
.jp-conversation-page__empty p { margin: 0; color: #777; }
.jp-conversation-index { overflow: hidden; border: 1px solid #dedede; border-radius: 10px; background: #fff; }
.jp-conversation-index h2 { margin: 0; padding: 16px; border-bottom: 1px solid #ededed; font-size: 18px; }
.jp-conversation-index > p { padding: 22px 16px; color: #777; }
.jp-conversation-index ul { margin: 0; padding: 0; list-style: none; }
.jp-conversation-index li + li { border-top: 1px solid #ededed; }
.jp-conversation-index a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; color: #111; text-decoration: none; }
.jp-conversation-index a:hover { background: #f6f6f6; }
.jp-conversation-index__avatar { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border-radius: 50%; background: #eee; }
.jp-conversation-index__copy { display: grid; min-width: 0; flex: 1; gap: 3px; }
.jp-conversation-index__copy small { color: #777; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.jp-conversation-index__badge { min-width: 20px; padding: 2px 6px; border-radius: 99px; background: #111; color: #fff; font-size: 12px; font-weight: 750; text-align: center; }

@media (min-width: 901px) {
  .wi-listing-utility__actions { margin-left: auto; }
}
@media (max-width: 560px) {
  .jp-conversation-page { padding: 14px 10px 30px; }
  .jp-conversation-page__header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .jp-conversation__messages { min-height: 300px; padding: 14px 10px; }
  .jp-conversation__messages .jp-message-item { width: 88%; }
  .jp-conversation .jp-chat-page__form { align-items: stretch; flex-direction: column; }
  .jp-conversation .jp-chat-page__form .jp-btn { width: 100%; }
}

/* Final archive interaction pass: the open control fills the complete header. */
.jp-listing-page .wi-listing-utility__inline-control {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  width: 0;
  height: 100%;
  flex: 0 0 auto !important;
  overflow: hidden;
  transition: width .44s cubic-bezier(.2,.75,.2,1);
}
.jp-listing-page .wi-listing-utility.is-search-open .wi-listing-utility__inline-control,
.jp-listing-page .wi-listing-utility.is-location-open .wi-listing-utility__inline-control {
  width: 100%;
}
.jp-listing-page .wi-listing-utility.is-search-open .wi-listing-utility__brand,
.jp-listing-page .wi-listing-utility.is-search-open .wi-listing-utility__actions,
.jp-listing-page .wi-listing-utility.is-location-open .wi-listing-utility__brand,
.jp-listing-page .wi-listing-utility.is-location-open .wi-listing-utility__actions {
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease;
}
.jp-listing-page .wi-listing-utility__inline-panel {
  padding: 4px 6px;
  gap: 8px;
}
.jp-listing-page .wi-listing-utility__inline-field {
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.jp-listing-page .wi-listing-utility__inline-field input {
  font-size: 14px !important;
}
.jp-listing-page .wi-listing-suggestion-view {
  flex: 0 0 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: flex-basis .36s cubic-bezier(.2,.75,.2,1), max-height .36s ease, padding .36s ease, opacity .22s ease, transform .36s ease;
}
.jp-listing-page .wi-split__left.is-showing-suggestions .wi-listing-results {
  flex: 0 0 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  overflow: hidden;
  transition: flex-basis .36s cubic-bezier(.2,.75,.2,1), max-height .36s ease, opacity .2s ease, transform .36s ease;
}
.jp-listing-page .wi-split__left.is-showing-suggestions .wi-listing-suggestion-view {
  flex: 1 1 auto;
  max-height: 2000px;
  padding-top: clamp(22px, 4vw, 42px);
  padding-bottom: clamp(22px, 4vw, 42px);
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
}
.jp-listing-page .wi-listing-suggestion-view[aria-hidden="true"] {
  pointer-events: none;
}
.jp-listing-page .wi-listing-suggestion-view[aria-hidden="false"] {
  pointer-events: auto;
}
.jp-listing-page .wi-listing-results {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: flex-basis .36s cubic-bezier(.2,.75,.2,1), max-height .36s ease, opacity .2s ease, transform .36s ease;
}
.jp-listing-page .wi-listing-results .wi-split__left-scroll {
  min-height: 0;
}
@media (max-width: 560px) {
  .jp-listing-page .wi-listing-utility__inline-panel { padding-left: 5px; padding-right: 5px; }
  .jp-listing-page .wi-listing-suggestion-view__header { margin-bottom: 20px; }
  .jp-listing-page .wi-listing-suggestion-view {
    padding-left: 16px;
    padding-right: 16px;
  }
  .jp-listing-page .wi-split__left.is-showing-suggestions .wi-listing-suggestion-view {
    padding-top: 24px;
    padding-bottom: 28px;
  }
}

/* Archive search: full-width inline controls with a dedicated suggestion surface. */
.jp-listing-page .wi-listing-utility {
  position: relative;
  z-index: 8;
  overflow: visible;
}
.jp-listing-page .wi-listing-utility__bar {
  position: relative;
  min-height: 48px;
}
.jp-listing-page .wi-listing-utility__inline-control {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  width: 0;
  height: 100%;
  min-width: 0;
  flex: 0 0 auto !important;
  overflow: hidden;
  transition: width .46s cubic-bezier(.2,.75,.2,1);
}
.jp-listing-page .wi-listing-utility.is-search-open .wi-listing-utility__inline-control,
.jp-listing-page .wi-listing-utility.is-location-open .wi-listing-utility__inline-control {
  width: 100%;
}
.jp-listing-page .wi-listing-utility__inline-panel {
  position: absolute;
  inset: 0;
  display: flex;
  min-width: 0;
  width: 100%;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  padding: 4px 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition: opacity .22s ease, transform .32s ease, visibility 0s linear 0s;
}
.jp-listing-page .wi-listing-utility__inline-panel[aria-hidden="true"] {
  opacity: 0;
  transform: translateX(12px);
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0s, .32s;
}
.jp-listing-page .wi-listing-utility__inline-panel:not(.is-open) {
  opacity: 0;
  transform: translateX(12px);
  visibility: hidden;
  pointer-events: none;
}
.jp-listing-page .wi-listing-utility__inline-panel.is-open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.jp-listing-page .wi-listing-utility__inline-field {
  display: flex;
  min-width: 0;
  height: calc(100% - 8px);
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.jp-listing-page .wi-listing-utility__inline-field:focus-within {
  border-color: #111;
  box-shadow: 0 0 0 2px #ededed;
}
.jp-listing-page .wi-listing-utility__inline-field > i {
  flex: 0 0 auto;
  color: #777;
  font-size: 13px;
}
.jp-listing-page .wi-listing-utility__inline-field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #111;
  font-size: 13px !important;
}
.jp-listing-page .wi-listing-utility__inline-field input::placeholder { color: #858585; }
.jp-listing-page .wi-listing-utility__search-panel .wi-split__search-btn,
.jp-listing-page .wi-listing-utility__location-submit,
.jp-listing-page .wi-listing-utility__inline-close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
}
.jp-listing-page .wi-listing-utility__search-panel .wi-split__search-btn,
.jp-listing-page .wi-listing-utility__location-submit {
  border: 0 !important;
  background: #111 !important;
  color: #fff;
}
.jp-listing-page .wi-listing-utility__inline-close {
  border: 1px solid #dedede;
  background: #fff;
  color: #333;
}
.jp-listing-page .wi-listing-utility__search-panel .wi-split__search-btn:hover,
.jp-listing-page .wi-listing-utility__location-submit:hover,
.jp-listing-page .wi-listing-utility__inline-close:hover {
  border-color: #111;
  background: #f2f2f2 !important;
  color: #111;
}
.jp-listing-page .wi-listing-utility__search-panel .wi-split__search-btn:hover,
.jp-listing-page .wi-listing-utility__location-submit:hover {
  background: #333 !important;
  color: #fff;
}
.jp-listing-page .wi-listing-utility__location-form {
  display: flex !important;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: 6px;
}
.jp-listing-page .wi-listing-utility.is-search-open #jp-listing-search-toggle,
.jp-listing-page .wi-listing-utility.is-location-open #jp-listing-location-toggle {
  display: none;
}
.jp-listing-page .wi-listing-suggestion-view {
  display: block;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  width: 100%;
  padding: clamp(22px, 4vw, 42px) clamp(18px, 3vw, 32px);
  background: #fff;
  animation: jpSuggestionIn .32s ease both;
}
.jp-listing-page .wi-listing-suggestion-view[hidden] { display: none; }
.wi-listing-suggestion-view__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: none;
  margin: 0 auto 28px;
}
.wi-listing-suggestion-view__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.wi-listing-suggestion-view__header h2 {
  margin: 0;
  color: #111;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.wi-listing-suggestion-view__close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 50%;
  background: #fff;
  color: #333;
  cursor: pointer;
}
.wi-listing-suggestion-view__close:hover {
  border-color: #111;
  background: #f4f4f4;
  color: #111;
}
.wi-listing-suggestions {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.wi-listing-suggestion-view[data-mode="search"] .wi-listing-suggestions[data-suggestion-mode="location"],
.wi-listing-suggestion-view[data-mode="location"] .wi-listing-suggestions[data-suggestion-mode="search"] {
  display: none;
}
.wi-listing-suggestions__label {
  margin: 0 0 8px;
  color: #777;
  font-size: 12px;
  font-weight: 750;
}
.wi-listing-suggestions__items {
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
}
.wi-listing-suggestion {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  background: transparent;
  color: #222;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: padding .18s ease, background .18s ease;
}
.wi-listing-suggestion > i:first-child {
  width: 18px;
  color: #777;
  text-align: center;
}
.wi-listing-suggestion > span { flex: 1; }
.wi-listing-suggestion > i:last-child {
  color: #aaa;
  font-size: 11px;
  transition: color .18s ease, transform .18s ease;
}
.wi-listing-suggestion:hover,
.wi-listing-suggestion:focus-visible {
  padding-right: 9px;
  padding-left: 9px;
  outline: 0;
  background: #f7f7f7;
}
.wi-listing-suggestion:hover > i:last-child,
.wi-listing-suggestion:focus-visible > i:last-child {
  color: #111;
  transform: translate(2px, -2px);
}
.jp-listing-page .wi-listing-utility__search-panel .wi-split__search-btn.is-suggestion-ready,
.jp-listing-page .wi-listing-utility__location-submit.is-suggestion-ready {
  border-color: #3d7cff !important;
  background: #3d7cff !important;
  color: #fff !important;
  box-shadow: 0 0 0 4px rgba(61,124,255,.16), 0 5px 14px rgba(61,124,255,.28);
  animation: jpSuggestionReady 1.2s ease-in-out infinite;
}
@keyframes jpSuggestionReady {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes jpSuggestionIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .jp-listing-page .wi-listing-utility.is-search-open .wi-listing-utility__brand,
  .jp-listing-page .wi-listing-utility.is-location-open .wi-listing-utility__brand {
    flex: 0 1 76px;
  }
  .jp-listing-page .wi-listing-utility__bar { min-height: 44px; }
  .jp-listing-page .wi-listing-utility__inline-field { height: 36px; padding: 0 9px; }
  .jp-listing-page .wi-listing-utility__inline-close,
  .jp-listing-page .wi-listing-utility__search-panel .wi-split__search-btn,
  .jp-listing-page .wi-listing-utility__location-submit { width: 30px; height: 30px; flex-basis: 30px; }
  .jp-listing-page .wi-listing-suggestion-view { padding: 24px 16px 34px; }
  .wi-listing-suggestion-view__header { margin-bottom: 22px; }
}

/* Keep the suggestion surface in the same flex slot as the jobs. JavaScript
 * only changes the state class, so switching feels like a fast in-place swap. */
.jp-listing-page .wi-split__left > .wi-listing-suggestion-view {
  display: block;
  min-height: 0;
  flex: 0 0 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: flex-basis .36s cubic-bezier(.2,.75,.2,1), max-height .36s ease, padding .36s ease, opacity .2s ease, transform .36s ease;
}
.jp-listing-page .wi-split__left.is-showing-suggestions > .wi-listing-suggestion-view {
  flex: 1 1 auto;
  max-height: 5000px;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.jp-listing-page .wi-split__left > .wi-listing-results {
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: flex-basis .36s cubic-bezier(.2,.75,.2,1), max-height .36s ease, opacity .2s ease, transform .36s ease;
}
.jp-listing-page .wi-split__left.is-showing-suggestions > .wi-listing-results {
  flex: 0 0 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Dashboard sidebar: one consistent contrast system for both dashboard
 * templates (the older jp-dashboard__* markup and the shared jp-sidebar__*
 * partial). */
.jp-dashboard__sidebar {
  position: sticky;
  top: 0;
  z-index: 5;
  overflow-y: auto;
  background: linear-gradient(180deg, #151a25 0%, #0d1119 100%) !important;
  border-right: 1px solid #2d3545 !important;
  color: #f7f9fc !important;
  box-shadow: 8px 0 28px rgba(13,17,25,.08);
  scrollbar-color: #465168 transparent;
}
.jp-dashboard__sidebar a,
.jp-dashboard__sidebar button,
.jp-dashboard__sidebar p,
.jp-dashboard__sidebar span,
.jp-dashboard__sidebar strong,
.jp-dashboard__sidebar small,
.jp-dashboard__sidebar label {
  color: #d6dce8 !important;
}
.jp-dashboard__sidebar .jp-logo-text,
.jp-dashboard__sidebar-logo .jp-logo-text,
.jp-sidebar__brand .jp-logo-text {
  display: inline-block;
  color: #fff !important;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -.04em;
}
.jp-dashboard__sidebar-logo,
.jp-sidebar__brand {
  margin: 0 0 14px;
  padding: 8px 10px 18px !important;
  border-bottom: 1px solid #2d3545 !important;
}
.jp-dashboard__user-card,
.jp-sidebar__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px 10px !important;
  border: 1px solid #2d3545 !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.045) !important;
}
.jp-dashboard__user-info,
.jp-sidebar__identity-text {
  min-width: 0;
}
.jp-dashboard__user-name,
.jp-sidebar__name {
  overflow: hidden;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jp-dashboard__user-role,
.jp-dashboard__user-headline,
.jp-sidebar__headline {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #9da8bc !important;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jp-sidebar__role-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  padding: 3px 7px;
  border: 1px solid #3b465b;
  border-radius: 99px;
  background: #202a3b;
  color: #dbe7ff !important;
  font-size: 10px;
  font-weight: 750;
}
.jp-sidebar__role-badge i { color: #8fb5ff !important; }
.jp-dashboard__avatar,
.jp-sidebar__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 2px solid #52617a;
  border-radius: 50%;
  background: #edf3ff;
  background-position: center;
  background-size: cover;
  color: #17243a !important;
  font-size: 16px;
  font-weight: 850;
}
.jp-sidebar__avatar-wrap {
  position: relative;
  flex: 0 0 auto;
}
.jp-sidebar__avatar-edit {
  position: absolute;
  right: -3px;
  bottom: -3px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid #151a25;
  border-radius: 50%;
  background: #3d7cff;
  color: #fff !important;
  font-size: 8px;
}
.jp-profile-completion,
.jp-sidebar__strength {
  margin: 0 0 14px;
  padding: 11px 10px !important;
  border: 1px solid #2d3545 !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.035) !important;
}
.jp-profile-completion__header,
.jp-sidebar__strength-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #e8edf6 !important;
  font-size: 11px;
  font-weight: 750;
}
.jp-profile-completion__pct,
.jp-sidebar__strength-pct { color: #8fb5ff !important; }
.jp-profile-completion__bar,
.jp-sidebar__strength-track {
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #303b50 !important;
}
.jp-profile-completion__fill,
.jp-sidebar__strength-fill {
  min-width: 5px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4f8cff, #82b1ff) !important;
}
.jp-profile-completion__meta,
.jp-profile-completion__tip,
.jp-sidebar__strength-tip {
  display: block;
  margin-top: 8px;
  color: #9da8bc !important;
  font-size: 11px;
  line-height: 1.4;
}
.jp-profile-completion__tip,
.jp-sidebar__strength-tip {
  color: #a9c5ff !important;
  font-weight: 700;
  text-decoration: none;
}
.jp-profile-completion__tip:hover,
.jp-sidebar__strength-tip:hover {
  color: #fff !important;
  text-decoration: underline;
}
.jp-dashboard__nav,
.jp-sidebar__nav {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
  margin-top: 0;
}
.jp-dashboard__nav-item,
.jp-sidebar__nav-item {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 10px 11px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #cbd3e1 !important;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.jp-dashboard__nav-item i,
.jp-sidebar__nav-icon,
.jp-sidebar__nav-icon i {
  width: 19px;
  flex: 0 0 19px;
  color: #8e9ab0 !important;
  text-align: center;
}
.jp-sidebar__nav-icon {
  display: inline-grid;
  height: 19px;
  place-items: center;
}
.jp-dashboard__nav-item:hover,
.jp-dashboard__nav-item:focus-visible,
.jp-sidebar__nav-item:hover,
.jp-sidebar__nav-item:focus-visible {
  border-color: #34415a !important;
  background: rgba(255,255,255,.075) !important;
  color: #fff !important;
  outline: 0;
  transform: translateX(2px);
}
.jp-dashboard__nav-item:hover i,
.jp-dashboard__nav-item:focus-visible i,
.jp-sidebar__nav-item:hover .jp-sidebar__nav-icon,
.jp-sidebar__nav-item:focus-visible .jp-sidebar__nav-icon {
  color: #b9d0ff !important;
}
.jp-dashboard__nav-item.is-active,
.jp-sidebar__nav-item.is-active {
  border-color: #5b91ff !important;
  background: #3d7cff !important;
  color: #fff !important;
  box-shadow: 0 5px 14px rgba(61,124,255,.2);
}
.jp-dashboard__nav-item.is-active i,
.jp-sidebar__nav-item.is-active .jp-sidebar__nav-icon,
.jp-sidebar__nav-item.is-active .jp-sidebar__nav-icon i {
  color: #fff !important;
}
.jp-sidebar__nav-item--accent {
  border-color: rgba(101,150,255,.35) !important;
  background: rgba(61,124,255,.14) !important;
  color: #b9d0ff !important;
}
.jp-sidebar__nav-item--accent .jp-sidebar__nav-icon,
.jp-sidebar__nav-item--accent i { color: #8fb5ff !important; }
.jp-sidebar__nav-item--signout {
  margin-top: auto !important;
  color: #ffb5b5 !important;
}
.jp-sidebar__nav-item--signout .jp-sidebar__nav-icon,
.jp-sidebar__nav-item--signout i { color: #ff8989 !important; }
.jp-dashboard__nav-divider,
.jp-sidebar__nav-divider {
  width: auto;
  height: 1px;
  margin: 10px 8px !important;
  background: #2d3545 !important;
}
.jp-sidebar__nav-section-label {
  margin: 8px 11px 4px;
  color: #7f8ba0 !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.jp-nav-badge {
  min-width: 19px;
  margin-left: auto;
  padding: 2px 6px;
  border-radius: 99px;
  background: #2e3d59 !important;
  color: #cfe0ff !important;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}
.jp-dashboard__nav-item.is-active .jp-nav-badge {
  background: rgba(255,255,255,.2) !important;
  color: #fff !important;
}
.jp-dashboard__mobile-toggle {
  background: #151a25 !important;
  color: #fff !important;
}
@media (max-width: 900px) {
  .jp-dashboard__sidebar {
    box-shadow: 10px 0 30px rgba(0,0,0,.25);
  }
}

/* Dashboard pages use the same narrow, centered reading surface as the home
 * and listing experiences at every viewport. The existing sidebar remains
 * available through the menu toggle instead of widening the page on desktop. */
body.jp-dashboard-page {
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
}
body.jp-dashboard-page .jp-main > .container {
  width: 100%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}
body.jp-dashboard-page .jp-page {
  width: 100%;
  max-width: none;
  margin: 0;
}
body.jp-dashboard-page .jp-page-content {
  padding-top: 0;
  padding-bottom: 0;
}
body.jp-dashboard-page .jp-profile-notice .container {
  width: 100%;
  max-width: 760px;
  padding-right: 12px;
  padding-left: 12px;
}
body.jp-dashboard-page .jp-dashboard {
  display: block;
  width: 100%;
  max-width: 760px;
  min-height: calc(100vh - var(--header-h, 60px));
  margin-right: auto;
  margin-left: auto;
  background: #fff;
}
body.jp-dashboard-page .jp-dashboard__mobile-toggle {
  position: sticky;
  top: var(--header-h, 60px);
  z-index: 30;
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 0;
  background: #111 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
}
body.jp-dashboard-page .jp-dashboard__sidebar {
  position: fixed;
  top: var(--header-h, 60px);
  bottom: 0;
  left: max(0px, calc((100vw - 760px) / 2));
  z-index: 100;
  display: none;
  width: min(86vw, 280px);
  height: calc(100dvh - var(--header-h, 60px));
  overflow-y: auto;
  box-shadow: 10px 0 30px rgba(0,0,0,.25);
}
body.jp-dashboard-page .jp-dashboard__sidebar.is-open {
  display: flex;
}
body.jp-dashboard-page .jp-dashboard__main {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 16px 12px 40px !important;
}
body.jp-dashboard-page .jp-dashboard__quick-links {
  top: 8px;
  right: 12px;
}
body.jp-dashboard-page .jp-dashboard__header {
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
}
body.jp-dashboard-page .jp-dashboard__title {
  font-size: clamp(26px, 7vw, 34px);
}
body.jp-dashboard-page .jp-stats-grid,
body.jp-dashboard-page .jp-stat-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.jp-dashboard-page .jp-panel,
body.jp-dashboard-page .jp-profile-header,
body.jp-dashboard-page .jp-qual-info-box {
  max-width: 100%;
}
body.jp-dashboard-page .jp-panel__body {
  min-width: 0;
}
body.jp-dashboard-page .jp-table {
  min-width: 650px;
}

/* The dashboard uses the same light browser surface as home/listing. Keep
 * the page body full-width and put the readable surface inside it; this lets
 * the drawer and overlay align correctly without fighting a fixed wrapper. */
body.jp-dashboard-page {
  background: #f7f9fc;
}
body.jp-dashboard-page .jp-site-content,
body.jp-dashboard-page .jp-main {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}
body.jp-dashboard-page .jp-page-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}
body.jp-dashboard-page .jp-dashboard {
  min-height: 100vh;
  overflow: visible;
  border-right: 1px solid #e8edf4;
  border-left: 1px solid #e8edf4;
  background: #fff;
}
body.jp-dashboard-page .jp-dashboard__topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 14px;
  border-bottom: 1px solid #e4eaf2;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 12px rgba(31,65,114,.06);
  backdrop-filter: blur(12px);
}
body.jp-dashboard-page .jp-dashboard__brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}
body.jp-dashboard-page .jp-dashboard__brand img {
  display: block;
  width: auto;
  max-width: min(150px, 42vw);
  height: 38px;
  object-fit: contain;
}
body.jp-dashboard-page .jp-dashboard__topbar-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}
body.jp-dashboard-page .jp-dashboard__topbar-link,
body.jp-dashboard-page .jp-dashboard__mobile-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent !important;
  color: #2b3e59 !important;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
body.jp-dashboard-page .jp-dashboard__topbar-link:hover,
body.jp-dashboard-page .jp-dashboard__topbar-link:focus-visible,
body.jp-dashboard-page .jp-dashboard__mobile-toggle:hover,
body.jp-dashboard-page .jp-dashboard__mobile-toggle:focus-visible {
  border-color: #d7e4f6;
  background: #f1f6fd !important;
  color: #1f65d6 !important;
  outline: 0;
}
body.jp-dashboard-page .jp-dashboard__topbar-link i,
body.jp-dashboard-page .jp-dashboard__mobile-toggle i {
  color: #3d7cff;
}
body.jp-dashboard-page .jp-dashboard__mobile-toggle {
  position: static;
  z-index: auto;
  width: auto;
  min-height: 38px;
  padding: 8px 10px;
  text-align: center;
}
body.jp-dashboard-page .jp-dashboard__sidebar {
  top: var(--dashboard-topbar-h, 60px);
  left: max(0px, calc((100vw - 760px) / 2));
  width: min(86vw, 286px);
  height: calc(100dvh - var(--dashboard-topbar-h, 60px));
  padding: 14px 10px;
  border-right: 1px solid #e1e7f0 !important;
  background: #fff !important;
  color: #26364b !important;
  box-shadow: 16px 0 38px rgba(28,55,92,.16);
  scrollbar-color: #c5d3e6 transparent;
}
body.jp-dashboard-page .jp-dashboard__sidebar a,
body.jp-dashboard-page .jp-dashboard__sidebar button,
body.jp-dashboard-page .jp-dashboard__sidebar p,
body.jp-dashboard-page .jp-dashboard__sidebar span,
body.jp-dashboard-page .jp-dashboard__sidebar strong,
body.jp-dashboard-page .jp-dashboard__sidebar small,
body.jp-dashboard-page .jp-dashboard__sidebar label {
  color: #33445b !important;
}
body.jp-dashboard-page .jp-sidebar__identity {
  border-color: #e1e7f0 !important;
  background: #f7f9fc !important;
}
body.jp-dashboard-page .jp-sidebar__name {
  color: #172a43 !important;
}
body.jp-dashboard-page .jp-sidebar__headline {
  color: #6d7d91 !important;
}
body.jp-dashboard-page .jp-sidebar__role-badge {
  border-color: #cfe0f7;
  background: #edf5ff;
  color: #2b65ae !important;
}
body.jp-dashboard-page .jp-sidebar__role-badge i {
  color: #3d7cff !important;
}
body.jp-dashboard-page .jp-sidebar__strength {
  border-color: #e1e7f0 !important;
  background: #fff !important;
}
body.jp-dashboard-page .jp-sidebar__strength-header {
  color: #33445b !important;
}
body.jp-dashboard-page .jp-sidebar__strength-track {
  background: #e6edf6 !important;
}
body.jp-dashboard-page .jp-sidebar__strength-tip {
  color: #2d6dca !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item {
  border-color: transparent !important;
  background: transparent !important;
  color: #33445b !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item .jp-sidebar__nav-icon,
body.jp-dashboard-page .jp-sidebar__nav-item .jp-sidebar__nav-icon i {
  color: #71839a !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item:hover,
body.jp-dashboard-page .jp-sidebar__nav-item:focus-visible {
  border-color: #d7e4f6 !important;
  background: #f1f6fd !important;
  color: #1f65d6 !important;
  transform: none;
}
body.jp-dashboard-page .jp-sidebar__nav-item:hover .jp-sidebar__nav-icon,
body.jp-dashboard-page .jp-sidebar__nav-item:hover .jp-sidebar__nav-icon i,
body.jp-dashboard-page .jp-sidebar__nav-item:focus-visible .jp-sidebar__nav-icon,
body.jp-dashboard-page .jp-sidebar__nav-item:focus-visible .jp-sidebar__nav-icon i {
  color: #1f65d6 !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item.is-active {
  border-color: #c7ddfb !important;
  background: #eaf3ff !important;
  color: #1f65d6 !important;
  box-shadow: none;
}
body.jp-dashboard-page .jp-sidebar__nav-item.is-active .jp-sidebar__nav-icon,
body.jp-dashboard-page .jp-sidebar__nav-item.is-active .jp-sidebar__nav-icon i {
  color: #1f65d6 !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item--accent {
  border-color: #c7ddfb !important;
  background: #f1f6fd !important;
  color: #1f65d6 !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item--accent .jp-sidebar__nav-icon,
body.jp-dashboard-page .jp-sidebar__nav-item--accent .jp-sidebar__nav-icon i {
  color: #1f65d6 !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item--signout {
  color: #b54141 !important;
}
body.jp-dashboard-page .jp-sidebar__nav-item--signout .jp-sidebar__nav-icon,
body.jp-dashboard-page .jp-sidebar__nav-item--signout .jp-sidebar__nav-icon i {
  color: #c55454 !important;
}
body.jp-dashboard-page .jp-dashboard__nav-item {
  border-color: transparent !important;
  background: transparent !important;
  color: #33445b !important;
}
body.jp-dashboard-page .jp-dashboard__nav-item i {
  color: #71839a !important;
}
body.jp-dashboard-page .jp-dashboard__nav-item:hover,
body.jp-dashboard-page .jp-dashboard__nav-item:focus-visible {
  border-color: #d7e4f6 !important;
  background: #f1f6fd !important;
  color: #1f65d6 !important;
  transform: none;
}
body.jp-dashboard-page .jp-dashboard__nav-item:hover i,
body.jp-dashboard-page .jp-dashboard__nav-item:focus-visible i {
  color: #1f65d6 !important;
}
body.jp-dashboard-page .jp-dashboard__nav-item.is-active {
  border-color: #c7ddfb !important;
  background: #eaf3ff !important;
  color: #1f65d6 !important;
  box-shadow: none;
}
body.jp-dashboard-page .jp-dashboard__nav-item.is-active i {
  color: #1f65d6 !important;
}
body.jp-dashboard-page .jp-dashboard__nav-item--signout {
  color: #b54141 !important;
}
body.jp-dashboard-page .jp-dashboard__nav-item--signout i {
  color: #c55454 !important;
}
body.jp-dashboard-page .jp-dashboard__sidebar-logo,
body.jp-dashboard-page .jp-sidebar__brand {
  border-bottom-color: #e5ebf3 !important;
}
body.jp-dashboard-page .jp-sidebar__nav-divider {
  background: #e5ebf3 !important;
}
body.jp-dashboard-page .jp-sidebar__nav-section-label {
  color: #8a98aa !important;
}
body.jp-dashboard-page.jp-dashboard-menu-open::after {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(34,58,90,.2);
  content: "";
}
body.jp-dashboard-page.jp-dashboard-menu-open {
  overflow: hidden;
}
body.jp-dashboard-page .jp-dashboard__main {
  padding-top: 22px !important;
  padding-bottom: 48px !important;
}
body.jp-dashboard-page .jp-dashboard__header {
  margin-bottom: 18px;
}
body.jp-dashboard-page .jp-dashboard__subtitle {
  color: #718096;
  line-height: 1.45;
}
body.jp-dashboard-page .jp-panel,
body.jp-dashboard-page .jp-qual-info-box {
  border-color: #e1e7f0;
  box-shadow: 0 4px 16px rgba(33,61,96,.04);
}

@media (max-width: 560px) {
  body.jp-dashboard-page .jp-dashboard__topbar {
    min-height: 56px;
    padding: 7px 10px;
  }
  body.jp-dashboard-page .jp-dashboard__brand img {
    max-width: 132px;
    height: 34px;
  }
  body.jp-dashboard-page .jp-dashboard__topbar-link span {
    display: none;
  }
  body.jp-dashboard-page .jp-dashboard__topbar-link,
  body.jp-dashboard-page .jp-dashboard__mobile-toggle {
    width: 38px;
    padding: 8px;
  }
  body.jp-dashboard-page .jp-dashboard__mobile-toggle span {
    font-size: 0;
  }
  body.jp-dashboard-page .jp-dashboard__sidebar {
    top: var(--dashboard-topbar-h, 56px);
    height: calc(100dvh - var(--dashboard-topbar-h, 56px));
  }
  body.jp-dashboard-page .jp-dashboard__main {
    padding: 18px 12px 36px !important;
  }
  body.jp-dashboard-page .jp-dashboard__title {
    font-size: clamp(25px, 8vw, 32px);
  }
}

/* Listing filters: a real drawer instead of unstyled content in the split
 * layout. It stays above the listing/detail panes and becomes edge-to-edge
 * on phones. */
.jp-listing-page .wi-filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(12,17,27,.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.jp-listing-page .wi-filter-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.jp-listing-page .wi-filter-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1101;
  display: flex;
  width: min(370px, calc(100vw - 24px));
  max-width: 100%;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid #dfe4ec;
  background: #fff;
  box-shadow: 18px 0 44px rgba(12,17,27,.16);
  transform: translateX(-102%);
  visibility: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), visibility 0s linear .3s;
}
.jp-listing-page .wi-filter-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}
.jp-listing-page .wi-filter-drawer__header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid #e6eaf0;
  background: #fff;
}
.jp-listing-page .wi-filter-drawer__title {
  display: inline-flex;
  align-items: center;
  color: #182235;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.025em;
}
.jp-listing-page .wi-filter-drawer__title i {
  color: #3d7cff !important;
}
.jp-listing-page .wi-filter-drawer__header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jp-listing-page .wi-filter-drawer__header a {
  color: #d14b58 !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  text-decoration: none;
}
.jp-listing-page .wi-filter-drawer__header a:hover {
  color: #a83240 !important;
  text-decoration: underline;
}
.jp-listing-page .wi-filter-drawer__close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #dfe4ec;
  border-radius: 50%;
  background: #fff;
  color: #5a667a;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.jp-listing-page .wi-filter-drawer__close:hover,
.jp-listing-page .wi-filter-drawer__close:focus-visible {
  border-color: #b9c5d6;
  background: #f2f5f9;
  color: #182235;
  outline: 0;
}
.jp-listing-page .wi-filter-drawer__body {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 6px 18px 24px;
  background: #fbfcfe;
  scrollbar-color: #c5cfde transparent;
}
.jp-listing-page .wi-filter-drawer__body form {
  display: block;
}
.jp-listing-page .wi-filter-group {
  padding: 18px 0;
  border-bottom: 1px solid #e7ebf1;
}
.jp-listing-page .wi-filter-group:last-child {
  border-bottom: 0;
}
.jp-listing-page .wi-filter-group__label {
  margin-bottom: 10px;
  color: #29364b;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.jp-listing-page .wi-filter-checkboxes {
  display: grid;
  gap: 3px;
}
.jp-listing-page .wi-filter-checkboxes label {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #39465a;
  font-size: 13px;
  line-height: 1.25;
  cursor: pointer;
  transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.jp-listing-page .wi-filter-checkboxes label:hover {
  border-color: #dce5f3;
  background: #f2f6fc;
  color: #182235;
}
.jp-listing-page .wi-filter-checkboxes input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: #3d7cff;
}
.jp-listing-page .wi-filter-count {
  min-width: 22px;
  margin-left: auto;
  padding: 2px 6px;
  border-radius: 99px;
  background: #edf1f6;
  color: #7b8799;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}
.jp-listing-page .wi-filter-select {
  width: 100%;
  min-height: 42px;
  padding: 0 34px 0 11px;
  border: 1px solid #d8e0eb;
  border-radius: 7px;
  background: #fff;
  color: #263449;
  font-size: 13px;
  outline: 0;
}
.jp-listing-page .wi-filter-select:focus {
  border-color: #3d7cff;
  box-shadow: 0 0 0 3px rgba(61,124,255,.13);
}
.jp-listing-page .wi-filter-drawer .wi-split__loc-btn {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 12px !important;
  border: 1px solid #cddbf1 !important;
  border-radius: 7px !important;
  background: #f0f5ff !important;
  color: #2e5fac !important;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.jp-listing-page .wi-filter-drawer .wi-split__loc-btn:hover {
  border-color: #8fb5ff !important;
  background: #e3edff !important;
}
.jp-listing-page .wi-filter-drawer .wi-split__loc-btn:disabled {
  opacity: .65;
  cursor: wait;
}
.jp-listing-page #jp-location-hint {
  color: #78869a;
}
.jp-listing-page .wi-filter-drawer__footer {
  display: flex;
  gap: 9px;
  padding: 12px 18px;
  border-top: 1px solid #e1e6ee;
  background: #fff;
}
.jp-listing-page .wi-filter-drawer__footer .jp-btn {
  min-height: 42px;
  flex: 1 1 0;
  justify-content: center;
  border-radius: 7px;
  font-size: 13px;
}
.jp-listing-page .wi-filter-drawer__footer .jp-btn--outline {
  border-color: #d5dce6;
  background: #fff;
  color: #39465a;
}
.jp-listing-page .wi-filter-drawer__footer .jp-btn--primary {
  border-color: #3d7cff;
  background: #3d7cff;
  color: #fff;
  box-shadow: 0 5px 12px rgba(61,124,255,.18);
}
.jp-listing-page .wi-filter-drawer__footer .jp-btn--primary:hover {
  background: #2f68df;
}
.jp-listing-page .wi-split__list-header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.jp-listing-page .wi-split__list-header > div {
  min-width: 0;
}
.jp-listing-page .wi-split__filter-btn {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  cursor: pointer;
}
.jp-listing-page .wi-split__filter-btn[aria-expanded="true"] {
  border-color: #3d7cff !important;
  background: #edf3ff !important;
  color: #2e5fac !important;
}
@media (max-width: 900px) {
  .jp-listing-page .wi-filter-drawer {
    width: min(100vw, 430px);
    border-right: 0;
  }
  .jp-listing-page .wi-filter-drawer__header {
    min-height: 60px;
    padding-right: 14px;
    padding-left: 14px;
  }
  .jp-listing-page .wi-filter-drawer__body {
    padding-right: 14px;
    padding-left: 14px;
  }
  .jp-listing-page .wi-filter-drawer__footer {
    padding-right: 14px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    padding-left: 14px;
  }
  .jp-listing-page .wi-split__list-header {
    align-items: flex-start;
    padding: 8px 12px;
  }
  .jp-listing-page .wi-split__list-header > div {
    overflow-x: auto;
    padding-bottom: 2px;
  }
}
@media (max-width: 560px) {
  .jp-listing-page .wi-filter-drawer__header {
    min-height: 56px;
  }
  .jp-listing-page .wi-filter-drawer__title {
    font-size: 17px;
  }
  .jp-listing-page .wi-filter-group {
    padding: 15px 0;
  }
  .jp-listing-page .wi-filter-checkboxes label {
    min-height: 42px;
  }
  .jp-listing-page .wi-filter-drawer__footer .jp-btn {
    min-height: 44px;
  }
}

/* Compact listing controls: count and match action stay fixed while only the
 * filter-chip rail scrolls horizontally. */
.jp-listing-page .wi-split__list-header {
  display: flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-bottom: 1px solid #e5e9ef;
  background: #fff;
}
.jp-listing-page .wi-split__list-summary {
  display: flex;
  min-width: max-content !important;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  overflow: visible !important;
  padding-bottom: 0 !important;
  white-space: nowrap;
}
.jp-listing-page .wi-split__list-count {
  color: #1d293b;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.jp-listing-page .wi-split__matches-btn {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #c9daf8;
  border-radius: 5px;
  background: #f2f6ff;
  color: #2f64bf !important;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.jp-listing-page .wi-split__matches-btn:hover,
.jp-listing-page .wi-split__matches-btn:focus-visible {
  border-color: #8fb5ff;
  background: #e3edff;
  color: #204b98 !important;
  outline: 0;
}
.jp-listing-page .wi-split__list-controls {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}
.jp-listing-page .wi-split__filter-btn {
  display: inline-flex;
  min-height: 28px;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid #d8e0eb !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: #435168 !important;
  font-size: 11px !important;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}
.jp-listing-page .wi-split__filter-btn:hover,
.jp-listing-page .wi-split__filter-btn:focus-visible,
.jp-listing-page .wi-split__filter-btn[aria-expanded="true"] {
  border-color: #a9c4f4 !important;
  background: #f1f5fd !important;
  color: #2f64bf !important;
  outline: 0;
}
.jp-listing-page .wi-split__filter-count {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #3d7cff;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}
.jp-listing-page .wi-split__filter-tags {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1px 0 3px;
  scrollbar-color: #c6d0df transparent;
  scrollbar-width: thin;
  white-space: nowrap;
}
.jp-listing-page .wi-split__filter-tags::-webkit-scrollbar {
  height: 3px;
}
.jp-listing-page .wi-split__filter-tags::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #c6d0df;
}
.jp-listing-page .wi-split__filter-tags > .wi-split__chip {
  display: inline-flex;
  min-height: 26px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 7px;
  border-radius: 5px !important;
  font-size: 10px !important;
  white-space: nowrap;
}
.jp-listing-page .wi-split__filter-tags > .wi-split__chip.is-active {
  border-color: #b8cdf1 !important;
  background: #eef4ff !important;
  color: #2f5fae !important;
}
.jp-listing-page .wi-split__filter-tags > .wi-split__chip a {
  color: inherit !important;
}
@media (max-width: 900px) {
  .jp-listing-page .wi-split__list-header {
    min-height: 38px;
    gap: 6px;
    padding: 4px 8px;
  }
  .jp-listing-page .wi-split__list-summary { gap: 5px; }
  .jp-listing-page .wi-split__list-count { font-size: 12px; }
  .jp-listing-page .wi-split__matches-btn {
    min-height: 25px;
    padding: 0 6px;
    font-size: 9px;
  }
  .jp-listing-page .wi-split__list-controls { gap: 4px; }
}

/* Compact job browser header. It follows the site's existing white surfaces,
 * type scale, border radius, and blue accent instead of behaving like a
 * separate oversized marketing hero. */
.jp-home-v4 .wi-listing-utility,
.jp-listing-page .wi-listing-utility {
  display: block !important;
}
.jp-listing-page .wi-listing-utility.is-scroll-hidden {
  display: none !important;
}
.jp-listing-page .wi-listing-utility.is-search-open,
.jp-listing-page .wi-listing-utility.is-location-open {
  display: none !important;
}
.jp-home-v4 .wi-split__list-header,
.jp-listing-page .wi-split__filter-btn--legacy {
  display: none !important;
}
.jp-job-browser-hero {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  padding: 18px 16px 13px;
  border-bottom: 1px solid #e4e7ec;
  background: #fff;
  transition: padding .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.jp-job-browser-hero__top,
.jp-job-browser-search,
.jp-job-browser-chips,
.jp-job-browser-results-heading {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}
.jp-job-browser-hero__top {
  display: flex;
  max-height: 120px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .24s ease, opacity .18s ease, transform .24s ease, gap .24s ease;
}
.jp-job-browser-hero__copy h1 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.jp-job-browser-hero__copy h1 span {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  color: var(--jp-blue, #3b3dbf);
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
.jp-job-browser-hero__copy p {
  max-width: 420px;
  margin: 6px 0 0;
  color: #686f7b;
  font-size: 14px;
  line-height: 1.35;
}
.jp-job-browser-hero__notification {
  position: relative;
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe3e9;
  border-radius: 50%;
  background: #fff;
  color: #525b69 !important;
  font-size: 17px;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.jp-job-browser-hero__notification:hover,
.jp-job-browser-hero__notification:focus-visible {
  border-color: var(--jp-blue, #3b3dbf);
  background: var(--jp-blue-light, #eeeeff);
  color: var(--jp-blue, #3b3dbf) !important;
}
.jp-job-browser-hero__badge,
.jp-job-browser-search__filter-count {
  position: absolute;
  display: inline-flex;
  min-width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 99px;
  background: #d92d3f;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}
.jp-job-browser-hero__badge { top: -5px; right: -4px; }
.jp-job-browser-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: margin-top .2s ease;
}
.jp-job-browser-search__brand {
  display: none;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f4f6fa;
}
.jp-job-browser-search__brand img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.jp-job-browser-search__field {
  display: flex;
  min-width: 0;
  min-height: 48px;
  flex: 1 1 auto;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #d9dee6;
  border-radius: 8px;
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.jp-job-browser-search__field:focus-within {
  border-color: var(--jp-blue, #3b3dbf);
  box-shadow: 0 0 0 2px rgba(59,61,191,.1);
}
.jp-job-browser-search__actions {
  display: none;
  position: relative;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
}
.jp-job-browser-search__actions.is-account-open {
  display: flex;
}
.jp-job-browser-search__action {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #d9dee6;
  border-radius: 7px;
  background: #fff;
  color: #566171;
  cursor: pointer;
}
.jp-job-browser-search__action:hover,
.jp-job-browser-search__action:focus-visible {
  border-color: var(--jp-blue, #3b3dbf);
  background: var(--jp-blue-light, #eeeeff);
  color: var(--jp-blue, #3b3dbf);
}
.jp-job-browser-search__field > i {
  flex: 0 0 auto;
  color: #7a8493;
  font-size: 15px;
}
.jp-job-browser-search__field input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #1f2733;
  font-size: 14px !important;
}
.jp-job-browser-search__field input::placeholder { color: #8b93a0; }
.jp-job-browser-search__filter {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9dee6;
  border-radius: 8px;
  background: #fff;
  color: #566171 !important;
  font-size: 16px;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.jp-job-browser-search__filter:hover,
.jp-job-browser-search__filter:focus-visible,
.jp-job-browser-search__filter[aria-expanded="true"] {
  border-color: var(--jp-blue, #3b3dbf);
  background: var(--jp-blue, #3b3dbf);
  color: #fff !important;
}
.jp-job-browser-search__filter-count { top: -7px; right: -7px; }
.jp-job-browser-chips {
  display: flex;
  gap: 7px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 1px 1px 2px;
  scrollbar-width: none;
}
.jp-job-browser-chips::-webkit-scrollbar { display: none; }
.jp-job-browser-chip {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid #dfe3e9;
  border-radius: 7px;
  background: #fff;
  color: #4c5664 !important;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}
.jp-job-browser-chip > i { color: #707a88; font-size: 13px; }
.jp-job-browser-chip:hover,
.jp-job-browser-chip:focus-visible {
  border-color: var(--jp-blue, #3b3dbf);
  color: var(--jp-blue, #3b3dbf) !important;
}
.jp-job-browser-chip.is-active {
  border-color: var(--jp-blue, #3b3dbf);
  background: var(--jp-blue, #3b3dbf);
  color: #fff !important;
}
.jp-job-browser-chip.is-active > i { color: #fff; }
.jp-job-browser-results-heading {
  display: flex;
  max-height: 45px;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height .24s ease, margin-top .24s ease, opacity .18s ease, transform .24s ease;
}
.jp-job-browser-results-heading h2 {
  margin: 0;
  color: #161b23;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.025em;
}
.jp-job-browser-results-heading a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--jp-blue, #3b3dbf) !important;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.jp-job-browser-results-heading a > i { font-size: 10px; }

/* Once the feed starts moving, replace the tall intro with a small reading
 * toolbar. The logo icon and action controls stay in a compact row while the
 * full utility bar is hidden. Keep the intro in the layout so scrolling never jumps. */
.jp-job-browser-hero.is-scrolled {
  position: relative;
  padding-top: 9px;
  padding-bottom: 8px;
  border-bottom-color: #dfe4eb;
  box-shadow: 0 3px 12px rgba(23, 33, 49, .07);
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-hero__top,
.jp-job-browser-hero.is-scrolled .jp-job-browser-results-heading {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-search {
  margin-top: 0;
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-search__brand {
  display: inline-flex;
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-search__field {
  display: none;
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-search__actions {
  display: flex;
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-search__filter {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 7px;
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-chips {
  gap: 6px;
  margin-top: 7px;
  padding-bottom: 1px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-chip {
  min-height: 31px;
  padding-right: 11px;
  padding-left: 11px;
  font-size: 12px;
}
.jp-job-browser-hero.is-scrolled .jp-job-browser-chip > i {
  font-size: 12px;
}

/* Search and location are an in-place browser-row state. Nothing else in the
 * hero remains clickable or visible until the panel is closed. */
.jp-job-browser-hero.is-search-open,
.jp-job-browser-hero.is-location-open {
  padding-top: 9px;
  padding-bottom: 8px;
}
.jp-job-browser-hero.is-search-open .jp-job-browser-hero__top,
.jp-job-browser-hero.is-search-open .jp-job-browser-chips,
.jp-job-browser-hero.is-search-open .jp-job-browser-results-heading,
.jp-job-browser-hero.is-location-open .jp-job-browser-hero__top,
.jp-job-browser-hero.is-location-open .jp-job-browser-chips,
.jp-job-browser-hero.is-location-open .jp-job-browser-results-heading {
  display: none !important;
}
.jp-job-browser-hero > .jp-job-browser-search__inline-control {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  width: 0;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: width .3s cubic-bezier(.2,.75,.2,1);
}
.jp-job-browser-hero.is-search-open > .jp-job-browser-search__inline-control,
.jp-job-browser-hero.is-location-open > .jp-job-browser-search__inline-control {
  width: 100%;
}

.jp-job-browser-search__account-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
}

/* Keep the job feed readable without changing its card design. */
.jp-job-card__company,
.jp-job-card__salary-line {
  font-size: 15px !important;
}
.jp-job-card__meta-row {
  font-size: 14px !important;
  line-height: 1.3 !important;
}
.jp-job-tag {
  padding: 4px 8px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}
.jp-job-card__tags { gap: 6px !important; }
.jp-listing-page .wi-split__left-scroll,
.jp-home-v4 .wi-split__left-scroll {
  scrollbar-gutter: stable;
}
@media (max-width: 900px) {
  html, body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  .jp-site-content, .jp-main, .wi-split-page,
  .wi-split-page .wi-split__left, .wi-split-page .wi-split__left-scroll {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .wi-split-page { display: block; height: auto; min-height: 0; }
  .wi-split-page .wi-split__left {
    display: block;
    position: static;
    height: auto;
  }
  /* On phones the document, rather than the split pane, owns scrolling.
   * Keeping the hero sticky below the public header makes it reliable on
   * Safari and Chrome mobile, while the split-page boundary naturally
   * releases it before the footer. */
  .jp-job-browser-hero {
    position: sticky;
    top: 0;
    z-index: 30;
    isolation: isolate;
  }
  .jp-job-browser-hero::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 12px;
    background: linear-gradient(to bottom, rgba(23, 33, 49, .08), transparent);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
  }
  .jp-job-browser-hero.is-scrolled::after { opacity: 1; }
  .jp-footer { position: relative; z-index: 40; }
}
@media (min-width: 901px) {
  /* Desktop starts as a centered list. Detail is a full-screen sheet opened
   * by selecting a card, matching the mobile interaction instead of showing a
   * second column before the user asks for it. */
  .wi-split-page:not(.is-detail-open) .wi-split__left {
    width: min(100%, 760px);
    flex: 0 1 760px;
    margin-right: auto;
    margin-left: auto;
    border-right: 1px solid #e4e7ec;
    border-left: 1px solid #e4e7ec;
  }
  .wi-split-page .wi-split__right {
    position: fixed;
    inset: 0;
    right: auto;
    left: 50%;
    z-index: 1000;
    width: min(100vw, 760px);
    height: 100dvh;
    flex: none;
    border: 1px solid #e4e7ec;
    transform: translateX(100%);
    overflow-y: auto;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s cubic-bezier(.2,.7,.2,1), visibility 0s linear .28s;
  }
  .wi-split-page.is-detail-closing .wi-split__right {
    transition: none !important;
    transform: translateX(100%) !important;
    visibility: hidden !important;
  }
  .wi-split-page.is-detail-open .wi-split__left {
    width: 100%;
    flex: 1 1 100%;
    border-right: 0;
    border-left: 0;
    opacity: 0;
    transform: translateX(-4%);
    pointer-events: none;
  }
  .wi-split-page.is-detail-loading .wi-split__left {
    transition: none !important;
    transform: none;
  }
  .wi-split-page.is-detail-open .wi-split__right {
    width: min(100vw, 760px);
    transform: translateX(-50%);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .wi-split-page.is-detail-loading .wi-split__right {
    transform: translateX(-50%);
    transition: none !important;
  }
  .wi-split-page .jp-mobile-detail-back {
    position: sticky;
    top: 10px;
    left: 12px;
    margin: 10px 12px -42px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,.12);
  }
}
@media (max-width: 560px) {
  .jp-job-browser-hero { padding: 16px 12px 11px; }
  .jp-job-browser-hero__copy h1 { font-size: 25px; }
  .jp-job-browser-hero__copy p { max-width: 275px; font-size: 13px; }
  .jp-job-browser-hero__notification { width: 34px; height: 34px; flex-basis: 34px; }
  .jp-job-browser-search { margin-top: 14px; gap: 7px; }
  .jp-job-browser-search__field { min-height: 44px; padding: 0 12px; border-radius: 7px; }
  .jp-job-browser-search__field input { height: 42px; font-size: 13px !important; }
  .jp-job-browser-search__filter { width: 44px; height: 44px; flex-basis: 44px; border-radius: 7px; }
  .jp-job-browser-chips { margin-top: 10px; gap: 6px; }
  .jp-job-browser-chip { min-height: 34px; padding: 0 11px; font-size: 12px; }
  .jp-job-browser-results-heading { margin-top: 13px; }
  .jp-job-browser-results-heading h2 { font-size: 17px; }
  .jp-job-browser-results-heading a { font-size: 12px; }
  .jp-job-browser-hero.is-scrolled { padding: 7px 10px 7px; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-search { gap: 6px; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-search__brand { width: 30px; height: 30px; flex-basis: 30px; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-search__brand img { width: 23px; height: 23px; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-search__field { min-height: 38px; padding: 0 10px; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-search__field input { height: 36px; font-size: 12px !important; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-search__filter { width: 38px; height: 38px; flex-basis: 38px; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-chips { margin-top: 6px; }
  .jp-job-browser-hero.is-scrolled .jp-job-browser-chip { min-height: 29px; padding: 0 10px; font-size: 11px; }
  .jp-loading--detail { padding-right: 14px; padding-left: 14px; }
  #jp-detail-panel .jp-detail__header-copy { padding-top: 14px; padding-bottom: 14px; }
  #jp-detail-panel .jp-detail__title { font-size: 24px; }
  #jp-detail-panel .jp-detail-info-row { grid-template-columns: max-content minmax(0, 1fr); gap: 8px; }
  #jp-detail-panel .jp-role-grid,
  #jp-detail-panel .jp-highlights-grid { grid-template-columns: 1fr; }
  .jp-job-card__company,
  .jp-job-card__salary-line { font-size: 14px !important; }
  .jp-job-card__meta-row { font-size: 13px !important; }
  .jp-job-tag { font-size: 12px !important; }
}

@media (max-width: 700px) {
  .jp-detail-page {
    min-height: 100vh;
    padding: 10px 10px 52px !important;
  }
  .jp-detail-page .jp-single-job-outer,
  .jp-detail-page .jp-single-job-main { width: 100%; }
  .jp-detail-card { border-radius: 12px !important; }
  .jp-detail-page .jp-detail-topbar { padding: 8px 12px; }
  .jp-detail-page .jp-detail-browse-home { font-size: 12px; }
  .jp-detail-page .jp-detail-hero { gap: 12px; padding: 22px 16px 18px; }
  .jp-detail-page .jp-detail-brand-mark { width: 46px; height: 46px; flex-basis: 46px; font-size: 20px; }
  .jp-detail-page .jp-detail-heading h1 { font-size: 28px; }
  .jp-detail-page .jp-detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 16px;
  }
  .jp-detail-page .jp-detail-facts > div,
  .jp-detail-page .jp-detail-facts > div + div {
    padding: 11px 8px 11px 0;
    border-left: 0;
  }
  .jp-detail-page .jp-detail-facts > div:nth-child(even) {
    padding-left: 8px;
    border-left: 0;
  }
  .jp-detail-page .jp-detail-facts > div:nth-child(n + 3) { border-top: 0; }
  .jp-detail-page .jp-detail-tags { padding: 15px 16px 2px; }
  .jp-detail-page .jp-apply-box { margin: 15px 16px 0; padding: 13px; }
  .jp-detail-page .jp-apply-box__facts { gap: 11px; }
  .jp-detail-page .jp-apply-box__facts > div { min-width: 0; flex: 1 1 42%; }
  .jp-detail-page .jp-detail-section {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    margin: 0 16px;
    padding: 21px 0;
  }
  .jp-detail-page .jp-detail-section:first-of-type { margin-top: 16px; }
  .jp-detail-page .jp-detail-section__icon { width: 30px; height: 30px; }
  .jp-detail-page .jp-detail-section__body h2 { font-size: 17px; }
  .jp-detail-page .jp-detail-richtext { font-size: 14px; line-height: 1.58; }
  .jp-detail-page .jp-detail-company {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .jp-detail-page .jp-detail-company__facts,
  .jp-detail-page .jp-detail-contact { min-width: 0; }
  .jp-detail-page .jp-detail-contact { grid-column: auto; }
  .jp-detail-page .jp-job-apply-cta { width: 100%; margin-top: 10px; }
}

/* Homepage discovery surfaces */
.jp-home-listing-only .wi-listing-suggestion-view {
  display: block;
  min-height: 0;
  flex: 0 0 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: flex-basis .28s ease, max-height .28s ease, padding .28s ease, opacity .2s ease, transform .28s ease;
}
.jp-home-listing-only .wi-split__left.is-showing-suggestions > .wi-listing-suggestion-view {
  flex: 1 1 auto;
  max-height: 5000px;
  overflow-y: auto;
  padding-top: 28px;
  padding-bottom: 32px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.jp-home-listing-only .wi-split__left.is-showing-suggestions > .wi-listing-results {
  flex: 0 0 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
/* The homepage shares the archive controls, but keeps them available for
 * the location card and the "Add another city" action. */
.jp-home-listing-only .wi-listing-utility {
  display: block !important;
}
.wi-listing-suggestion-view [data-suggestion-heading="search"],
.wi-listing-suggestion-view[data-mode="location"] .wi-listing-suggestions[data-suggestion-mode="search"],
.wi-listing-suggestion-view[data-mode="search"] [data-suggestion-heading="location"],
.wi-listing-suggestion-view[data-mode="search"] .wi-listing-location-card,
.wi-listing-suggestion-view[data-mode="search"] .wi-listing-location-card__hint,
.wi-listing-suggestion-view[data-mode="location"] [data-suggestion-heading="search"],
.wi-listing-suggestion-view[data-mode="location"] .wi-listing-suggestions[data-suggestion-mode="search"] {
  display: none;
}
.wi-listing-suggestion-view [data-suggestion-heading] { display: none; }
.wi-listing-suggestion-view[data-mode="location"] [data-suggestion-heading="location"],
.wi-listing-suggestion-view[data-mode="search"] [data-suggestion-heading="search"] { display: block; }
.wi-listing-location-card {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fafafa;
}
.wi-listing-location-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 18px;
}
.wi-listing-location-card__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}
.wi-listing-location-card__copy strong {
  color: #111;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.wi-listing-location-card__copy span {
  overflow-wrap: anywhere;
  color: #666;
  font-size: 13px;
}
.wi-listing-location-card__change {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
  padding: 0 10px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.wi-listing-location-card__change:hover,
.wi-listing-location-card__change:focus-visible {
  border-color: #111;
  background: #111;
  color: #fff;
}
.wi-listing-location-card__hint {
  margin: 10px 0 0;
  color: #777;
  font-size: 12px;
}

body.jp-listing-browser-body {
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

.jp-home-discovery {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 6px 16px 40px;
  background: #fff;
}
.jp-home-discovery__section {
  padding: 26px 0 0;
  border-top: 1px solid #e8e8e8;
}
.jp-home-discovery__section + .jp-home-discovery__section { margin-top: 28px; }
.jp-home-discovery__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.jp-home-discovery__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #888;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.jp-home-discovery__heading h2 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.035em;
}
.jp-home-discovery__text-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.jp-home-discovery__text-btn:hover,
.jp-home-discovery__text-btn.is-open { border-color: #111; background: #111; color: #fff; }
.jp-home-discovery__text-btn.is-open i { transform: rotate(180deg); }
.jp-home-discovery__text-btn i { transition: transform .18s ease; }
.jp-home-city-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 10px;
}
.jp-home-city-card,
.jp-home-city-add {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fafafa;
  color: #111;
  text-align: left;
  text-decoration: none;
}
.jp-home-city-card:hover,
.jp-home-city-add:hover { border-color: #111; background: #fff; }
.jp-home-city-card__icon,
.jp-home-city-add > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 9px;
  background: #111;
  color: #fff;
}
.jp-home-city-add > span { background: #ededed; color: #333; }
.jp-home-city-card__copy {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 2px;
}
.jp-home-city-card__state {
  color: #777;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.jp-home-city-card__copy strong {
  overflow-wrap: anywhere;
  font-size: 16px;
  font-weight: 850;
}
.jp-home-city-card__copy small,
.jp-home-city-add small {
  color: #777;
  font-size: 11px;
}
.jp-home-city-add {
  flex-wrap: wrap;
  align-content: center;
  gap: 3px 9px;
  cursor: pointer;
}
.jp-home-city-add strong,
.jp-home-city-add small { width: calc(100% - 45px); }
.jp-home-city-add > span { float: left; }
.jp-home-city-card__arrow { margin-left: auto; color: #777; font-size: 12px; }
.jp-home-category-grid,
.jp-home-category-more {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.jp-home-category-more {
  margin-top: 9px;
}
.jp-home-category-card {
  display: grid;
  min-width: 0;
  min-height: 86px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 10px 7px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fff;
  color: #222;
  text-align: center;
  text-decoration: none;
}
.jp-home-category-card:hover { border-color: #111; background: #fafafa; }
.jp-home-category-card__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: #f0f0f0;
  color: #333;
}
.jp-home-category-card strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .jp-home-listing-only .wi-listing-suggestion-view { padding-right: 14px; padding-left: 14px; }
  .jp-home-discovery { padding-right: 12px; padding-left: 12px; }
  .jp-home-discovery__heading { align-items: flex-start; }
  .jp-home-discovery__heading h2 { font-size: 18px; }
  .jp-home-city-grid { grid-template-columns: 1fr; }
  .jp-home-category-grid,
  .jp-home-category-more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Shared control sizing: hero, compact utility, and mobile controls use one rhythm. */
.jp-job-browser-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}
.jp-job-browser-search__field,
.jp-job-browser-search__actions {
  min-height: 48px;
  height: 48px;
  box-sizing: border-box;
}
.jp-job-browser-search__field {
  min-width: 0;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #fff;
}
.jp-job-browser-search__field input {
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
}
.jp-job-browser-search__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.jp-job-browser-search__action,
.jp-job-browser-search__filter {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box;
}

.jp-listing-page .wi-listing-utility__inline-panel {
  gap: 8px;
  padding: 4px 8px;
}
.jp-listing-page .wi-listing-utility__inline-field,
.jp-listing-page .wi-listing-utility__search-panel .wi-split__search-input,
.jp-listing-page .wi-listing-utility__location-panel #jp-listing-location {
  height: 42px;
  min-height: 42px;
  box-sizing: border-box;
}
.jp-listing-page .wi-listing-utility__search-panel .wi-split__search-btn,
.jp-listing-page .wi-listing-utility__location-submit,
.jp-listing-page .wi-listing-utility__inline-close {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  box-sizing: border-box;
}
.jp-listing-page .wi-listing-utility__location-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
}
.jp-listing-page .wi-listing-utility__location-form {
  gap: 8px;
}
.jp-listing-page .wi-listing-utility__use-location {
  min-height: 42px;
  height: 42px;
  box-sizing: border-box;
  margin: 0;
}

/* Quick detail: a compact app-like reading column without nested whitespace. */
#jp-detail-panel .jp-detail__header,
#jp-detail-panel .jp-detail-section,
#jp-detail-panel .jp-highlights-section {
  padding: 14px 18px !important;
}
#jp-detail-panel .jp-detail__header-copy {
  padding-top: 52px;
  padding-bottom: 13px;
}
#jp-detail-panel .jp-detail__company { margin-bottom: 5px; }
#jp-detail-panel .jp-detail__salary-band { margin-bottom: 5px; }
#jp-detail-panel .jp-detail__tags-row { margin-top: 9px; }
#jp-detail-panel .jp-detail__action-icons {
  gap: 8px;
  padding: 10px 0 12px;
}
#jp-detail-panel .jp-section-title {
  margin-bottom: 8px;
  padding-top: 12px;
}
#jp-detail-panel .jp-detail-info-list {
  padding-top: 9px;
  padding-bottom: 1px;
}
#jp-detail-panel .jp-detail-info-row { padding: 6px 0; }
#jp-detail-panel .jp-role-grid,
#jp-detail-panel .jp-highlights-grid { gap: 7px; }
#jp-detail-panel .jp-role-item { min-height: 60px; padding: 9px; }
#jp-detail-panel .jp-highlight-card { min-height: 42px; padding: 8px; }
#jp-detail-panel .jp-detail-company { padding: 13px 15px; }
#jp-detail-panel .jp-detail-footer-links { padding: 14px 0 18px; }

/* Notification center. */
.jp-notifications-page-body .jp-page-content {
  width: min(100% - 32px, 760px);
  max-width: 760px;
  margin: 0 auto;
}
.jp-notifications-page {
  width: 100%;
  margin: 24px auto 48px;
  padding: 22px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 25, 35, .05);
}
.jp-notifications-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ededed;
}
.jp-notifications-page__header h1 { margin: 0 0 5px; color: #111; font-size: 26px; line-height: 1.1; }
.jp-notifications-page__header p { margin: 0; color: #666; font-size: 14px; }
.jp-notifications-page__eyebrow { margin: 0 0 7px !important; color: #777 !important; font-size: 11px !important; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.jp-notifications-page__header .jp-btn { min-height: 38px; white-space: nowrap; }
.jp-notifications-list { display: grid; }
.jp-notification-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 8px;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #ededed;
  color: #222;
  text-decoration: none;
}
.jp-notification-item:last-child { border-bottom: 0; }
.jp-notification-item:hover { background: #fafafa; }
.jp-notification-item__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #f1f1f1;
  color: #444;
}
.jp-notification-item__copy { display: grid; gap: 4px; min-width: 0; }
.jp-notification-item__copy strong { color: #111; font-size: 14px; }
.jp-notification-item__copy span { color: #555; font-size: 13px; line-height: 1.4; }
.jp-notification-item__copy small { color: #888; font-size: 11px; }
.jp-notification-item.is-unread .jp-notification-item__icon { background: #111; color: #fff; }
.jp-notification-item__dot { width: 7px; height: 7px; margin-top: 7px; border-radius: 50%; background: #111; }
.jp-notifications-empty { padding: 42px 12px 24px; text-align: center; }
.jp-notifications-empty__icon { display: grid; width: 48px; height: 48px; margin: 0 auto 13px; place-items: center; border-radius: 50%; background: #f1f1f1; color: #555; }
.jp-notifications-empty h2 { margin: 0 0 5px; font-size: 18px; }
.jp-notifications-empty p { margin: 0; color: #777; font-size: 13px; }

@media (max-width: 560px) {
  .jp-job-browser-search { grid-template-columns: auto minmax(0, 1fr); }
  .jp-job-browser-search__actions { grid-column: 1 / -1; width: 100%; height: 42px; min-height: 42px; }
  .jp-job-browser-search__action,
  .jp-job-browser-search__filter { width: 42px; height: 42px; min-width: 42px; min-height: 42px; }
  .jp-listing-page .wi-listing-utility__location-panel { align-items: stretch; flex-wrap: wrap; }
  .jp-listing-page .wi-listing-utility__location-form { width: 100%; flex-basis: 100%; }
  .jp-listing-page .wi-listing-utility__use-location { flex: 1 1 auto; }
  .jp-notifications-page-body .jp-page-content { width: 100%; }
  .jp-notifications-page { margin: 12px 0 30px; padding: 16px 14px; border-right: 0; border-left: 0; border-radius: 0; }
  .jp-notifications-page__header { align-items: stretch; flex-direction: column; gap: 14px; }
  .jp-notifications-page__header .jp-btn { width: 100%; }
}

/* Dashboard shell alignment: the topbar owns the page width, while the
 * drawer and readable content sit beneath it on the same centered surface. */
body.jp-dashboard-page .jp-dashboard {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  overflow: visible;
  border: 1px solid #e1e7f0;
  border-top: 0;
  background: #f7f9fc;
}
body.jp-dashboard-page .jp-dashboard__topbar {
  min-height: 58px;
  padding: 7px 16px;
  border-bottom: 1px solid #e1e7f0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31,65,114,.05);
}
body.jp-dashboard-page .jp-dashboard__brand img {
  width: auto;
  max-width: min(150px, 42vw);
  height: 34px;
  object-fit: contain;
}
body.jp-dashboard-page .jp-dashboard__topbar-link,
body.jp-dashboard-page .jp-dashboard__mobile-toggle {
  border-color: #dfe6ef;
  background: #fff !important;
  color: #26364b !important;
}
body.jp-dashboard-page .jp-dashboard__topbar-link i,
body.jp-dashboard-page .jp-dashboard__mobile-toggle i {
  color: #566b84;
}
body.jp-dashboard-page .jp-dashboard__topbar-link:hover,
body.jp-dashboard-page .jp-dashboard__topbar-link:focus-visible,
body.jp-dashboard-page .jp-dashboard__mobile-toggle:hover,
body.jp-dashboard-page .jp-dashboard__mobile-toggle:focus-visible {
  border-color: #c7ddfb;
  background: #f1f6fd !important;
  color: #1f65d6 !important;
}
body.jp-dashboard-page .jp-dashboard__main {
  width: 100%;
  padding: 26px 22px 42px !important;
  background: #f7f9fc;
}
body.jp-dashboard-page .jp-dashboard__header {
  min-height: 54px;
  margin-bottom: 20px;
}
body.jp-dashboard-page .jp-dashboard__title {
  color: #172a43;
  font-size: clamp(27px, 4vw, 36px);
  line-height: 1.05;
}
body.jp-dashboard-page .jp-dashboard__subtitle { color: #718096; }
body.jp-dashboard-page .jp-dashboard__quick-links { top: 20px; right: 22px; }
body.jp-dashboard-page .jp-dashboard__quick-links .jp-header-icon-link {
  width: 36px;
  height: 36px;
  border: 1px solid #dfe6ef;
  border-radius: 9px;
  background: #fff;
  color: #566b84;
}
body.jp-dashboard-page .jp-dashboard__quick-links .jp-header-icon-link:hover {
  border-color: #c7ddfb;
  background: #f1f6fd;
  color: #1f65d6;
}
body.jp-dashboard-page .jp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}
body.jp-dashboard-page .jp-stat-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 15px;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(33,61,96,.04);
}
body.jp-dashboard-page .jp-stat-card__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #edf5ff;
  color: #2f6fc9;
}
body.jp-dashboard-page .jp-stat-card__icon--orange { background: #fff3e5; color: #c97916; }
body.jp-dashboard-page .jp-stat-card__icon--green { background: #e9f8f0; color: #258457; }
body.jp-dashboard-page .jp-stat-card__icon--purple { background: #f1ecff; color: #7357bb; }
body.jp-dashboard-page .jp-stat-card__value { color: #172a43; font-size: 28px; }
body.jp-dashboard-page .jp-stat-card__label { color: #718096; line-height: 1.25; }
body.jp-dashboard-page .jp-panel {
  margin-top: 18px;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(33,61,96,.04);
}
body.jp-dashboard-page .jp-panel__header { min-height: 52px; padding: 13px 16px; border-bottom-color: #e9eef5; }
body.jp-dashboard-page .jp-panel__body { padding: 16px; }
body.jp-dashboard-page .jp-table th { background: #f7f9fc; }
body.jp-dashboard-page .jp-dashboard__sidebar {
  background: #fff !important;
  border-right-color: #e1e7f0 !important;
}

@media (max-width: 700px) {
  body.jp-dashboard-page .jp-dashboard__main { padding: 22px 14px 36px !important; }
  body.jp-dashboard-page .jp-dashboard__quick-links { top: 16px; right: 14px; }
  body.jp-dashboard-page .jp-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  body.jp-dashboard-page .jp-dashboard { border-right: 0; border-left: 0; }
  body.jp-dashboard-page .jp-dashboard__topbar { min-height: 56px; padding: 7px 12px; }
  body.jp-dashboard-page .jp-dashboard__brand img { max-width: 132px; height: 32px; }
  body.jp-dashboard-page .jp-dashboard__main { padding: 18px 12px 32px !important; }
  body.jp-dashboard-page .jp-dashboard__header { margin-bottom: 16px; }
  body.jp-dashboard-page .jp-dashboard__title { font-size: clamp(25px, 8vw, 32px); }
  body.jp-dashboard-page .jp-stat-card { grid-template-columns: 32px minmax(0, 1fr); gap: 8px; padding: 12px; }
  body.jp-dashboard-page .jp-stat-card__icon { width: 32px; height: 32px; border-radius: 8px; }
  body.jp-dashboard-page .jp-stat-card__value { font-size: 24px; }
  body.jp-dashboard-page .jp-stat-card__label { font-size: 11px; }
}

/* Dashboard cleanup pass: remove the legacy theme offset so the shared
 * topbar starts at the top of the dashboard surface. */
body.jp-dashboard-page .jp-dashboard {
  padding: 0 !important;
}
body.jp-dashboard-page .jp-dashboard__main {
  padding-top: 18px !important;
}
body.jp-dashboard-page .jp-dashboard__header .jp-dashboard__header-action {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}
body.jp-dashboard-page .jp-dashboard__header .jp-dashboard__header-action:hover,
body.jp-dashboard-page .jp-dashboard__header .jp-dashboard__header-action:focus-visible {
  border-color: #333 !important;
  background: #333 !important;
  color: #fff !important;
}

/* Job actions are intentionally vertical: the primary destination stays
 * first, destructive actions stay last, and narrow tables remain scannable. */
body.jp-dashboard-page .jp-dashboard-job-actions {
  display: flex;
  min-width: 112px;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
body.jp-dashboard-page .jp-dashboard-job-actions > a,
body.jp-dashboard-page .jp-dashboard-job-actions > button {
  display: inline-flex;
  width: 100%;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 7px 9px;
  border: 1px solid #d7dce3;
  border-radius: 6px;
  background: #fff;
  color: #27364a;
  font-family: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
body.jp-dashboard-page .jp-dashboard-job-actions > a:hover,
body.jp-dashboard-page .jp-dashboard-job-actions > button:hover {
  border-color: #aeb9c8;
  background: #f4f7fa;
  color: #111;
  transform: translateY(-1px);
}
body.jp-dashboard-page .jp-dashboard-job-actions > a.jp-btn--outline,
body.jp-dashboard-page .jp-dashboard-job-actions > button.jp-btn--outline {
  border-color: #cbd4df !important;
  background: #fff !important;
  color: #27364a !important;
}
body.jp-dashboard-page .jp-dashboard-job-actions > .jp-delete-job-btn {
  border-color: #f0cccc;
  background: #fff8f8;
  color: #a83232;
}
body.jp-dashboard-page .jp-dashboard-job-actions > .jp-delete-job-btn:hover {
  border-color: #df9d9d;
  background: #fff0f0;
  color: #8d2020;
}
body.jp-dashboard-page .jp-dashboard-job-actions > .jp-renew-job-btn {
  border-color: #c7ddfb;
  background: #f1f6fd;
  color: #1f65d6;
}
body.jp-dashboard-page .jp-dashboard-job-actions > .jp-close-job-btn {
  border-color: #e7cfcf !important;
  background: #fffafa !important;
  color: #8d4545 !important;
}
body.jp-dashboard-page .jp-dashboard-job-actions > a:focus-visible,
body.jp-dashboard-page .jp-dashboard-job-actions > button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
body.jp-dashboard-page .jp-table td.jp-dashboard-actions-cell {
  width: 132px;
  vertical-align: top;
}
body.jp-dashboard-page .jp-saved-job-card__footer.jp-dashboard-job-actions {
  min-width: 0;
  flex-direction: row;
  align-items: center;
}
body.jp-dashboard-page .jp-saved-job-card__footer.jp-dashboard-job-actions > a {
  flex: 1 1 auto;
}
body.jp-dashboard-page .jp-saved-job-card__footer.jp-dashboard-job-actions > button {
  width: 38px;
  flex: 0 0 38px;
}

@media (max-width: 560px) {
  body.jp-dashboard-page .jp-dashboard__main {
    padding-top: 14px !important;
  }
  body.jp-dashboard-page .jp-dashboard-job-actions {
    min-width: 102px;
  }
  body.jp-dashboard-page .jp-saved-job-card__footer.jp-dashboard-job-actions {
    align-items: stretch;
  }
  body.jp-dashboard-page .jp-saved-job-card__footer.jp-dashboard-job-actions > button {
    width: 100%;
    flex-basis: 32px;
  }
}