/* ==========================================================================
   Why Ogle School — "What Can You Expect from Ogle School?": five black
   pink-top-border cards (3 + 2 wide on desktop), sparkle band at the bottom.
   ========================================================================== */

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

.pw-expect__sparkle {
  position: absolute;
  max-width: none;
  pointer-events: none;
}
.pw-expect__sparkle--mobile {
  left: -337px;
  top: 1565px;
  width: 1064px;
  height: 468px;
}
.pw-expect__sparkle--band { display: none; }

.pw-expect__inner {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}

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

.pw-expect__row {
  margin-top: 45px;
  display: grid;
  gap: 45px;
}
.pw-expect__row--first { margin-top: 40px; }

.pw-expect__card {
  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;
}

.pw-expect__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);
}

.pw-expect__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);
}
.pw-expect__card-body p + p { margin-top: 22.8px; }

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

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

  .pw-expect__title {
    font-size: 57px;
    line-height: 64.4px;
  }

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

  .pw-expect__card { padding: 31px 33px 35px; }
}
