/* ───────── 投递看板 /team-manage/inbox（Figma 1243:6298）───────── */
.tib { display: flex; flex-direction: column; gap: 28px; }
.tib-head { display: flex; flex-direction: column; gap: 7px; }
.tib-title { margin: 0; font-size: 32px; font-weight: 600; letter-spacing: -0.6px; color: #1d1d1f; }
.tib-sub { margin: 0; font-size: 16px; color: #86868b; letter-spacing: -0.1px; }

.tib-filters { display: flex; align-items: center; gap: 10px; }
.tib-search {
  display: flex; align-items: center; gap: 9px; height: 42px; width: 320px; max-width: 100%;
  padding: 0 12px 0 13px; border: 1px solid #ececef; border-radius: 12px; background: #fff;
}
.tib-search svg { width: 16px; height: 16px; color: #86868b; flex-shrink: 0; }
.tib-search input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit;
  font-size: 14.5px; letter-spacing: -0.1px; color: #1d1d1f;
}
.tib-search input::placeholder { color: #a1a1a6; }
.tib-pill {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  padding: 9px 14px; border: 1px solid #ececef; border-radius: 999px; background: #fff;
  font: inherit; font-size: 13.5px; letter-spacing: -0.1px; color: #3c3c43; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.tib-pill svg { width: 14px; height: 14px; }
.tib-pill:hover { border-color: #d2d2d7; }
.tib-pill.is-on { border-color: #1d1d1f; color: #1d1d1f; font-weight: 500; }
.tib-spacer { flex: 1; }

.tib-sec { display: flex; flex-direction: column; gap: 14px; }
.tib-sec-head { display: flex; align-items: center; gap: 8px; }
.tib-sec-head svg { width: 16px; height: 16px; color: #1d1d1f; }
.tib-sec-title { font-size: 16px; font-weight: 500; color: #1d1d1f; letter-spacing: -0.2px; }
.tib-sec-note { font-size: 13.5px; color: #a1a1a6; letter-spacing: -0.1px; }

/* 「需要处理」卡片 */
.tib-cards { display: flex; gap: 18px; align-items: stretch; flex-wrap: wrap; }
.tib-card {
  flex: 1 1 240px; min-width: 0; display: flex; flex-direction: column; gap: 13px; align-items: flex-start;
  text-align: left; padding: 20px 22px 18px; border: 0; border-radius: 22px; background: #fff;
  box-shadow: 0 14px 44px -10px rgba(0, 0, 0, 0.1); cursor: pointer;
}
.tib-card-top { display: flex; align-items: center; gap: 8px; width: 100%; }
.tib-newbadge {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px 5px 9px;
  border-radius: 999px; background: #2e84fa; color: #fff; font-size: 12.5px; font-weight: 500; letter-spacing: -0.1px;
}
.tib-newbadge svg { width: 13px; height: 13px; }
.tib-card-time { margin-left: auto; font-size: 12.5px; color: #a1a1a6; letter-spacing: -0.1px; }
.tib-card-role { margin: 0; font-size: 18px; font-weight: 500; color: #1d1d1f; letter-spacing: -0.3px; }
.tib-card-meta { margin: 0; font-size: 13.5px; color: #86868b; letter-spacing: -0.1px; }
.tib-card-foot { display: flex; align-items: center; gap: 8px; width: 100%; margin-top: 4px; }
.tib-card-count { font-size: 13px; color: #86868b; letter-spacing: -0.1px; }
.tib-card-cta { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 500; color: #1d67f1; letter-spacing: -0.1px; }
.tib-card-cta svg { width: 14px; height: 14px; }

/* 「全部职位」分组列表 */
.tib-group { display: flex; flex-direction: column; }
.tib-group + .tib-group { margin-top: 10px; }
.tib-group-head { display: flex; align-items: center; gap: 8px; padding: 8px 0 8px 4px; }
.tib-group-title { font-size: 16px; font-weight: 500; color: #1d1d1f; letter-spacing: -0.2px; }
.tib-group-count { font-size: 13.5px; color: #a1a1a6; letter-spacing: -0.1px; }
.tib-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
/* 职位行 = 对齐的表格栅格：职位名(弹性) | 时间 | 投递数 | 未读角标 | 动作 | chevron。
   各列定宽 → 行与行对齐成整齐的列，撑满更宽的看板、不再是右侧一坨。 */
.tib-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 76px 60px auto 18px;
  align-items: center; column-gap: 24px;
  padding: 15px 14px 15px 16px;
  border-radius: 14px; cursor: pointer; transition: background .15s;
}
.tib-row:hover { background: #f5f5f5; }
.tib-row-main { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.tib-row-role { margin: 0; font-size: 15.5px; font-weight: 500; color: #1d1d1f; letter-spacing: -0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tib-row-meta { margin: 0; font-size: 14px; color: #86868b; letter-spacing: -0.1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tib-row-time { justify-self: start; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #a1a1a6; letter-spacing: -0.1px; white-space: nowrap; }
.tib-row-time svg { width: 13px; height: 13px; flex-shrink: 0; }
.tib-row-count { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.tib-row-num { font-size: 15.5px; font-weight: 500; color: #1d1d1f; letter-spacing: -0.2px; }
.tib-row-unit { font-size: 11.5px; color: #a1a1a6; }
.tib-row-badge { justify-self: center; display: flex; justify-content: center; }
.tib-plus { display: inline-flex; align-items: center; padding: 4px 9px 4px 8px; border-radius: 999px; background: #2e84fa; color: #fff; font-size: 12px; font-weight: 500; }
/* 行内管理动作（✏️/🗑️/≡）：复用 me-jobrow-icon 样式，在看板较密的行里收一点尺寸/间距。 */
.tib-row-actions { justify-self: end; display: inline-flex; align-items: center; gap: 6px; }
.tib-row-actions .me-jobrow-icon { width: 32px; height: 32px; }
.tib-row-actions .me-jobrow-icon svg { width: 18px; height: 18px; }
.tib-row-chev { justify-self: center; width: 16px; height: 16px; color: #c7c7cc; }
/* 骨架行保持 flex（占位结构和真实行不同，不套表格栅格）。 */
.tib-row.tib-skel-row { display: flex; align-items: center; gap: 14px; }

/* 投递看板骨架屏（board + 三栏详情共用） */
@keyframes tib-shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.tib-skel { display: block; border-radius: 8px; background: linear-gradient(90deg, #ededed 25%, #f6f6f6 37%, #ededed 63%); background-size: 400% 100%; animation: tib-shimmer 1.4s ease infinite; }
.tib-skel-line { height: 12px; }
.tib-skel-title { width: 220px; height: 30px; }
.tib-skel-sub { width: 320px; height: 16px; margin-top: 4px; }
.tib-skel-pill { width: 96px; height: 24px; border-radius: 999px; }
.tib-skel-card { pointer-events: none; gap: 12px; }
.tib-skel-row { pointer-events: none; }
.tib-skel-num { width: 40px; height: 26px; border-radius: 8px; flex-shrink: 0; }
/* CV 骨架屏：跟真实 .cvx 同款留白（36/56），不贴边；结构 = 头像圆 + 名字两行 → 一封信卡 → 两段要点 */
.tib-cvskel { padding: 36px 56px 48px; display: flex; flex-direction: column; gap: 28px; pointer-events: none; }
.tib-cvskel-head { display: flex; align-items: center; gap: 12px; }
.tib-skel-av { width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0; }
.tib-cvskel-id { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.tib-skel-block { width: 100%; height: 92px; border-radius: 14px; }
.tib-cvskel-sec { display: flex; flex-direction: column; gap: 12px; }
.tib-skel-row { pointer-events: none; opacity: 1 !important; }
.tib-applicant-skel { pointer-events: none; opacity: 1 !important; }

.tib-card-tier { display: inline-flex; align-items: center; }

/* ─────────── AI 深度搜索（/team-manage/search · TeamSearchPanel） ───────────
 * 留白分组，无分割线 / 背景填充（DESIGN_SYSTEM §1.3–1.5）；chip 带 icon（§1.6）。 */
.me-search {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.me-search-beta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 12px;
  padding: 3px 10px;
  border: 1px solid #86868b;
  border-radius: 999px;
  -webkit-corner-shape: squircle;
  corner-shape: squircle;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1d1d1f;
  vertical-align: 3px;
}
.me-search-beta svg { color: #86868b; }
.me-search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.me-search-intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #3c3c43;
  max-width: 560px;
}
.me-search-textarea {
  max-width: 560px;
  min-height: 96px;
}
.me-search-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 560px;
}
.me-search-hint {
  margin: 0;
  font-size: 13px;
  color: #86868b;
}
.me-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 560px;
}
.me-search-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.me-search-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.me-search-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid #86868b;
  border-radius: 999px;
  -webkit-corner-shape: squircle;
  corner-shape: squircle;
  font-size: 13px;
  color: #1d1d1f;
  background: #ffffff;
}
.me-search-chip svg { color: #86868b; }
.me-search-chip.is-done { border-color: #1d1d1f; }
.me-search-item-date {
  font-size: 13px;
  color: #a1a1a6;
}
.me-search-item-query {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1d1d1f;
}
.me-search-item-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.me-search-item-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #3c3c43;
}
.me-search-item-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 14px;
  color: #1d1d1f;
  text-decoration: none;
}
.me-search-item-link:hover { opacity: 0.7; }
.me-search-item-link svg { color: #86868b; }

/* ── 投递看板「Bonjour 推荐」脱敏候选人卡（复用 .tib-card 底座）──────────────── */
.tib-reco-skills {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.tib-reco-reason {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tib-reco-actions {
  display: inline-flex;
  gap: 8px;
}
.tib-reco-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  letter-spacing: -0.005em;
  cursor: pointer;
  background: #fff;
  color: var(--ink-2);
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s cubic-bezier(0.2, 0, 0, 1), transform 0.15s cubic-bezier(0.2, 0, 0, 1);
}
.tib-reco-btn:hover {
  box-shadow: 0 14px 44px -10px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.tib-reco-btn:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}
.tib-reco-btn.is-primary {
  background: var(--ink-1, #1d1d1f);
  color: #fff;
}
.tib-reco-invited {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
@media (prefers-reduced-motion: reduce) {
  .tib-reco-btn,
  .tib-reco-btn:hover {
    transition: none;
    transform: none;
  }
}
