/* ===== CAREERS PAGE — Matching Warranty/Financing Pattern ===== */

/* ---------- BREADCRUMB OVERLAY ---------- */
.career {
  position: relative;
  z-index: 1;
  margin-top: -56px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f7 100%);
}

#breadcrumb:has(+ .career) {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

#breadcrumb:has(+ .career) > div {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#breadcrumb:has(+ .career) .breadcrumb-item a {
  color: rgba(255,255,255,0.8);
}

#breadcrumb:has(+ .career) .breadcrumb-item a:hover {
  color: #fff;
}

#breadcrumb:has(+ .career) .breadcrumb-item:last-child {
  color: #fff !important;
}

#breadcrumb:has(+ .career) .breadcrumb-item::after {
  color: rgba(255,255,255,0.5);
}

/* ---------- HERO BANNER ---------- */
.career .car-hero {
  position: relative;
  overflow: hidden;
}

.career .car-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.career .car-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(29,66,136,0.55) 20%, rgba(29,66,136,0.2) 60%, rgba(62,176,73,0.05) 100%);
  z-index: 1;
}

.career .car-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 32px;
  z-index: 2;
}

.career .car-hero__text {
  max-width: 700px;
}

.career .car-hero__overlay h1 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.career .car-hero__overlay p {
  color: rgba(255,255,255,0.9);
  font-family: Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

/* ---------- CONTENT SECTION ---------- */
.career .car-content {
  padding: 48px 20px 64px;
}

.career .car-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.career .car-content h2 {
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.career .car-content__text {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.career .car-content__text p {
  margin: 0 0 12px;
}

.career .car-content h3 {
  font-family: Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
}

/* ---------- FEATURES LIST ---------- */
.career .car-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career .car-features__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.career .car-features__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: #3eb049;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- CTA BUTTON ---------- */
.career .car-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #1a1a1a;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.career .car-btn:hover {
  background: #333;
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.career .car-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #3eb049;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- RESPONSIVE ---------- */

@media (min-width: 768px) {
  .career .car-hero img {
    height: 320px;
  }

  .career .car-hero__overlay {
    align-items: center;
    padding: 24px;
  }

  .career .car-hero__overlay h1 {
    font-size: 3rem;
  }

  .career .car-content {
    padding: 72px 40px 80px;
  }

  .career .car-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .career .car-hero img {
    height: 360px;
  }

  .career .car-hero__overlay h1 {
    font-size: 3.5rem;
  }

  .career .car-content {
    padding: 80px 40px 80px;
  }

  .career .car-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .career .car-hero img {
    height: 400px;
  }

  .career .car-hero__overlay h1 {
    font-size: 4rem;
    max-width: 800px;
  }
}
