.video-wrapper.patient-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 48px;
}

.patient-video-card {
  min-width: 0;
  background: #171d14;
  border: 1px solid #567f24;
  border-radius: 12px;
  overflow: hidden;
}

.patient-video-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #070a07;
}

.patient-video-card.is-wide .patient-video-player {
  aspect-ratio: 16 / 9;
}

.patient-video-player iframe,
.patient-video-play,
.patient-video-play img {
  width: 100%;
  height: 100%;
}

.patient-video-player iframe {
  border: 0;
}

.patient-video-play {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #070a07;
}

.patient-video-play img {
  display: block;
  object-fit: cover;
}

.patient-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 64px;
  height: 48px;
  border-radius: 12px;
  background: #62a707;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 3px 15px #0009;
}

.patient-video-play:hover .patient-video-play-icon,
.patient-video-play:focus-visible .patient-video-play-icon {
  background: #416d07;
}

.patient-video-play:focus-visible,
.patient-video-card a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.patient-video-card p {
  padding: 12px 14px 16px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .video-wrapper.patient-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .video-wrapper.patient-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .patient-video-card p {
    font-size: 14px;
    padding: 10px;
  }
}