.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  grid-gap: 20px;
  margin: 1rem 0;
  justify-items: start;
  object-fit: contain;
}

.video-list-item {
  display: none;
  width: 100%;
  height: auto;
}

iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  border-radius: var(--block-border-radius, 16px);
}