
/* Reset existing Early-Careers.css rules for testimonials page */
[data-page="Testimonials"] .pc-PhotoCard {
  min-height: unset !important;
  max-height: unset !important;
}

/* Up to 380px width - Fixed 525px height */
@media (max-width: 380px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    aspect-ratio: 380/525 !important;
    height: 525px !important;
    max-height: 525px !important;
    min-height: 525px !important;
  }
}

/* 381px to 450px - Mobile devices like 425px should get 592.5px height */
@media (min-width: 381px) and (max-width: 450px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    aspect-ratio: 395/592.5 !important;
    height: auto !important;
    max-height: 592.5px !important;
    min-height: 525px !important;
  }
}

/* 451px to 496px - Transition back to 525px height */
@media (min-width: 451px) and (max-width: 496px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    aspect-ratio: 497/525 !important;
    height: 525px !important;
    max-height: 525px !important;
    min-height: 525px !important;
  }
}

/* 497px to 767px - Scale from 525px to 700px height */
@media (min-width: 497px) and (max-width: 767px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    aspect-ratio: 767/700 !important;
    height: auto !important;
    max-height: 700px !important;
    min-height: 525px !important;
  }
}

/* 768px to 884px - Fixed 525px height with large image */
@media (min-width: 768px) and (max-width: 884px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    aspect-ratio: 884/525 !important;
    height: 525px !important;
    max-height: 525px !important;
    min-height: 525px !important;
  }
}

/* 885px to 1130px+ - Scale up to 675px height */
@media (min-width: 885px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    aspect-ratio: 1130/675 !important;
    height: auto !important;
    max-height: 675px !important;
    min-height: 525px !important;
  }
}


/* Ensure proper scaling at 767px transition point */
@media (min-width: 767px) and (max-width: 767px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    height: 525px !important;
  }
}

/* Ensure proper scaling reaches target heights */
@media (min-width: 1130px) {
  [data-page="Testimonials"] .pc-PhotoCard {
    height: 675px !important;
    max-height: 675px !important;
  }
}

/* Remove play symbol from testimonials page buttons */
[data-page="Testimonials"] .ui-PlayButtonGreen[data-story-video]:before {
  display: none !important;
}
