:root {
  --career-bg: var(--fx-bg);
  --career-surface: var(--fx-surface-strong);
  --career-ink: var(--fx-text);
  --career-muted: var(--fx-muted);
  --career-accent: var(--fx-accent);
  --career-dark: #171c22;
}

.career-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: var(--career-ink);
}

.career-main {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 72px);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.career-hero {
  position: relative;
  background: transparent;
  color: var(--fx-text);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(0.5rem, 1.5vw, 1rem);
  overflow: hidden;
}

.career-hero::before {
  content: none;
}

.career-hero::after {
  content: none;
}

.career-hero__content,
.career-hero__image {
  position: relative;
  z-index: 1;
}

.career-hero__content {
  display: grid;
  gap: clamp(1.4rem, 2.8vw, 2rem);
  max-width: 960px;
}

.career-hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: clamp(0.85rem, 0.75rem + 0.4vw, 1rem);
  color: var(--fx-accent);
  font-weight: 600;
}

.career-hero__content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 3.6rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--fx-text);
}

.career-hero__lead {
  margin: 0;
  max-width: 72ch;
  font-size: clamp(1.02rem, 0.95rem + 0.6vw, 1.22rem);
  line-height: 1.7;
  color: #5c6672;
}

.career-hero__image {
  display: none;
}

.career-hero__image img {
  display: none;
}

.career-openings {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.career-openings__header {
  display: grid;
  gap: 0.9rem;
  max-width: 58ch;
}

.career-openings__header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.4rem);
}

.career-openings__header p {
  margin: 0;
  color: var(--career-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.career-opening-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 40px);
  padding: clamp(28px, 5vw, 40px);
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(24, 28, 36, 0.12);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.career-opening-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.career-opening-card__body {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.career-opening-card__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(18, 20, 23, 0.55);
  font-weight: 700;
}

.career-opening-card__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.career-opening-card__location {
  margin: 0;
  font-weight: 600;
  color: rgba(18, 20, 23, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.career-opening-card__summary {
  margin: 0;
  color: var(--career-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.career-opening-card__cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  background: var(--career-accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.career-opening-card__cta:hover,
.career-opening-card__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(210, 35, 42, 0.35);
  filter: brightness(1.05);
}

.career-opening-card__cta:focus-visible {
  outline: 3px solid rgba(210, 35, 42, 0.5);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .career-hero {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .career-hero__image {
    justify-content: flex-start;
  }

  .career-opening-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .career-main {
    padding-block: clamp(40px, 12vw, 64px);
  }

  .career-opening-card {
    padding: clamp(24px, 7vw, 32px);
    border-radius: 20px;
  }

  .career-opening-card__media img {
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .career-main {
    gap: clamp(36px, 11vw, 52px);
  }

  .career-opening-card {
    padding: clamp(20px, 9vw, 28px);
  }

  .career-opening-card__body {
    gap: 0.85rem;
  }
}

@media (max-width: 520px) {
  .career-hero__image img {
    width: 100%;
    max-height: 240px;
  }

  .career-opening-card__cta {
    width: 100%;
    justify-content: center;
  }
}

.company-menu-hero .section-kicker {
  color: var(--fx-accent);
}

