/* ─── CAREER HERO ─────────────────────── */
#career-hero {
  background: #ffffff;
  padding: 90px 5vw 60px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.career-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.career-label {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 10px;
}

.career-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #1A1F2B;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.career-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── LISTINGS SECTION ─────────────────────── */
#career-listings {
  background: #F0F2F7;
  min-height: 50vh;
  padding: 70px 5vw 100px;
}

.career-listings-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* ─── NO VACANCY ─────────────────────── */
.no-vacancy {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.no-vacancy-icon {
  width: 64px; height: 64px;
  background: rgba(215,43,43,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.no-vacancy-icon svg {
  width: 28px; height: 28px;
  color: var(--c-red);
}

.no-vacancy h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #1A1F2B;
  margin-bottom: 16px;
}

.no-vacancy p {
  font-size: 15px;
  line-height: 1.8;
  color: #4A5568;
  max-width: 520px;
  margin: 0 auto 32px;
}

.career-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(215,43,43,0.25);
}
.career-email-btn svg { width: 18px; height: 18px; }
.career-email-btn:hover {
  background: var(--c-red-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215,43,43,0.35);
}

/* ─── JOB LIST ─────────────────────── */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 24px 28px;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.job-card:hover {
  border-color: rgba(215,43,43,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.job-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.job-logo {
  width: 48px; height: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.job-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.job-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #4A5568;
  font-weight: 500;
}
.job-tag svg { width: 14px; height: 14px; color: #7A8096; }

/* ─── JOB DETAIL PANEL ─────────────────────── */
.job-detail {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 40px 44px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.job-detail.visible { display: block; }

.job-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
  padding: 0;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}
.job-detail-back:hover { color: var(--c-red); }
.job-detail-back svg { width: 16px; height: 16px; }

.job-detail-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--c-red);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  text-align: center;
}

.job-detail-body {
  font-size: 15px;
  line-height: 1.85;
  color: #2D3748;
  margin-bottom: 28px;
  text-align: justify;
}
.job-detail-email{
  font-size: 15px;
  line-height: 1.85;
  color: #2D3748;
  margin-top: 28px;
  text-align: justify;
}

.job-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.job-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #4A5568;
  font-weight: 500;
}
.job-detail-tag svg { width: 16px; height: 16px; color: #7A8096; }

.job-apply-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(215,43,43,0.25);
}
.job-apply-btn:hover {
  background: var(--c-red-hi);
  transform: translateY(-2px);
}
.job-apply-btn svg { width: 16px; height: 16px; }

/* hidden utility */
.hidden { display: none !important; }

.job-detail-requirement{
  font-family: var(--f-display);
  color: #4A5568;
  font-size: 18px
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 600px) {
  #career-hero { padding: 70px 6vw 48px; }
  #career-listings { padding: 48px 6vw 80px; }
  .no-vacancy { padding: 40px 24px; }
  .job-detail { padding: 28px 22px; }
  .job-card { padding: 20px 18px; }
}

/* ── Requirements list ── */
.job-requirements {
  margin: 24px 0;
  padding: 20px 24px;
  background: #F0F2F7;
  border-radius: 8px;
  border-left: 3px solid var(--c-red);
}

.job-requirements h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: #1A1F2B;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.job-requirements ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-requirements ul li {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.job-requirements ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-weight: 700;
  font-size: 12px;
}