.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.videos .video img {
  height: 230px;
  width: 100%;

  object-fit: cover;
  object-position: center center;
}

.videos .video .video_meta {
  background: var(--gold);
  padding: 15px;
  color: var(--white);

  margin-top: -5px;
}

.videos .video .video_meta a {
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {
  .videos {
    grid-template-columns: 1fr;
  }
}