/* Basic styling for job cards and single job */
.cj-job-board{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px}
.cj-job-card{border:1px solid #e5e7eb;border-radius:12px;padding:16px;background:#fff}
.cj-job-title{margin:0 0 6px 0}
.cj-job-excerpt{color:#374151}
.cj-chip{display:inline-block;margin-right:6px;padding:4px 8px;border-radius:9999px;background:#f3f4f6;font-size:12px}
.cj-apply-btn{display:inline-block;margin-top:10px;padding:10px 16px;border-radius:10px;text-decoration:none;border:1px solid #111;transition:transform .08s ease}
.cj-apply-btn:hover{transform:translateY(-1px)}
.cj-single-job .cj-job-header{border-bottom:1px solid #e5e7eb;margin-bottom:16px;padding-bottom:12px}
.cj-job-subtitle{color:#6b7280;margin:.25rem 0}
.cj-section{margin:24px 0}
.cj-job-thumb img{border-radius:12px}

/* Careers – Dark Theme Styling */
.cj-job-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.cj-job-card {
  background: #111;            /* subtle dark card */
  border: 1px solid #222;      /* thin border to separate from background */
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cj-job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.cj-job-title a {
  color: #f9f9f9;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.cj-job-title a:hover {
  color: #00c2ff; /* accent highlight */
}

.cj-job-excerpt {
  margin-top: 8px;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cj-chip {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #1e1e1e;
  color: #bbb;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cj-apply-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #00c2ff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cj-apply-btn:hover {
  background: #00a2d6;
  color: #000;
}


 /* ===== Careers: Dark Theme (sober) ===== */
:root{
  --cj-bg: #0b0b0b;          /* site background */
  --cj-card: #121212;        /* card bg */
  --cj-border: #1f1f1f;      /* subtle borders */
  --cj-text: #e8e8e8;        /* primary text */
  --cj-muted: #a8a8a8;       /* secondary text */
  --cj-accent: #00c2ff;      /* brand accent (button/hover) */
}

/* Archive grid */
.cj-job-board{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
  margin-top:1.5rem;
}

/* Cards */
.cj-job-card{
  background:var(--cj-card);
  border:1px solid var(--cj-border);
  border-radius:14px;
  padding:20px;
  color:var(--cj-text);
  box-shadow:0 0 0 rgba(0,0,0,0);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cj-job-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  border-color:#252525;
}

/* Titles & text */
.cj-job-title{margin:0 0 .35rem 0; line-height:1.2}
.cj-job-title a{color:var(--cj-text); text-decoration:none; cursor: grab;}
.cj-job-title a:hover{color:var(--cj-accent)}

.cj-job-excerpt{color:var(--cj-muted); margin:.25rem 0 0}

/* Chips */
.cj-chip{
  display:inline-block; margin:.25rem .35rem .25rem 0;
  padding:4px 10px; font-size:.72rem; letter-spacing:.2px;
  border-radius:999px; background:#1a1a1a; color:#c9c9c9;
  border:1px solid var(--cj-border);
}

/* Apply button */
.cj-apply-btn{
  display:inline-block; margin-top:.85rem; padding:.6rem 1.05rem;
  border-radius:10px; font-weight:600; text-decoration:none;
  background:var(--cj-accent); color:#071015; border:none;
  transition:filter .15s ease, transform .05s ease;
  cursor: grab !important;
}
.cj-apply-btn:hover{filter:brightness(.92)}
.cj-apply-btn:active{transform:translateY(1px)}

/* ===== Single Job ===== */
.cj-single-job{max-width:980px; margin:0 auto; padding-top:12px}
.cj-job-header{border-bottom:1px solid var(--cj-border); padding-bottom:12px; margin-bottom:20px}
.cj-job-title{font-size:2.2rem; font-weight:700; color:var(--cj-text)}
.cj-job-subtitle{color:var(--cj-muted); margin:.25rem 0 .5rem}

/* Sections */
.cj-section{margin:28px 0}
.cj-section h2{
  font-size:1.15rem; letter-spacing:.3px; text-transform:uppercase;
  color:#d8d8d8; margin:0 0 .6rem 0
}
.cj-content{color:var(--cj-text)}
.cj-content p{color:#d2d2d2; line-height:1.7}
.cj-job-footer{margin-top:24px; padding-top:16px; border-top:1px solid var(--cj-border)}