/* ==========================================================================
   Programs Overview — "Discover Your Pathway" program cards
   Dark band at both widths: outlined black cards with glitter/pink titles,
   sparkle band decoration at the bottom.
   ========================================================================== */

.po-pathway {
  position: relative;
  overflow: hidden;
  background: var(--c-gray-card);
  padding: 43px 16px 95px;
}

.po-pathway__sparkle {
  position: absolute;
  max-width: none;
  pointer-events: none;
}
.po-pathway__sparkle--mobile {
  left: -337px;
  top: 951px;
  width: 1064px;
  height: 468px;
}
.po-pathway__sparkle--band { display: none; }

.po-pathway__inner {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}

.po-pathway__heading {
  position: relative;
  z-index: 1;
  text-align: center;
  pointer-events: none;
}

.po-pathway__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--c-pink);
}

.po-pathway__title {
  margin-top: 16px; /* Figma gap 21, cap-trim compensated */
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 42.9px;
  text-transform: uppercase;
}

.po-pathway__intro {
  display: none;
  margin-top: 71px; /* Figma gap 76, leading trim compensated */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  color: var(--c-white);
  text-align: center;
}
.po-pathway__intro p + p { margin-top: 10px; } /* Figma: 82px 3-line block */

.po-pathway__cards {
  margin-top: 40px;
  display: grid;
  gap: 45px;
}

.po-card {
  position: relative;
  background: var(--c-black);
  border: 1px solid var(--c-pink);
  box-shadow: 0 4px 29.2px rgba(0, 0, 0, 0.25);
  padding: 35px 17px;
}

.po-card__eyebrow {
  margin-top: -4px; /* cap-trim: cap top at the 35px content edge */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--c-pink);
}

.po-card__name {
  margin-top: 19px; /* Figma 24 cap-to-cap, minus leading trim */
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 49.7px;
  text-transform: uppercase;
}

.po-card__body {
  margin-top: 37px; /* Figma group gap 42, minus leading trim */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  color: var(--c-white);
}

.po-card__cta {
  margin-top: 27px; /* Figma 32, minus leading trim */
  width: 100%;
}

/* ================= Desktop (>=900px) ================= */
@media (min-width: 900px) {
  .po-pathway {
    --s: calc(min(100vw, 1680px) / 1680);
    padding: 50px var(--pad-x) 95px;
  }

  .po-pathway__sparkle--mobile { display: none; }
  /* Full-width sparkle band at the section bottom (Figma STRETCH, clipped) */
  .po-pathway__sparkle--band {
    display: block;
    left: calc(50% - 852 * var(--s));
    top: calc(454 * var(--s));
    width: calc(1704 * var(--s));
    height: calc(750 * var(--s));
  }

  .po-pathway__title {
    font-size: 57px;
    line-height: 64.4px;
  }

  .po-pathway__intro { display: block; }

  .po-pathway__cards {
    margin-top: 71px; /* Figma gap 76, leading trim compensated */
    grid-template-columns: 1fr 1fr;
  }

  .po-card { padding: 35px 33px; }
}
