.ipl-character-image {
  width: min(390px, 58%);
  height: min(390px, 58vh);
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid rgba(255,255,255,.2);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
  transition: transform .2s, box-shadow .2s;
}
.ipl-coach-video.is-speaking .ipl-character-image {
  animation: ipl-character-talk .7s ease-in-out infinite alternate;
  box-shadow: 0 30px 90px rgba(36,71,216,.55), 0 0 0 8px rgba(107,224,193,.12);
}
@keyframes ipl-character-talk {
  from { transform: scale(1); }
  to { transform: scale(1.018) translateY(-3px); }
}
@media (max-width: 650px) {
  .ipl-character-image { width: min(310px, 76%); height: min(310px, 48vh); }
}
