/* =============================================================
   CAREERS PAGE  –  page-careers.php
   Figma: iKSh7ZAvz6Pfj62AInqDgq  node 1824:2303  (2026-06-10 redesign)
   Colors: DS variables (see intone-design-system.css :root)
   Font:   var(--ds-font-heading) = 'Public Sans', sans-serif

   v2.1.0 — the two-column row pattern moved to the design system
   as .intone-row (intone-design-system.css §14b, shared with the
   industries pages). This file keeps careers-only row tweaks
   (.intone-careers-page scope), the --white variant and the
   careers-only __bigsub / __cta / __card-line elements.
   ============================================================= */



/* ── §1  HERO — full-bleed image, 130px title ─────────────── */
.careers-hero {
    min-height: 800px;
    background-color: #181818;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.careers-hero__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 8rem 2.75rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.625rem;
}
.careers-hero__title {
    font-family: var(--ds-font-heading);
    font-size: clamp(3rem, 9vw, 8.125rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ds-neutral-100, #fff);
    line-height: 1.15;
    margin: 0;
}
.careers-hero__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.careers-hero__subtitle {
    font-family: var(--ds-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    /* text-transform: uppercase; */
    color: var(--ds-neutral-100, #fff);
    margin: 0;
}

/* Gold hero CTA */
.btn-careers-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ds-gold);
    color: #141414;
    font-family: var(--ds-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-careers-gold:hover {
    background: #d9960f;
    color: #141414;
    text-decoration: none;
}
.btn-careers-gold svg { flex-shrink: 0; }

/* Dark CTA (shared) */
.btn-careers-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #181818;
    color: var(--ds-neutral-100, #fff);
    font-family: var(--ds-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-careers-dark:hover {
    background: #2e2e2e;
    color: var(--ds-neutral-100, #fff);
    text-decoration: none;
}
.btn-careers-dark svg { flex-shrink: 0; }

/* Small "Learn More" variant (why-join header) */
.btn-careers-dark--sm {
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    padding: 0.5rem 1rem;
}

/* Solid-black variant ("Join Intone") */
.btn-careers-dark--black {
    background: #000;
}
.btn-careers-dark--black:hover {
    background: #2e2e2e;
}


/* ── §2  THRIVE WITH INTONE ───────────────────────────────── */
.careers-thrive {
    background: var(--ds-neutral-100, #fff);
    padding: 6.25rem 0;
}
.careers-thrive__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.careers-thrive__heading {
    font-family: var(--ds-font-heading);
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #181818;
    line-height: 1;
    margin: 0;
}
.careers-thrive__body {
    font-size: 1.5rem;
    font-weight: 400;
    /* text-transform: uppercase; */
    color: #181818;
    line-height: 1.35;
    max-width: 896px;
    margin: 0;
}


/* ── §3-4-5  TWO-COLUMN ROWS — shared .intone-row (DS §14b) ──
   Base pattern (360px #ececf0 image panel, light content panel,
   navy display heading, white card with 10px gold bar) lives in
   intone-design-system.css. Below: careers-only spacing tweaks,
   the white-panel variant and careers-only row elements. */
.intone-careers-page .intone-row__content {
    gap: 2rem;
}
.intone-row--white .intone-row__content {
    background: var(--ds-neutral-100, #fff);
}
.intone-careers-page .intone-row__body {
    max-width: 903px;
}
.intone-row__bigsub {
    font-family: var(--ds-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 1.2;
    margin: 0;
}
.intone-row__cta { margin-top: 0.5rem; }

/* White card with gold bar (§5) — careers sizing */
.intone-careers-page .intone-row__card {
    gap: 1rem;
    max-width: 857px;
}
.intone-row__card-line {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.36;
    /* text-transform: uppercase; */
    color: #000;
    margin: 0;
}


/* ── §7  WHY JOIN INTONE ──────────────────────────────────── */
.careers-why {
    background: var(--ds-neutral-100, #fff);
    padding: 6.25rem 0;
}
.careers-why__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.careers-why__header {
    border-top: 1px solid #000;
    padding-top: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.careers-why__header-titles {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.careers-why__heading {
    font-family: var(--ds-font-heading);
    font-size: 2.29375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    margin: 0;
}
.careers-why__sub {
    font-family: var(--ds-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}
.careers-why__body {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    max-width: 896px;
    margin: 0;
}
.careers-why__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.careers-why__image-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.careers-why__image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.careers-why__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 0.5rem;
}


/* ── §8  FIND YOUR PATH — dark, 8 cards ──────────────────── */
.careers-paths {
    /* background: #181818; */
    padding: 8rem 0;
}
.careers-paths__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.careers-paths__heading {
    font-family: var(--ds-font-heading);
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    /* color: var(--ds-neutral-100, #fff); */
    line-height: 1;
    margin: 0;
}
.careers-paths__sub {
    font-family: var(--ds-font-heading);
    font-size: 1.875rem;
    font-weight: 500;
    /* color: var(--ds-neutral-100, #fff); */
    line-height: 1.2;
    margin: 0 0 1.5rem;
}
.careers-paths__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.1875rem;
}
.careers-path-card {
    background: #f4f6f9;
    border-left: 4px solid #f6b43f;
    min-height: 240px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.careers-path-card__title {
    font-family: var(--ds-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    /* color: var(--ds-neutral-100, #fff); */
    line-height: 1.4;
    margin: 0;
}
.careers-path-card__body {
    font-size: 1rem;
    font-weight: 400;
    /* color: var(--ds-neutral-100, #fff); */
    line-height: 1.5;
    margin: 0;
}


/* ── §9  ARCH CTA — page-scoped home-ready overrides ──────── */
/* Design shows solid white 80px display text (DS default is ghost) */
.intone-careers-page .home-ready__bg-text span {
    color: var(--ds-neutral-100, #fff);
    /* -webkit-text-fill-color: var(--ds-neutral-100, #fff); */
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 700;
}


/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .careers-hero {
        min-height: 560px;
    }
    /* .intone-row column collapse + 340px image come from DS §14b */
    .careers-why__images {
        grid-template-columns: repeat(2, 1fr);
    }
    .careers-paths__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .careers-hero__inner {
        padding: 6rem 1.25rem 2.5rem;
    }
    .careers-hero__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .careers-thrive__inner,
    .careers-why__inner,
    .careers-paths__inner {
        padding: 0 1.25rem;
    }
    .careers-thrive__heading {
        font-size: 2.25rem;
    }
    /* .intone-row__content mobile padding comes from DS §14b */
    .intone-row__bigsub {
        font-size: 1.5rem;
    }
    .careers-why__images {
        grid-template-columns: 1fr;
    }
    .careers-paths__grid {
        grid-template-columns: 1fr;
    }
    .careers-paths {
        padding: 4rem 0;
    }
    .btn-careers-dark,
    .btn-careers-gold {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
}
