/* ==========================================================================
   Programs Overview — "Our Graduates" testimonials + video
   Dark band at both widths: #161616 cards on black, pink quote mark,
   iridescent ring deco at the left (desktop), video still below.
   ========================================================================== */

.po-quotes {
  position: relative;
  overflow: hidden;
  background: var(--c-black);
  padding: 50px 16px 95px;
}

.po-quotes__swirl { display: none; }

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

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

.po-quotes__heading {
  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;
  text-align: center;
}
.po-quotes__heading-chip { color: var(--c-pink); }

.po-quotes__cards {
  margin-top: 71px; /* Figma gap 76, minus leading trim */
  display: grid;
  gap: 45px;
}

.po-quotes__card {
  background: var(--c-gray-card);
  box-shadow: 0 4px 29.2px rgba(0, 0, 0, 0.25);
  padding: 35px 33px;
}

.po-quotes__marks {
  display: flex;
  color: var(--c-pink);
}

.po-quotes__quote { margin: 37px 0 0; }
.po-quotes__quote p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: var(--c-white);
}

.po-quotes__attribution {
  margin-top: 36px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--c-white);
}
.po-quotes__role { color: var(--c-pink); }

.po-quotes__video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 191px;
  margin-top: 45px;
  box-shadow: 0 4px 29.2px rgba(0, 0, 0, 0.25);
}
.po-quotes__video-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.po-quotes__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.po-quotes__play {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.po-quotes__play-icon {
  width: 34.6px;
  height: 38.8px;
  transform: translateX(4.4px);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.po-quotes__play-icon path {
  fill: rgba(255, 255, 255, 0.55);
  transition: fill 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.po-quotes__video:hover .po-quotes__play,
.po-quotes__video:focus-visible .po-quotes__play { background: var(--c-white); }
.po-quotes__video:hover .po-quotes__play-icon,
.po-quotes__video:focus-visible .po-quotes__play-icon { transform: translateX(4.4px) scale(1.356); }
.po-quotes__video:hover .po-quotes__play-icon path,
.po-quotes__video:focus-visible .po-quotes__play-icon path { fill: var(--c-pink); }

/* Mission + values lines (Why Ogle School page, below the video) */
.po-quotes__mission {
  margin-top: 45px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: var(--c-white);
}
.po-quotes__values {
  margin-top: 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: var(--c-pink);
}

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

  .po-quotes__mission { margin-top: calc(76 * var(--s)); }

  /* Iridescent ring, bleeding off the left edge (mirrored fill, as on home) */
  .po-quotes__swirl {
    display: block;
    position: absolute;
    left: calc(50% - 1004 * var(--s));
    top: calc(275 * var(--s));
    width: calc(717 * var(--s));
    height: calc(628 * var(--s));
    max-width: none;
    transform: scaleY(-1);
    pointer-events: none;
  }

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

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

  .po-quotes__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .po-quotes__card { min-height: calc(494 * var(--s)); }

  .po-quotes__video {
    width: calc(754 * var(--s));
    height: calc(403 * var(--s));
    margin: calc(76 * var(--s)) auto 0;
  }
  .po-quotes__play {
    width: calc(108 * var(--s));
    height: calc(108 * var(--s));
  }
}
