/* ==========================================================================
   Program pages — "Discover Your … Journey" info cards + schedules CTA
   (cosmetology/esthetics). Dark band, outlined black cards, sparkle band.
   ========================================================================== */

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

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

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

.po-journey__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 42.9px;
  text-transform: uppercase;
  text-align: center;
}

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

.po-journey__card {
  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-journey__card-title {
  margin-top: -8px; /* cap-trim: 39.9px line box vs the 35px content edge */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 28px;
  line-height: 39.9px;
  color: var(--c-white);
}

.po-journey__card-body {
  margin-top: 29px; /* Figma cap-gap 42, minus leading trim on both sides */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  color: var(--c-white);
}

/* Multi-line outline CTA (Figma Component 138: pad 27/36, wraps on mobile) */
.po-journey__cta {
  margin-top: 45px;
  width: 100%;
  height: auto;
  padding: 27px 36px;
  line-height: 22.8px;
  text-align: center;
}

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

  .po-journey__sparkle--mobile { display: none; }
  .po-journey__sparkle--band {
    display: block;
    left: calc(50% - 852 * var(--s));
    top: calc(495 * var(--s));
    width: calc(1704 * var(--s));
    height: calc(750 * var(--s));
  }

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

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

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

  .po-journey__cta {
    margin-top: 76px;
    display: inline-flex;
    width: auto;
    height: 58px;
    padding: 5px 36px;
    line-height: 1;
  }
  .po-journey__cta-row { text-align: center; }
}
