.media-play-icon {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: transparent;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.media-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  transform: translateX(1px);
}

.video-card .play.media-play-icon {
  background: rgba(255, 255, 255, .12);
  color: transparent;
}

.video-card:hover .play.media-play-icon,
.video-card:focus-visible .play.media-play-icon,
.team-video-play:hover,
.team-video-play:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .28);
  color: transparent;
  transform: scale(1.12);
}

.team-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  margin: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.team-video-play:hover,
.team-video-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.12);
}

.team-video-play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.person[data-team-member="עופר אלוני"] .photo {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .media-play-icon {
    transition: none;
  }
}
