/* =====================================================
   JOB V2 – ISOLATED STYLING (SAFE)
   ===================================================== */

/* Wrapper */
.job-v2 {
  max-width: 900px;
  margin: auto;
}

/* Title */
.job-v2-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

/* Image */
.job-v2-image-wrap {
  margin-bottom: 1.5rem;
}

.job-v2-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #f9fafb;
}

/* Meta */
.job-v2-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.job-v2-meta-item {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.job-v2-meta-item span {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

.job-v2-meta-item strong {
  font-size: 1rem;
  color: #111827;
}

/* Cards (Description + Qualifications) */
.job-v2-card {
  background: #fafafa;
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;
}

/* =========================
   STEPS SECTION
   ========================= */

.job-v2-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.job-v2-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.job-v2-step-number {
  min-width: 36px;
  height: 36px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-v2-step strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #111827;
}

.job-v2-step p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {
  .job-v2-title {
    font-size: 1.5rem;
  }

  .job-v2-step {
    flex-direction: row;
    padding: 1rem;
  }

  .job-v2-meta {
    grid-template-columns: 1fr;
  }
}