/* =========================================================
   IMMIX CAREERS V1
   Clean source of truth for careers.php
   Built on immix-next-base.css

   UX architecture, readability refinement, ScrollMeta-aware
   layout implementation, and page-specific CSS system by
   Ken Buis, Fervid Solutions.
========================================================= */

/* IMMIX-CAREERS-V1-ACTIVE */


/* =========================================================
   1. PAGE FOUNDATION
========================================================= */

.ixcar-page {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(105, 166, 61, 0.06), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(18, 52, 93, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.ixcar-wrap {
  width: min(100% - var(--ix-gutter), 1240px);
  margin-inline: auto;
}

.ixcar-wrap--wide {
  width: min(100% - var(--ix-gutter), 1360px);
}


/* =========================================================
   2. TYPE + TEXT FLOOR
========================================================= */

.ixcar-page,
.ixcar-page p,
.ixcar-page li,
.ixcar-page a,
.ixcar-page span,
.ixcar-page strong,
.ixcar-page h1,
.ixcar-page h2,
.ixcar-page h3,
.ixcar-page h4 {
  font-family: var(--ix-font-sans);
}

.ixcar-kicker,
.ixcar-hero__lead,
.ixcar-hero__panel p,
.ixcar-intro__copy p,
.ixcar-intro__copy li,
.ixcar-opening__header p,
.ixcar-job__label,
.ixcar-job__summary p,
.ixcar-job-section h4,
.ixcar-job-section li,
.ixcar-info-panel h4,
.ixcar-info-panel li,
.ixcar-apply-box h4,
.ixcar-apply-box p,
.ixcar-apply-box a {
  font-size: 17px;
}

.ixcar-intro__copy p,
.ixcar-intro__copy li,
.ixcar-opening__header p,
.ixcar-job__summary p,
.ixcar-job-section li,
.ixcar-info-panel li,
.ixcar-apply-box p {
  line-height: 1.8;
  color: #425d76;
}


/* =========================================================
   3. SHARED ELEMENTS
========================================================= */

.ixcar-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--ix-green-650);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ixcar-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(105, 166, 61, 0.72);
}


/* =========================================================
   4. HERO
========================================================= */

.ixcar-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: clamp(640px, 54vw, 820px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ix-page);
  border-top: 0 !important;
}

.ixcar-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  left: 50%;
  width: 100vw;
  min-width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
  background: #eef3ef;
}

.ixcar-hero__media img {
  display: block !important;
  width: 100vw;
  min-width: 100vw;
  max-width: none;
  height: 100%;
  min-height: clamp(640px, 54vw, 820px);
  object-fit: cover;
  object-position: center center;
}

.ixcar-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 247, 0.995) 0%,
      rgba(248, 251, 247, 0.99) 18%,
      rgba(248, 251, 247, 0.965) 34%,
      rgba(248, 251, 247, 0.80) 52%,
      rgba(248, 251, 247, 0.42) 72%,
      rgba(248, 251, 247, 0.08) 100%
    );
}

.ixcar-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 247, 0.12) 0%,
      rgba(248, 251, 247, 0.00) 22%,
      rgba(248, 251, 247, 0.04) 78%,
      rgba(248, 251, 247, 0.24) 100%
    );
}

.ixcar-hero > .ixcar-wrap {
  position: relative;
  z-index: 4;
  min-height: clamp(640px, 54vw, 820px);
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(320px, 420px);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: center;
}

.ixcar-hero__content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.955);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow:
    0 28px 58px rgba(13, 30, 52, 0.12),
    0 8px 20px rgba(13, 30, 52, 0.04);
}

.ixcar-hero__content::before {
  content: "";
  position: absolute;
  top: -40px;
  bottom: -40px;
  left: calc(50% - 50vw);
  right: -140px;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(249, 251, 248, 0.96) 44%,
      rgba(249, 251, 248, 0.72) 70%,
      rgba(249, 251, 248, 0.12) 100%
    );
}

.ixcar-hero h1 {
  margin: 0 0 1.25rem;
  max-width: 9ch;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-serif);
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.052em;
}

.ixcar-hero__lead {
  margin: 0;
  max-width: 28rem;
  color: #405973;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.34;
}

.ixcar-hero__panel {
  position: relative;
  z-index: 6;
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(111, 158, 57, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(22, 72, 122, 0.985) 0%, rgba(10, 39, 70, 0.995) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 64px rgba(10, 39, 70, 0.28),
    0 10px 28px rgba(10, 39, 70, 0.08);
}

.ixcar-hero__panel div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ixcar-hero__panel div:first-child {
  padding-top: 0;
  border-top: 0;
}

.ixcar-hero__panel span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(215, 179, 90, 0.18);
  color: #edf4fb;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.ixcar-hero__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.62;
}


/* =========================================================
   5. INTRODUCTION
========================================================= */

.ixcar-intro {
  position: relative;
  padding: clamp(4.4rem, 7vw, 6.8rem) 0 clamp(3.6rem, 6vw, 5.2rem);
}

.ixcar-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 14% 22%, rgba(111, 158, 57, 0.07) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 84% 24%, rgba(18, 58, 102, 0.05) 0%, rgba(18, 58, 102, 0) 34%);
  pointer-events: none;
}

.ixcar-intro .ixcar-wrap {
  position: relative;
  z-index: 2;
}

.ixcar-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  gap: clamp(1.7rem, 4vw, 3.5rem);
  align-items: stretch;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(249, 251, 248, 0.98) 100%);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow:
    0 24px 56px rgba(13, 30, 52, 0.08),
    0 8px 22px rgba(13, 30, 52, 0.035);
}

.ixcar-intro__copy {
  padding: clamp(1.3rem, 2.5vw, 2.2rem);
}

.ixcar-intro__copy h2 {
  margin: 0 0 1rem;
  max-width: 12ch;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.048em;
}

.ixcar-intro__copy p {
  margin: 0 0 1.25rem;
  max-width: 58rem;
  font-size: 17px;
  line-height: 1.82;
}

.ixcar-intro__copy p strong {
  color: var(--ix-navy-800);
  font-size: 17px;
  font-weight: 800;
}

.ixcar-intro__list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.ixcar-intro__list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow: 0 8px 18px rgba(13, 30, 52, 0.035);
  color: #425d76;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.62;
}

.ixcar-intro__list li::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.22rem;
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  background: var(--ix-green-600);
  box-shadow: 0 0 0 6px rgba(105, 166, 61, 0.10);
}

.ixcar-intro__media {
  position: relative;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #eef3ef;
  box-shadow:
    0 26px 54px rgba(13, 30, 52, 0.12),
    0 8px 20px rgba(13, 30, 52, 0.04);
}

.ixcar-intro__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center center;
}

.ixcar-intro__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(9, 42, 80, 0) 0%, rgba(9, 42, 80, 0.20) 100%);
  pointer-events: none;
}


/* =========================================================
   6. CURRENT OPENING
========================================================= */

.ixcar-opening {
  position: relative;
  padding: 0 0 clamp(5.4rem, 7vw, 7rem);
}

.ixcar-opening::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 18% 22%, rgba(111, 158, 57, 0.07) 0%, rgba(111, 158, 57, 0) 34%),
    radial-gradient(circle at 82% 24%, rgba(18, 58, 102, 0.05) 0%, rgba(18, 58, 102, 0) 34%);
  pointer-events: none;
}

.ixcar-opening .ixcar-wrap {
  position: relative;
  z-index: 2;
}

.ixcar-opening__header {
  max-width: 860px;
  margin: 0 auto clamp(2rem, 3vw, 2.8rem);
  text-align: center;
}

.ixcar-opening__header .ixcar-kicker {
  justify-content: center;
}

.ixcar-opening__header .ixcar-kicker::after {
  display: none;
}

.ixcar-opening__header h2 {
  margin: 0 0 1rem;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.ixcar-opening__header p {
  margin: 0 auto;
  max-width: 46rem;
  color: #5a738b;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
}


/* =========================================================
   7. JOB CARD
========================================================= */

.ixcar-job {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 251, 248, 0.98) 100%);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow:
    0 34px 76px rgba(13, 30, 52, 0.105),
    0 10px 26px rgba(13, 30, 52, 0.035);
}

.ixcar-job::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--ix-green-600) 0%, rgba(111, 158, 57, 0.22) 100%);
}

.ixcar-job__header {
  position: relative;
  z-index: 2;
  padding: clamp(1.65rem, 3vw, 2.55rem) clamp(1.7rem, 3vw, 2.7rem);
  border-bottom: 1px solid rgba(18, 58, 102, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 251, 247, 0.96) 100%);
}

.ixcar-job__label {
  margin: 0 0 0.75rem;
  color: var(--ix-green-650);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ixcar-job__header h3 {
  margin: 0;
  max-width: 22ch;
  color: var(--ix-navy-800);
  font-family: var(--ix-font-sans);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.ixcar-job__body {
  position: relative;
  z-index: 2;
  padding: clamp(1.55rem, 3vw, 2.7rem);
}

.ixcar-job__summary {
  display: grid;
  gap: 0.95rem;
  max-width: 85rem;
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
}

.ixcar-job__summary p {
  margin: 0;
  color: #425d76;
  font-size: 17px;
  line-height: 1.84;
}

.ixcar-job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.3rem);
}

.ixcar-job-section,
.ixcar-info-panel {
  min-height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 58, 102, 0.08);
  box-shadow: 0 8px 18px rgba(13, 30, 52, 0.035);
}

.ixcar-job-section h4,
.ixcar-info-panel h4 {
  margin: 0 0 0.9rem;
  color: var(--ix-navy-800);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.ixcar-job-section ul,
.ixcar-info-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.15rem;
}

.ixcar-job-section li,
.ixcar-info-panel li {
  color: #425d76;
  font-size: 17px;
  line-height: 1.72;
}

.ixcar-info-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.08fr) minmax(260px, 0.84fr);
  gap: 1.05rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.3rem);
}

.ixcar-info-panel--accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 251, 244, 0.96) 100%);
  border-color: rgba(105, 166, 61, 0.18);
}

.ixcar-apply-box {
  position: relative;
  overflow: hidden;
  padding: clamp(1.45rem, 2.4vw, 2.05rem);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 166, 61, 0.15), transparent 28%),
    linear-gradient(135deg, #153d69 0%, #10345d 58%, #092a50 100%);
  color: #ffffff;
  box-shadow:
    0 24px 54px rgba(10, 39, 70, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.ixcar-apply-box h4 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.ixcar-apply-box p {
  max-width: 74rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.78;
}

.ixcar-apply-box a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}


/* =========================================================
   8. FOOTER HANDOFF
========================================================= */

.ixcar-page .ixcar-opening + .footer-two,
.ixcar-page .ixcar-opening + .site-footer,
.ixcar-page .ixcar-opening + footer {
  position: relative;
}

.ixcar-page .ixcar-opening + .footer-two::before,
.ixcar-page .ixcar-opening + .site-footer::before,
.ixcar-page .ixcar-opening + footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}


/* =========================================================
   9. RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .ixcar-hero > .ixcar-wrap {
    width: min(100% - 48px, 1120px);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  }

  .ixcar-info-panels {
    grid-template-columns: 1fr 1fr;
  }

  .ixcar-info-panel--accent {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .ixcar-hero {
    min-height: auto;
  }

  .ixcar-hero > .ixcar-wrap {
    width: min(100% - 40px, 860px);
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .ixcar-hero__content::before {
    right: calc(50% - 50vw);
    top: -20px;
    bottom: -20px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.965) 0%,
        rgba(249, 251, 248, 0.90) 100%
      );
  }

  .ixcar-hero__media img {
    min-height: 720px;
  }

  .ixcar-intro__grid,
  .ixcar-job-grid,
  .ixcar-info-panels {
    grid-template-columns: 1fr;
  }

  .ixcar-info-panel--accent {
    grid-column: auto;
  }

  .ixcar-intro__media img {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .ixcar-wrap,
  .ixcar-wrap--wide,
  .ixcar-hero > .ixcar-wrap {
    width: min(100% - 28px, 720px);
  }

  .ixcar-hero__content,
  .ixcar-hero__panel,
  .ixcar-intro__grid,
  .ixcar-intro__media,
  .ixcar-job,
  .ixcar-job-section,
  .ixcar-info-panel,
  .ixcar-apply-box {
    border-radius: 24px;
  }

  .ixcar-hero__content,
  .ixcar-intro__copy,
  .ixcar-job__header,
  .ixcar-job__body {
    padding: 1.25rem;
  }

  .ixcar-hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .ixcar-intro__copy h2,
  .ixcar-opening__header h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .ixcar-job__header h3 {
    font-size: clamp(28px, 7.8vw, 38px);
  }

  .ixcar-job-section,
  .ixcar-info-panel {
    padding: 1.05rem;
  }

  .ixcar-intro {
    padding-top: 3.4rem;
    padding-bottom: 3rem;
  }

  .ixcar-opening {
    padding-bottom: 4.6rem;
  }

  .ixcar-intro__media img {
    min-height: 260px;
  }
}
/* =========================================================
   CAREERS HERO IMAGE PATCH
   Uses approved careers AVIF hero background
   Final refinement by Ken Buis, Fervid Solutions
========================================================= */

.ixcareers-hero__media img,
.ixc-hero__media img,
.ix-careers-hero__media img {
  content: url("/assets/images/careers.avif") !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(680px, 58vw, 860px) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* If the Careers hero uses a background-image instead of an img element */
.ixcareers-hero,
.ixc-hero,
.ix-careers-hero {
  --ix-careers-hero-image: url("/assets/images/careers.avif");
}

/* Keep the locked Immix readable hero wash */
.ixcareers-hero__media::before,
.ixc-hero__media::before,
.ix-careers-hero__media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 247, 0.995) 0%,
      rgba(248, 251, 247, 0.99) 18%,
      rgba(248, 251, 247, 0.955) 36%,
      rgba(248, 251, 247, 0.78) 54%,
      rgba(248, 251, 247, 0.38) 74%,
      rgba(248, 251, 247, 0.08) 100%
    ) !important;
}

.ixcareers-hero__media::after,
.ixc-hero__media::after,
.ix-careers-hero__media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 247, 0.10) 0%,
      rgba(248, 251, 247, 0.00) 26%,
      rgba(248, 251, 247, 0.04) 78%,
      rgba(248, 251, 247, 0.18) 100%
    ) !important;
}

/* =========================================================
   IMMIX CAREERS TYPOGRAPHY HANDOFF PATCH
   Page-specific polish after unified typography lock adoption.
   The shared /assets/css/immix-locked-typography.css now handles
   global font consistency. This patch keeps Careers-specific layout,
   card rhythm, and dark-panel intent intact.
========================================================= */

.ixcar-page {
  --ixcar-dark-card: linear-gradient(180deg, rgba(22, 72, 122, 0.985) 0%, rgba(10, 39, 70, 0.995) 100%);
}

.ixcar-hero__panel,
.ixcar-apply-box {
  color: #ffffff;
}

.ixcar-hero__panel :is(p, span, strong),
.ixcar-apply-box :is(p, a, strong) {
  color: rgba(255, 255, 255, 0.86);
}

.ixcar-apply-box h4 {
  color: #ffffff;
}

.ixcar-job-section h4,
.ixcar-info-panel h4 {
  line-height: 1.22;
}

.ixcar-job-section li,
.ixcar-info-panel li {
  margin-bottom: 0.15rem;
}

.ixcar-job__summary p {
  max-width: 86rem;
}

@media (max-width: 767px) {
  .ixcar-hero__lead {
    max-width: 100%;
  }

  .ixcar-hero__panel div {
    grid-template-columns: 38px minmax(0, 1fr);
  }
}

/* =========================================================
   CAREERS CONTACT INFORMATION CONTRAST FIX
   Fixes dark-on-dark text inside the final application/contact box.
   Safe page-specific override. Keep this at the end of immix-careers-v1.css.
========================================================= */

.ixcar-page .ixcar-apply-box,
.ixcar-page .ixcar-apply-box * {
  color: #ffffff !important;
}

.ixcar-page .ixcar-apply-box h4,
.ixcar-page .ixcar-apply-box #ixcar-apply-title {
  color: #ffffff !important;
  opacity: 1 !important;
}

.ixcar-page .ixcar-apply-box p,
.ixcar-page .ixcar-apply-box span,
.ixcar-page .ixcar-apply-box li {
  color: rgba(255, 255, 255, 0.86) !important;
}

.ixcar-page .ixcar-apply-box a {
  color: #ffffff !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-underline-offset: 0.22em !important;
}

.ixcar-page .ixcar-apply-box a:hover,
.ixcar-page .ixcar-apply-box a:focus {
  color: #ffffff !important;
  text-decoration-thickness: 2px !important;
}

/* =========================================================
   CAREERS APPLY BOX READABILITY PATCH
   Use with typography lock v6.
========================================================= */

.ixcar-page .ixcar-apply-box,
.ixcar-page .ixcar-apply-box * {
  opacity: 1 !important;
}

.ixcar-page .ixcar-apply-box p,
.ixcar-page .ixcar-apply-box p *,
.ixcar-page .ixcar-apply-box span,
.ixcar-page .ixcar-apply-box li {
  color: rgba(255, 255, 255, 0.94) !important;
  font-weight: 600 !important;
}

.ixcar-page .ixcar-apply-box a,
.ixcar-page .ixcar-apply-box p a {
  color: #ffffff !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-underline-offset: 0.22em !important;
  text-decoration-thickness: 1.5px !important;
}
