/* ==========================================================================
   Campus pages — "… Beauty School Schedule" program schedule cards
   Dark band, black cards with a pink top border, sparkle band at the bottom.
   ========================================================================== */

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

.ph-schedule__sparkle {
  position: absolute;
  max-width: none;
  pointer-events: none;
}
.ph-schedule__sparkle--mobile {
  left: -337px;
  top: 1324px;
  width: 1064px;
  height: 468px;
}
.ph-schedule__sparkle--band { display: none; }

.ph-schedule__inner {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}

.ph-schedule__heading { text-align: center; }

.ph-schedule__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 18.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--c-pink);
}

.ph-schedule__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;
}

.ph-schedule__cards {
  margin-top: 39px;
  display: grid;
  gap: 45px;
}

.ph-program {
  background: var(--c-black);
  border-top: 4px solid var(--c-pink);
  box-shadow: 0 4px 29.2px rgba(0, 0, 0, 0.25);
  padding: 31px 17px 35px; /* 31 + 4px border = the 35px content edge */
}

.ph-program__eyebrow {
  margin-top: -4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 18.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--c-pink);
}

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

.ph-program__meta {
  margin-top: 19px; /* Figma gap 24, trim compensated */
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22.8px;
  color: #b1b1b1;
}

.ph-program__body {
  margin-top: 36px; /* Figma gap 41, trim compensated */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  color: var(--c-white);
}

.ph-program__label {
  margin-top: 27px; /* Figma gap 32, trim compensated */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #b1b1b1;
}

.ph-program__times {
  margin-top: 28px; /* Figma gap 33, trim compensated */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.8px;
  color: var(--c-white);
}
.ph-program__times li {
  position: relative;
  padding-left: 24px;
}
.ph-program__times li::before {
  content: '\2022';
  position: absolute;
  left: 9px;
}

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

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

  .ph-schedule__eyebrow {
    font-size: 16px;
    line-height: 22.8px;
    letter-spacing: 3.2px;
  }

  .ph-schedule__title {
    font-size: 57px;
    line-height: 64.4px;
  }

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

  .ph-program { padding: 31px 33px 35px; }

  .ph-program__eyebrow {
    font-size: 16px;
    line-height: 22.8px;
    letter-spacing: 3.2px;
  }

  .ph-program__name {
    font-size: 44px;
    line-height: 49.7px;
  }
}
