/* Career / Recruitment page */

.career-page-wrap {
  background: #fff;
}

/* ---- Hero ---- */
.car-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
}

.car-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-dark, #0f2744);
}

.car-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.car-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 39, 68, 0.88) 0%, rgba(30, 58, 95, 0.62) 45%, rgba(45, 90, 138, 0.22) 70%, rgba(15, 39, 68, 0.06) 100%),
    linear-gradient(0deg, rgba(15, 39, 68, 0.5) 0%, transparent 42%);
}

.car-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 400px);
  gap: 36px;
  align-items: center;
}

.car-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.car-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.car-breadcrumb a:hover {
  color: var(--gold);
}

.car-breadcrumb i {
  font-size: 0.55rem;
  opacity: 0.5;
}

.car-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.car-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
}

.car-hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.car-hero-copy > p {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.car-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.car-hero-panel {
  padding: 24px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.car-hero-panel h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--teal);
}

.car-hero-panel > p {
  margin: 0 0 10px;
  font-size: 0.84rem;
  color: #5a6c6b;
}

.car-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal);
  word-break: break-all;
}

.car-email i {
  color: var(--gold);
}

.car-email-note {
  margin: 0 0 16px !important;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f5f7f7;
  font-size: 0.76rem !important;
  line-height: 1.5;
}

.car-hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.car-hero-list li {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: #4a5c5b;
}

.car-hero-list i {
  color: var(--gold);
  margin-top: 2px;
}

/* ---- Stats ---- */
.car-stats {
  background: linear-gradient(135deg, var(--teal) 0%, #002824 100%);
  padding: 32px 0;
}

.car-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.car-stats-grid div {
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.car-stats-grid div:last-child {
  border-right: none;
}

.car-stats-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1;
}

.car-stats-grid span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Quote ---- */
.car-quote {
  padding: 40px 0 0;
  background: #f5f7f7;
}

.car-quote-box {
  margin: 0;
  padding: 28px 32px;
  border-radius: 18px;
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.08);
}

.car-quote-box i {
  display: block;
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.7;
}

.car-quote-box p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--teal);
}

.car-quote-box a {
  font-weight: 700;
}

/* ---- Openings ---- */
.car-openings {
  padding: 56px 0 64px;
  background: #f5f7f7;
}

.car-section-head {
  max-width: 620px;
  margin-bottom: 28px;
}

.car-section-head.center {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.car-section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  line-height: 1.12;
  color: var(--teal);
}

.car-section-head h2 em {
  font-style: normal;
  color: var(--gold);
}

.car-section-head p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #5a6c6b;
}

.car-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.car-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.car-filter-btn {
  border: 1px solid rgba(30, 58, 95, 0.12);
  background: #fff;
  color: var(--teal);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.car-filter-btn:hover,
.car-filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.car-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 260px);
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.12);
}

.car-search i {
  color: var(--gold);
}

.car-search input {
  width: 100%;
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: 0.86rem;
  color: var(--teal);
  background: transparent;
}

.car-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.car-job {
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.car-job:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 39, 68, 0.1);
}

.car-job.is-hidden {
  display: none;
}

.car-job-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.car-job-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.car-job-badge--faculty {
  background: rgba(30, 58, 95, 0.1);
  color: var(--teal);
}

.car-job-badge--technical {
  background: rgba(255, 184, 0, 0.18);
  color: #8a6500;
}

.car-job-badge--nonteaching {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}

.car-job-employ {
  font-size: 0.68rem;
  font-weight: 600;
  color: #8a9998;
}

.car-job h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--teal);
}

.car-job-dept {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7c7b;
}

.car-job-dept i {
  color: var(--gold);
}

.car-job-qual {
  flex: 1;
  margin: 0 0 16px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5a6c6b;
}

.car-job-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(30, 58, 95, 0.08);
}

.car-job-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.car-job-apply:hover {
  background: #002824;
}

.car-job-detail {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
}

.car-job-detail:hover {
  color: var(--gold);
}

.car-jobs-empty {
  margin: 24px 0 0;
  padding: 40px 24px;
  text-align: center;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed rgba(30, 58, 95, 0.15);
  color: #6b7c7b;
}

/* ---- Apply band ---- */
.car-apply-band {
  padding: 72px 0;
  background: var(--teal);
  color: #fff;
}

.car-apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: start;
}

.car-apply-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.car-apply-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.car-apply-copy h2 em {
  font-style: normal;
  color: var(--gold);
}

.car-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.car-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.car-steps li span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 184, 0, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.car-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.car-steps p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.car-steps a {
  color: var(--gold);
  font-weight: 600;
}

.car-salary-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
}

.car-salary-note i {
  color: var(--gold);
}

.car-checklist {
  padding: 24px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.car-checklist h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.car-checklist > p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
}

.car-checklist ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.car-checklist li {
  display: flex;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.car-checklist li i {
  width: 18px;
  color: var(--gold);
  margin-top: 2px;
}

.car-demo-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 184, 0, 0.15);
}

.car-demo-note i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
}

.car-demo-note p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

/* ---- Benefits ---- */
.car-benefits {
  padding: 72px 0;
  background: #fff;
}

.car-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.car-benefit {
  padding: 24px 20px;
  border-radius: 16px;
  background: #f5f7f7;
  border: 1px solid rgba(30, 58, 95, 0.06);
  text-align: center;
}

.car-benefit i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(255, 184, 0, 0.15);
  font-size: 1.2rem;
  color: var(--teal);
}

.car-benefit h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--teal);
}

.car-benefit p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5a6c6b;
}

/* ---- Application form ---- */
.car-form-section {
  padding: 72px 0;
  background: #f5f7f7;
}

.car-form-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.car-form-intro h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.12;
  color: var(--teal);
}

.car-form-intro h2 em {
  font-style: normal;
  color: var(--gold);
}

.car-form-intro > p {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5a6c6b;
}

.car-policy-box {
  padding: 18px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.car-policy-box h4 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--teal);
}

.car-policy-box ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #5a6c6b;
}

.car-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 16px 40px rgba(15, 39, 68, 0.08);
}

.car-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.car-field--full {
  grid-column: 1 / -1;
}

.car-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
}

.car-field input,
.car-field select,
.car-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(30, 58, 95, 0.12);
  font-family: inherit;
  font-size: 0.86rem;
  color: var(--teal);
  background: #f8fafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.car-field input:focus,
.car-field select:focus,
.car-field textarea:focus {
  outline: none;
  border-color: rgba(255, 184, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12);
}

.car-form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  color: #6b7c7b;
}

.car-form-note i {
  color: var(--gold);
  margin-right: 6px;
}

.car-form button {
  grid-column: 1 / -1;
}

/* ---- FAQ ---- */
.car-faq-section {
  padding: 72px 0;
  background: #fff;
}

.car-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
}

.car-faq-intro h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.12;
  color: var(--teal);
}

.car-faq-intro h2 em {
  font-style: normal;
  color: var(--gold);
}

.car-faq-intro p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5a6c6b;
}

.car-faq-list {
  display: grid;
  gap: 10px;
}

.car-faq {
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafa;
}

.car-faq summary {
  padding: 16px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
}

.car-faq summary::-webkit-details-marker {
  display: none;
}

.car-faq summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.car-faq[open] summary::after {
  content: '−';
}

.car-faq p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.84rem;
  line-height: 1.65;
  color: #5a6c6b;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .car-hero-inner,
  .car-apply-grid,
  .car-form-grid,
  .car-faq-grid {
    grid-template-columns: 1fr;
  }

  .car-jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-stats-grid div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
  }

  .car-stats-grid div:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .car-hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .car-jobs-grid,
  .car-benefits-grid,
  .car-form {
    grid-template-columns: 1fr;
  }

  .car-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-filters {
    width: 100%;
  }

  .car-search {
    width: 100%;
  }
}
