/* job.html · 供需市场三板块 */
.job-market-page {
  padding-top: 72px;
  padding-bottom: 3rem;
}

.job-hero {
  background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 55%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.job-hero h1 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.job-hero__lead {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0 0 1rem;
  max-width: 52rem;
  line-height: 1.65;
}

.job-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d1fae5;
  color: #047857;
}

.job-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Hub 板块导航 */
.job-hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.job-hub-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.job-hub-nav__item:hover {
  border-color: #10b981;
  color: #047857;
}

.job-hub-nav__item.is-active {
  background: #ecfdf5;
  border-color: #10b981;
  color: #047857;
}

.job-breadcrumb {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.job-breadcrumb a {
  color: #047857;
  text-decoration: none;
}

.job-breadcrumb a:hover {
  text-decoration: underline;
}

.job-breadcrumb span.sep {
  margin: 0 0.35rem;
  color: #d1d5db;
}

.job-section__more {
  margin-top: 0.75rem;
  text-align: center;
}

.job-section__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #047857;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.job-section__more-link:hover {
  background: #d1fae5;
}

@media (min-width: 768px) {
  .job-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.job-search {
  position: relative;
  flex: 1;
  max-width: 100%;
}

@media (min-width: 768px) {
  .job-search {
    max-width: 28rem;
  }
}

.job-search input {
  width: 100%;
  padding: 0.65rem 2.5rem 0.65rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #fff;
}

.job-search input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.job-search button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #6b7280;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
}

.job-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-tab {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.job-tab:hover {
  border-color: #10b981;
  color: #047857;
}

.job-tab.is-active {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.job-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 88px;
}

.job-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.job-section__title-wrap h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-section__title-wrap h2 i {
  color: #10b981;
}

.job-section__subtitle {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

.job-section__desc {
  font-size: 0.88rem;
  color: #4b5563;
  margin: 0.35rem 0 0;
  line-height: 1.55;
  flex: 1 1 100%;
}

.job-publish-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: #2563eb;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.job-publish-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.job-publish-btn--green {
  background: #10b981;
}

.job-publish-btn--green:hover {
  background: #059669;
}

.job-publish-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.35rem;
  text-align: right;
}

.job-publish-paused {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.5;
}

.job-publish-paused .fa {
  margin-top: 0.15rem;
  color: #d97706;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
}

.job-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.job-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.job-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.job-card__tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
}

.job-card__tag--task { background: #dbeafe; color: #1d4ed8; }
.job-card__tag--talent { background: #d1fae5; color: #047857; }
.job-card__tag--jobs { background: #fce7f3; color: #be185d; }

.job-card__date {
  font-size: 0.72rem;
  color: #9ca3af;
  white-space: nowrap;
}

.job-card__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
}

.job-card__summary {
  font-size: 0.84rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
  flex-wrap: wrap;
}

.job-card__publisher {
  font-size: 0.78rem;
  color: #374151;
}

.job-card__location {
  font-size: 0.72rem;
  color: #9ca3af;
}

.job-card__budget {
  font-size: 0.78rem;
  font-weight: 600;
  color: #10b981;
}

.job-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
}

.job-card__link:hover {
  color: #1d4ed8;
}

.job-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  color: #6b7280;
  font-size: 0.9rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px dashed #d1d5db;
}

.job-loading {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
}

.job-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  font-size: 0.84rem;
  color: #92400e;
  line-height: 1.6;
}

.job-note a {
  color: #b45309;
  font-weight: 600;
}

.job-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.job-stats strong {
  color: #047857;
}

.job-stats__updated {
  margin-left: auto;
  color: #9ca3af;
}

.job-section__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: #10b981;
  background: #ecfdf5;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.25rem;
}

.job-card {
  cursor: pointer;
}

.job-card__badge {
  font-size: 0.65rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.job-card__badge--live_job { background: #fce7f3; color: #9d174d; }
.job-card__badge--live_demand { background: #dbeafe; color: #1e40af; }
.job-card__badge--market_profile { background: #fef3c7; color: #92400e; }

.job-card__source {
  font-size: 0.72rem;
  color: #6b7280;
}

.job-card__actions {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.job-card__detail-btn {
  border: none;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  cursor: pointer;
}

.job-card__detail-btn:hover {
  background: #e5e7eb;
}

.job-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.job-modal.is-open {
  display: flex;
}

.job-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.job-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 1.25rem 1.25rem 1rem;
}

.job-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: none;
  background: #f3f4f6;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  cursor: pointer;
  color: #4b5563;
}

.job-modal__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin: 0 2rem 0.75rem 0;
  line-height: 1.4;
}

.job-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.job-modal__summary {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.job-modal__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
}

.job-modal__meta dt {
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.job-modal__meta dd {
  margin: 0;
  color: #111827;
  font-weight: 500;
}

.job-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.job-modal-open {
  overflow: hidden;
}

.job-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.job-pager__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.job-pager__btn:hover {
  border-color: #10b981;
  color: #047857;
}

.job-pager__info {
  font-size: 0.85rem;
  color: #6b7280;
}

/* 多维筛选 */
.job-filters {
  margin-bottom: 1.25rem;
  padding: 0.85rem 0.95rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.job-filters__row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
  gap: 0.55rem 0.65rem;
}

.job-filter {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.job-filter__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
}

.job-filter select {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.82rem;
  background: #fff;
  color: #374151;
}

.job-filter select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12);
}

.job-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.job-filter-chip {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  font-size: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.job-filter-chip:hover {
  border-color: #10b981;
  color: #047857;
}

.job-filter-chip.is-active {
  background: #ecfdf5;
  border-color: #10b981;
  color: #047857;
  font-weight: 600;
}

.job-filters__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px dashed #e5e7eb;
}

.job-filters__hint {
  font-size: 0.78rem;
  color: #6b7280;
}

.job-filters__reset {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}

.job-filters__reset:hover {
  border-color: #10b981;
  color: #047857;
}

.job-card__link--primary {
  color: #047857;
}

.job-card__link--muted {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}

.job-audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.job-audience__item {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 0.84rem;
  color: #4b5563;
  line-height: 1.55;
}

.job-audience__item strong {
  display: block;
  color: #111827;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.job-audience__item strong i {
  color: #10b981;
  margin-right: 0.25rem;
}

.job-audience__item--dev {
  border-color: #a7f3d0;
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%);
}

.job-audience__item--biz {
  border-color: #bfdbfe;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
}

.job-audience__item a {
  color: #047857;
  font-weight: 600;
  text-decoration: none;
}

.job-audience__item a:hover {
  text-decoration: underline;
}

.job-audience__item p {
  margin: 0;
}

.job-oauth-btn {
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.job-oauth-btn:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

@media (max-width: 640px) {
  .job-section__head {
    flex-direction: column;
  }

  .job-publish-hint {
    text-align: left;
  }
}

/* ── Hub 总览页（非平铺） ── */
.job-hero--hub {
  padding: 1.5rem 1.25rem;
}

.job-hero__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .job-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.job-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: #047857;
  margin: 0 0 0.35rem;
}

.job-hero__search-wrap {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d1fae5;
  border-radius: 12px;
  padding: 1rem;
}

.job-hero__search-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.job-search--hero input {
  background: #fff;
}

.job-hero__search-hint {
  font-size: 0.72rem;
  color: #9ca3af;
  margin: 0.5rem 0 0;
}

.job-stats__mode {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
}

.job-hub-paths {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .job-hub-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.job-hub-path {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 3px solid #10b981;
}

.job-hub-path--task { border-top-color: #2563eb; }
.job-hub-path--talent { border-top-color: #10b981; }
.job-hub-path--jobs { border-top-color: #db2777; }

.job-hub-path__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #047857;
  font-size: 1.1rem;
}

.job-hub-path--task .job-hub-path__icon { background: #dbeafe; color: #1d4ed8; }
.job-hub-path--jobs .job-hub-path__icon { background: #fce7f3; color: #be185d; }

.job-hub-path__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #111827;
}

.job-hub-path__desc {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.job-hub-path__count {
  font-size: 0.78rem;
  color: #4b5563;
  margin: 0;
}

.job-hub-path__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.job-hub-path__enter,
.job-hub-path__publish {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
}

.job-hub-path__enter {
  background: #111827;
  color: #fff !important;
}

.job-hub-path__publish {
  background: #f3f4f6;
  color: #374151 !important;
  border: 1px solid #e5e7eb;
}

.job-hub-flow {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.75rem;
}

.job-hub-flow__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #374151;
}

.job-hub-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .job-hub-flow__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.job-hub-flow__steps li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: #4b5563;
}

.job-hub-flow__num {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.job-hub-flow__steps strong {
  display: block;
  color: #111827;
  margin-bottom: 0.15rem;
}

.job-hub-flow__steps p {
  margin: 0;
  line-height: 1.45;
}

.job-hub-previews {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.job-hub-preview {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
}

.job-hub-preview__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #f3f4f6;
}

.job-hub-preview__head h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.job-hub-preview__sub {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0.2rem 0 0;
}

.job-hub-preview__all {
  font-size: 0.82rem;
  font-weight: 600;
  color: #047857;
  text-decoration: none;
  white-space: nowrap;
}

.job-hub-preview__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.job-hub-row {
  display: grid;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #f3f4f6;
  background: #fafafa;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.job-hub-row:hover {
  background: #fff;
  border-color: #d1fae5;
}

@media (min-width: 768px) {
  .job-hub-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.job-hub-row__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.15rem 0 0;
  color: #111827;
  line-height: 1.35;
}

.job-hub-row__summary {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0.2rem 0 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-hub-row__aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.job-hub-row__detail {
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  cursor: pointer;
  color: #374151;
}

.job-hub-search-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 0.85rem;
  color: #1e40af;
}

.job-hub-search-clear {
  border: 0;
  background: #fff;
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  font-size: 0.78rem;
  cursor: pointer;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
}

.job-hub-preview__empty {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 0;
}

/* 子页侧栏 · 相辅相成 CTA */
.job-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 1.25rem;
  align-items: start;
}

.job-page-layout__main {
  min-width: 0;
}

.job-page-sidebar {
  position: sticky;
  top: 88px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
}

.job-page-sidebar__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.65rem;
}

.job-page-sidebar__desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.job-page-sidebar__list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  max-height: none;
  overflow: visible;
}

.job-page-sidebar__list li {
  margin: 0.25rem 0;
}

.job-page-sidebar__list a {
  color: #047857;
  text-decoration: none;
  font-size: 0.84rem;
}

.job-page-sidebar__list a:hover {
  text-decoration: underline;
}

.job-page-sidebar__cta {
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f3f4f6;
}

.job-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.35;
}

.job-sidebar__link--biz {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.job-sidebar__link--accent {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.job-card__actions .job-sidebar__link {
  margin-top: 0.35rem;
}

.job-card__badge--partner {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}

.job-card__badge--contact {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #047857;
}

.job-card__contact-preview {
  color: #047857;
  font-weight: 600;
}

.job-modal__contact-wrap {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.job-contact-gate p {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0 0 0.5rem;
}

.job-modal__contact dt {
  font-size: 0.75rem;
  color: #6b7280;
}

.job-modal__contact dd {
  font-weight: 600;
  margin: 0 0 0.35rem;
}

@media (max-width: 900px) {
  .job-page-layout {
    grid-template-columns: 1fr;
  }

  .job-page-sidebar {
    position: static;
    order: -1;
  }
}
