.video-row {
  display: flex;
  justify-content: center; /* centra todo el conjunto */
  flex-wrap: wrap;
  gap: 10px; /*  espacio horizontal y vertical entre videos */
  margin-top: 50px;
 
}

.video-row iframe {
  width: 45%; /*  ligeramente más anchos si quieres que llenen más el espacio */
  height: 300px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .video-row iframe {
    width: 100%;
    margin-bottom: 10px;
  }
}
