.youtube-feed {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

ul.youtube-feed {
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}

.video-info {
  display: flex;
  justify-content: space-between;
}

.video-container {
  position: relative;
  width: 33%;
  padding-bottom: calc(56.25% * 0.33);
  border: 3px solid white;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 674px) {
  .video-container {
    width: 100%;
    padding-bottom: 56.25%;
  }
}