#videos-results {
  margin-top: 3rem;
}

#videos-results .videos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 36px;
  row-gap: 48px;
}

.video-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 576px) {
  #videos-results .videos-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  #videos-results .videos-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
