section#myidx-1 {
  padding: 0px;
}

section.sec-banner.coverbk{
  display: none;
}

/* ---- Scoped box-sizing reset ---- */
.psb-careers *,
.psb-careers *::before,
.psb-careers *::after {
  box-sizing: border-box;
}

/* ---- Page variables ---- */
.psb-careers {
  --ps-navy:   #002B55;
  --ps-navy-2: #002D57;
  --ps-blue:   #0054A6;
  --ps-cyan:   #01ABE8;
  --ps-green:  #80BC00;
  --ps-body:   #4C4C4E;
  --ps-light:  #F3F5F7;
  --ps-mid:    #6C6C6C;
  --ps-border: #E9E9E9;
  --ps-wrap:   1200px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  color: var(--ps-body);
}

/* ---- Utility Classes ---- */
.psb-text-cyan {
  color: var(--ps-cyan) !important;
}

/* ---- Shared utilities ---- */
.psb-careers .psb-wrap {
  max-width: var(--ps-wrap);
  margin: 0 auto;
  padding: 0 40px;
  /* CONFLICT: careersTestStyles uses padding 24px; pbCareers uses 15px.
     40px is intentional for this wider design. */
}

/*
 * CONFLICT: careersTestStyles also defines .psb-eyebrow differently
 * (0.6rem, centered, white — a dark-background utility).
 * Our version is a directional cyan eyebrow used across sections.
 * Do not load both files simultaneously.
 */
.psb-careers .psb-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ps-cyan);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 16px;
}

.psb-careers .psb-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--ps-cyan);
}

/* Centered eyebrow variant (replaces former inline style="justify-content:center;") */
.psb-careers .psb-eyebrow--centered {
  justify-content: center;
}
.psb-careers .psb-eyebrow--centered::after {
  display: none;
}

.psb-careers .psb-eyebrow--dark {
  color: var(--ps-navy);
}
.psb-careers .psb-eyebrow--dark::after {
  background: var(--ps-navy);
}

/*
 * CONFLICT: careersTestStyles also defines .psb-btn as inline-flex with
 * fixed 276px width on --cyan variant. Our version uses inline-block
 * with padding-based sizing.
 * NOTE: font-weight 600 used throughout — theme @font-face only provides
 * Trajan Pro 3 at weight 600 (not 700). Using 700 renders identically
 * but 600 is correct to match the available font file.
 * NOTE: color !important overrides theme a { color: #00aae7 } on <a> buttons.
 */
.psb-careers .psb-btn {
  display: inline-block;
  background: var(--ps-cyan);
  color: #fff !important;
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.psb-careers .psb-btn:hover {
  background: #019fd6;
  color: #fff !important; /* prevent theme a:hover { color: #0054a6 } */
}

/* No-wrap button variant (replaces former inline style="white-space:nowrap;") */
.psb-careers .psb-btn--nowrap {
  white-space: nowrap;
}

/* ============================================================
   SECTION 1 - Hero
============================================================ */
.psb-careers .psb-hero {
  background-color: var(--ps-navy);
  overflow: hidden;
}

/*
 * CONFLICT: careersTestStyles defines psb-hero__inner as display:flex
 * with flex children (left/center/right). Our version uses display:grid
 * with 3 named columns. These are incompatible layout models.
 * Padding here replaces former inline style="padding: 80px 40px;"
 */
.psb-careers .psb-hero__inner {
  display: grid;
  grid-template-columns: 300px 1fr 320px;
  align-items: center;
  min-height: 400px;
  padding: 30px;
}

.psb-careers .psb-hero__photo-left {
  height: 80%;
  min-height: 400px;
}

.psb-careers .psb-hero__photo-left img {
  width: 100%;
  height: 100% !important; /* override theme img { height: auto } */
  object-fit: cover;
  border-radius: 10px;
}

.psb-careers .psb-hero__content {
  padding: 60px 50px;
  text-align: center;
}

/*
 * CONFLICT: careersTestStyles also defines psb-hero__eyebrow with
 * font-size:15px, letter-spacing:4.2px. Ours uses 13px, 0.28em.
 * Also overrides theme p { margin } since eyebrow is a <span> or <p>.
 */
.psb-careers .psb-hero__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  display: block;
}

/*
 * Theme h1 cascades: Trajan Pro 3, weight 600.
 * !important needed to override theme's responsive h1 font-sizes
 * (1.25em base, 2.25em at 576px, 2.5em at 992px).
 */
.psb-careers .psb-hero__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 60px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 20px;
}

/*
 * CONFLICT: careersTestStyles also defines psb-hero__sub with font-size:20px.
 * Ours uses 18px. Override theme p margins.
 */
.psb-careers .psb-hero__sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-top: 0;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.psb-careers .psb-hero__photos-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 80%;
  min-height: 400px;
  padding: 20px 0;
}

.psb-careers .psb-hero__photos-right img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 10px;
}

/* ============================================================
   SECTION 2 - PrimePeople intro
============================================================ */
.psb-careers .psb-primepeople {
  padding: 80px 0;
  background: #fff;
}

.psb-careers .psb-primepeople__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
  text-align: left;
}

.psb-careers .psb-primepeople__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ps-cyan);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 16px;
}

.psb-careers .psb-primepeople__eyebrow::before {
  content: '-';
  color: var(--ps-cyan);
}

/* Theme h2 cascades as #00aae7. Override with span-level colors. */
.psb-careers .psb-primepeople__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 50px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.psb-careers .psb-primepeople__title span:first-child {
  color: var(--ps-blue); /* #0054A6 */
}

.psb-careers .psb-primepeople__title span:last-child {
  color: #00AAE7;
}

/*
 * CONFLICT: careersTestStyles also defines psb-primepeople__divider
 * with width:48px. Ours uses width:36px. Minor visual difference.
 */
.psb-careers .psb-primepeople__divider {
  width: 36px;
  height: 3px;
  background: var(--ps-cyan);
  margin-bottom: 28px;
}

.psb-careers .psb-primepeople__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.psb-careers .psb-primepeople__card {
  background: #F6F7F8;
  border-radius: 10px;
  padding: 20px 34px;
}

/* Override theme p { margin: 15px 0 25px } inside tight cards */
.psb-careers .psb-primepeople__card p {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ps-body);
  margin: 0;
}

.psb-careers .psb-primepeople__photo {
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--ps-green);
  aspect-ratio: 3/4;
}

.psb-careers .psb-primepeople__photo img {
  width: 100%;
  height: 100% !important; /* override theme img { height: auto } */
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION 3 - Why Work at PrimeSource
============================================================ */
.psb-careers .psb-whywork {
  background: var(--ps-light);
  padding: 80px 0;
}

.psb-careers .psb-whywork__header {
  text-align: center;
  margin-bottom: 48px;
}

/* Theme h2 cascades as #00aae7 — override to blue */
.psb-careers .psb-whywork__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px) !important;
  color: var(--ps-blue) !important; /* override theme h2 { color: #00aae7 } */
  margin: 0;
}

/* 4-col x 2-row grid, col 3 spans both rows */
.psb-careers .psb-whywork__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

/* Center photo: col 3, rows 1-2 */
.psb-careers .psb-why-photo-center {
  grid-column: 3;
  grid-row: 1 / 3;
  border-radius: 10px;
  overflow: hidden;
}

.psb-careers .psb-why-photo-center img {
  width: 100%;
  height: 100% !important; /* override theme img { height: auto } */
  object-fit: cover;
  display: block;
}

.psb-careers .psb-why-photo {
  border-radius: 10px;
  overflow: hidden;
  min-height: 180px;
}

.psb-careers .psb-why-photo img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/*
 * CONFLICT: careersTestStyles defines psb-why-card with border-radius:4px
 * and min-height:190px. Our version: border-radius:10px, min-height:220px.
 */
.psb-careers .psb-why-card {
  border-radius: 10px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  text-align: left;
  align-items: flex-start;
}

.psb-careers .psb-why-card--navy {
  background: #002D57;
}

.psb-careers .psb-why-card--navy-mid {
  background: #002D57;
}

.psb-careers .psb-why-card--white {
  background: #fff;
  border: 1px solid var(--ps-border);
}

.psb-careers .psb-why-card__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.psb-careers .psb-why-card__icon svg {
  width: 24px;
  height: 24px;
}

/*
 * Theme h3 cascades: Trajan Pro 3 weight 600, size 1.35em-1.5em.
 * !important to pin the size smaller inside cards.
 */
.psb-careers .psb-why-card__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: 15px !important;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 12px;
}

.psb-careers .psb-why-card--white .psb-why-card__title {
  color: var(--ps-blue);
}

/*
 * CONFLICT: careersTestStyles defines psb-why-card__text with font-size:0.9rem.
 * Ours uses 15px. Override theme p margins.
 */
.psb-careers .psb-why-card__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.psb-careers .psb-why-card--white .psb-why-card__text {
  color: var(--ps-body);
}

.psb-careers .psb-whywork__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   SECTION 4 - Benefits & Programs
============================================================ */
.psb-careers .psb-benefits {
  background: var(--ps-navy);
  padding: 80px 0;
}

.psb-careers .psb-benefits__header {
  text-align: center;
  margin-bottom: 48px;
}

.psb-careers .psb-benefits__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ps-cyan);
  text-transform: uppercase;
  display: block;
  margin-top: 0;
  margin-bottom: 12px;
}

/* Theme h2 cascades as #00aae7 — override to white on dark background */
.psb-careers .psb-benefits__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px) !important;
  color: #fff !important; /* override theme h2 { color: #00aae7 } */
  margin: 0 0 12px;
}

/*
 * CONFLICT: careersTestStyles also defines psb-benefits__sub with
 * margin-bottom:48px. Our version uses margin:0 auto (centered, no extra
 * bottom margin — the header wrapper provides separation).
 * Override theme p margins.
 */
.psb-careers .psb-benefits__sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.psb-careers .psb-benefits__body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* CSS-only tabs using radio inputs */
.psb-careers .psb-benefits__tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.psb-careers .psb-benefits__tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.psb-careers .psb-benefits__tab-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: color 0.2s;
}

.psb-careers .psb-benefits__tab-name {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: rgba(168,185,204,0.9);
  transition: color 0.2s;
}

.psb-careers .psb-benefits__tab-arrow {
  color: rgba(168,185,204,0.5);
  font-size: 18px;
  transition: color 0.2s;
}

/* CSS :has() tabs - Chrome 105+, Firefox 121+, Safari 15.4+ */
.psb-careers .psb-benefits:has(#psb-ben-tab-1:checked) .psb-ben-panel-1,
.psb-careers .psb-benefits:has(#psb-ben-tab-2:checked) .psb-ben-panel-2,
.psb-careers .psb-benefits:has(#psb-ben-tab-3:checked) .psb-ben-panel-3,
.psb-careers .psb-benefits:has(#psb-ben-tab-4:checked) .psb-ben-panel-4 {
  display: block;
}

.psb-careers .psb-benefits:has(#psb-ben-tab-1:checked) label[for="psb-ben-tab-1"] .psb-benefits__tab-name,
.psb-careers .psb-benefits:has(#psb-ben-tab-2:checked) label[for="psb-ben-tab-2"] .psb-benefits__tab-name,
.psb-careers .psb-benefits:has(#psb-ben-tab-3:checked) label[for="psb-ben-tab-3"] .psb-benefits__tab-name,
.psb-careers .psb-benefits:has(#psb-ben-tab-4:checked) label[for="psb-ben-tab-4"] .psb-benefits__tab-name {
  color: #fff;
}

.psb-careers .psb-benefits:has(#psb-ben-tab-1:checked) label[for="psb-ben-tab-1"] .psb-benefits__tab-arrow,
.psb-careers .psb-benefits:has(#psb-ben-tab-2:checked) label[for="psb-ben-tab-2"] .psb-benefits__tab-arrow,
.psb-careers .psb-benefits:has(#psb-ben-tab-3:checked) label[for="psb-ben-tab-3"] .psb-benefits__tab-arrow,
.psb-careers .psb-benefits:has(#psb-ben-tab-4:checked) label[for="psb-ben-tab-4"] .psb-benefits__tab-arrow {
  color: var(--ps-cyan);
}

.psb-careers .psb-ben-panel {
  display: none;
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  text-align: left;
}

/* Default: show panel 1 (fallback for browsers without :has()) */
.psb-careers .psb-ben-panel-1 {
  display: block;
}
/* If :has() is supported, hide panel 1 unless tab-1 is checked */
@supports selector(:has(*)) {
  .psb-careers .psb-ben-panel-1 { display: none; }
}

/* Theme h3 cascades: Trajan Pro 3, weight 600. Pin size with !important. */
.psb-careers .psb-ben-panel__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: 22px !important;
  color: var(--ps-navy);
  margin: 0 0 16px;
}

/* Override theme p margins inside panel */
.psb-careers .psb-ben-panel__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ps-body);
  margin: 0 0 24px;
}

.psb-careers .psb-ben-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.psb-careers .psb-ben-tag {
  background: var(--ps-light);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--ps-navy);
  letter-spacing: 0.05em;
}

/* ============================================================
   SECTION 5 - Opportunities Across The Organization
============================================================ */
.psb-careers .psb-opps {
  padding: 80px 0;
  background: #fff;
  text-align: left;
}

.psb-careers .psb-opps__header {
  margin-bottom: 40px;
}

/* Theme h2 cascades as #00aae7 — override to blue */
.psb-careers .psb-opps__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px) !important;
  color: var(--ps-blue) !important;
  margin: 0 0 20px;
  line-height: 1.15 !important;
  max-width: 100%;
}

.psb-careers .psb-opps__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

/* Override theme p margins */
.psb-careers .psb-opps__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ps-body);
  max-width: 460px;
  margin: 0;
}

/* 3-photo row */
.psb-careers .psb-opps__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.psb-careers .psb-opps__photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 3px solid #80BC00; /* green border per design */
}

/* Role icons */
.psb-careers .psb-opps__roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.psb-careers .psb-role__icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F2F8ED;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.psb-careers .psb-role__icon-wrap svg {
  width: 22px;
  height: 22px;
}

/* Theme h3 cascades; pin size with !important */
.psb-careers .psb-role__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 1.35;
  color: var(--ps-blue);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

/* Override theme p margins */
.psb-careers .psb-role__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ps-body);
  margin: 0;
}

/* ============================================================
   SECTION 6 - Our Commitment to Inclusion
============================================================ */
/*
 * CONFLICT: careersTestStyles defines psb-inclusion as background:white with
 * a full-bleed two-column grid (no card wrapper). Our version wraps content
 * in a centered card — structurally different. Do not load both.
 */
.psb-careers .psb-inclusion {
  background: var(--ps-light);
  padding: 80px 0;
}

.psb-careers .psb-inclusion__card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  box-shadow: 0 4px 24px rgba(0,43,85,0.08);
}

.psb-careers .psb-inclusion__photo {
  overflow: hidden;
}

.psb-careers .psb-inclusion__photo img {
  width: 100%;
  height: 100% !important; /* override theme img { height: auto } */
  object-fit: cover;
  display: block;
}

/*
 * CONFLICT: careersTestStyles defines psb-inclusion__content with
 * background:#f8f9fb and padding:72px 64px. Our version has no background
 * and padding:48px 44px (inside a white card). Do not load both.
 */
.psb-careers .psb-inclusion__content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Theme h2 cascades as #00aae7 — override to blue */
.psb-careers .psb-inclusion__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 38px) !important;
  color: var(--ps-blue) !important;
  margin: 0 0 20px;
  line-height: 1.15 !important;
}

/*
 * CONFLICT: careersTestStyles also defines psb-inclusion__text with the same
 * properties. Both override theme p margins and use the same line-height.
 * No functional conflict but confirms files should not load simultaneously.
 */
.psb-careers .psb-inclusion__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ps-body);
  margin: 0 0 12px;
}

.psb-careers .psb-inclusion__btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  background: var(--ps-cyan);
  color: #fff !important; /* override theme a { color: #00aae7 } */
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 8px;
  transition: background 0.2s;
}

.psb-careers .psb-inclusion__btn:hover {
  background: #019fd6;
  color: #fff !important; /* prevent theme a:hover { color: #0054a6 } */
}

/* ============================================================
   SECTION 7 - Not Seeing The Right Role?
============================================================ */
.psb-careers .psb-notrole {
  background: #fff;
  padding: 80px 0;
}

.psb-careers .psb-notrole__card {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  box-shadow: 0 8px 40px rgba(0,43,85,0.18);
}

.psb-careers .psb-notrole__content {
  background: var(--ps-navy);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.psb-careers .psb-notrole__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--ps-cyan);
  text-transform: uppercase;
  display: block;
  margin-top: 0;
  margin-bottom: 16px;
}

/* Theme h2 cascades as #00aae7 — override to white on dark background */
.psb-careers .psb-notrole__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.psb-careers .psb-notrole__title span:first-child {
  color: #fff;
}

.psb-careers .psb-notrole__title span:last-child {
  color: var(--ps-cyan);
}

/* Override theme p margins */
.psb-careers .psb-notrole__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  margin: 0 0 32px;
}

.psb-careers .psb-notrole__photo {
  overflow: hidden;
}

.psb-careers .psb-notrole__photo img {
  width: 100%;
  height: 100% !important; /* override theme img { height: auto } */
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION 8 - Follow Us
============================================================ */
.psb-careers .psb-follow {
  background: var(--ps-light);
  padding: 64px 0 0;
  text-align: center;
  overflow: hidden;
}

.psb-careers .psb-follow__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--ps-body);
  text-transform: uppercase;
  display: block;
  margin-top: 0;
  margin-bottom: 14px;
}

/* Theme h2 cascades; span-level overrides handle the two-tone color */
.psb-careers .psb-follow__title {
  font-family: 'Trajan Pro 3', 'Trajan Pro', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 46px) !important;
  letter-spacing: -0.01em;
  margin: 0 0 48px;
  line-height: 1.1 !important;
  color: var(--ps-blue); /* fallback */
}

.psb-careers .psb-follow__title span:first-child {
  color: var(--ps-blue);
}

.psb-careers .psb-follow__title span:last-child {
  color: var(--ps-cyan);
}

.psb-careers .psb-follow__photos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.psb-careers .psb-follow__photos img {
  width: 180px;
  height: 180px !important;
  object-fit: cover;
  display: block;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .psb-careers .psb-hero__inner {
    grid-template-columns: 1fr;
  }
  .psb-careers .psb-hero__photo-left,
  .psb-careers .psb-hero__photos-right {
    display: none;
  }
  .psb-careers .psb-hero__content {
    padding: 60px 30px;
  }
  .psb-careers .psb-primepeople__inner {
    grid-template-columns: 1fr;
  }
  .psb-careers .psb-inclusion__card {
    grid-template-columns: 1fr;
  }
  .psb-careers .psb-inclusion__photo {
    min-height: 260px;
  }
  .psb-careers .psb-benefits__body {
    grid-template-columns: 1fr;
  }
  .psb-careers .psb-opps__meta,
  .psb-careers .psb-opps__roles,
  .psb-careers .psb-opps__photos {
    grid-template-columns: 1fr;
  }
  .psb-careers .psb-why-photo-center {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .psb-careers .psb-wrap {
    padding: 0 20px;
  }
  .psb-careers .psb-whywork__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .psb-careers .psb-why-photo-center {
    grid-column: auto;
    grid-row: auto;
  }
  .psb-careers .psb-opps__roles {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .psb-careers .psb-notrole__card {
    grid-template-columns: 1fr;
  }
  .psb-careers .psb-notrole__photo {
    min-height: 260px;
  }
  .psb-careers .psb-follow__photos {
    grid-template-columns: repeat(3, 1fr);
  }
}