.career-job-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ip-border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.career-job-row:hover {
  transform: translateX(4px);
  box-shadow: var(--ip-shadow-md);
  border-color: rgba(14,165,233,.3);
}
.career-job-row--featured {
  border-color: rgba(251,191,36,.4);
  background: linear-gradient(135deg,#fffbeb 0%,#fff 70%);
}
.career-job-row-main { flex: 1; min-width: 0; }
.career-job-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ip-navy);
  line-height: 1.3;
}
.career-job-row-arrow {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ip-gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--ip-navy);
  font-size: 13px;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.career-job-row:hover .career-job-row-arrow {
  background: var(--ip-sky);
  color: #fff;
}
.career-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--ip-gray-50);
  border: 1px solid var(--ip-border);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ip-gray-500);
}
/* ============================================================
   CAMBAY SOLUTIONS — Jobs CSS
   Add to your theme or enqueue via functions.php
   ============================================================ */

/* ── FILTER BAR ─────────────────────────────────────────── */
.jobs-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 12px 16px;
  box-shadow: var(--ip-shadow-md);
}
.jfb-search {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.jfb-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ip-gray-400);
  font-size: 14px;
  pointer-events: none;
}
.jfb-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1.5px solid var(--ip-border);
  border-radius: var(--ip-radius-sm);
  font-size: 14px;
  color: var(--ip-gray-900);
  background: var(--ip-gray-50);
  outline: none;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.jfb-input:focus {
  border-color: var(--ip-sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,.1);
  background: #fff;
}
.jfb-select {
  padding: 10px 14px;
  border: 1.5px solid var(--ip-border);
  border-radius: var(--ip-radius-sm);
  font-size: 13px;
  color: var(--ip-navy);
  background: var(--ip-gray-50);
  outline: none;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s;
  font-weight: 600;
}
.jfb-select:focus { border-color: var(--ip-sky); }
.jfb-btn {
  padding: 10px 22px;
  background: var(--ip-navy);
  color: #fff;
  border: none;
  border-radius: var(--ip-radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
  white-space: nowrap;
}
.jfb-btn:hover { background: var(--ip-sky); }
.jfb-clear {
  font-size: 12px;
  font-weight: 700;
  color: var(--ip-gray-400);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.jfb-clear:hover { background: var(--ip-red-pale); color: var(--ip-red); }

/* ── JOB LIST ROW ───────────────────────────────────────── */
.job-list-row {
  position: relative;
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.job-list-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--ip-shadow-lg);
  border-color: rgba(14,165,233,.2);
}
.job-list-row--featured {
  border-color: rgba(251,191,36,.35);
  background: linear-gradient(135deg, #fffbeb 0%, #fff 60%);
}
.job-list-row--featured:hover { border-color: rgba(251,191,36,.6); }

.job-list-featured-badge,
.job-list-new-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.job-list-featured-badge {
  background: #fbbf24;
  color: #78350f;
}
.job-list-new-badge {
  background: var(--ip-sky);
  color: #fff;
}

.job-list-main { flex: 1; min-width: 0; }
.job-list-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ip-navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.job-list-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.job-list-title a:hover { color: var(--ip-sky); }
.job-list-excerpt {
  font-size: 13px;
  color: var(--ip-gray-500);
  line-height: 1.7;
  margin: 8px 0 0;
  max-width: 640px;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta chips */
.job-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.jlm-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--ip-gray-50);
  border: 1px solid var(--ip-border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ip-gray-700);
  white-space: nowrap;
}
.jlm-chip--hero {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.jlm-chip--salary {
  background: var(--ip-green-pale);
  border-color: rgba(21,128,61,.2);
  color: var(--ip-green);
}

/* Apply button on list row */
.btn-job-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ip-navy);
  color: #fff;
  border-radius: var(--ip-radius-sm);
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-job-primary:hover {
  background: var(--ip-sky);
  color: #fff;
  transform: translateX(2px);
}

/* Actions column */
.job-list-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 130px;
}

/* ── JOB CONTENT (single page wysiwyg) ──────────────────── */
.job-content-wrap {
  font-size: 15px;
  color: var(--ip-gray-700);
  line-height: 1.85;
}
.job-content-wrap h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ip-navy);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ip-border);
}
.job-content-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ip-navy);
  margin: 28px 0 10px;
}
.job-content-wrap ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 20px;
}
.job-content-wrap ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
}
.job-content-wrap ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ip-sky);
  font-weight: 800;
  font-size: 13px;
}
.job-content-wrap p { margin-bottom: 16px; }
.job-content-wrap strong { color: var(--ip-navy); }

/* ── SCOPE all careers hero overrides strictly ──────────── */
/* Do NOT touch .hero-visual-ring from jobs.css —
   those styles live in company-careers.php inline or theme CSS.
   Only add what's missing below. */

/* ── CAREERS PAGE — Updated page-level cards ────────────── */
.story-stat-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 28px;
  height: 100%;
  box-shadow: var(--ip-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.story-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ip-shadow-lg);
}
.story-stat-value {
  font-size: 40px;
  font-weight: 900;
  color: var(--ip-navy);
  line-height: 1;
  margin-bottom: 8px;
}
.story-stat-label {
  font-size: 13px;
  color: var(--ip-gray-500);
  line-height: 1.5;
}

/* Highlight card (GPTW spotlight) */
.ip-highlight-card {
  background: linear-gradient(135deg, var(--ip-navy) 0%, var(--ip-navy-mid) 100%);
  border-radius: var(--ip-radius-xl);
  padding: 60px 56px;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.ip-highlight-card::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(14,165,233,.1);
  top: -180px; right: -100px;
  pointer-events: none;
}
.ip-highlight-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.ip-highlight-card h3 {
  font-size: clamp(22px,3vw,32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.ip-highlight-card p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}
.ip-highlight-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ip-highlight-metric h4 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.ip-highlight-metric span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.ip-highlight-img img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  max-height: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--ip-radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

/* Value cards (metrics section) */
.value-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--ip-shadow-sm);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ip-shadow-xl);
}
.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.value-card-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--ip-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.value-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ip-navy);
  margin-bottom: 10px;
}
.value-card-desc {
  font-size: 13px;
  color: var(--ip-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* Solution steps (open roles list) */
.solution-steps { display: flex; flex-direction: column; gap: 16px; }
.ss-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ss-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.ss-item strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ip-navy);
  display: block;
  margin-bottom: 4px;
}
.ss-item p {
  font-size: 13px;
  color: var(--ip-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* Related cards */
.ip-related-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 28px;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.ip-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ip-shadow-lg);
}
.ip-related-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.ip-related-card h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ip-navy);
  margin-bottom: 8px;
}
.ip-related-card p {
  font-size: 13px;
  color: var(--ip-gray-500);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ip-related-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ip-sky);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.ip-related-link:hover { gap: 9px; }

/* Hero visual ring styles intentionally removed from jobs.css.
   These are defined inline in company-careers.php to avoid conflicts. */

/* CTA buttons */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ip-navy);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--ip-radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary-cta:hover {
  background: var(--ip-sky);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ip-border);
  color: var(--ip-navy);
  padding: 15px 28px;
  border-radius: var(--ip-radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost-cta:hover {
  border-color: var(--ip-navy);
  background: var(--ip-gray-50);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .jobs-filter-bar { flex-direction: column; align-items: stretch; }
  .jfb-search { min-width: unset; }
  .ip-highlight-card { padding: 36px 28px; }
  .job-list-row { flex-direction: column; }
  .job-list-actions { flex-direction: row; width: 100%; justify-content: space-between; align-items: center; }
}
@media (max-width: 767px) {
  .job-list-row { padding: 18px 16px; }
  .job-list-title { font-size: 15px; }
  .ip-highlight-card { padding: 28px 20px; }
  .ip-highlight-metrics { gap: 20px; }
  .hero-visual-ring { display: none; }
}