.videos-wrapper {
  margin: -15px;
}

.videos {
  display: flex;
  flex-wrap: wrap;
}

.video {
  display: block;
  overflow: hidden;

  width: 39rem;
  margin: 15px;
  padding: 2rem;

  color: #000;
  border-radius: 5px;
  background: #fff;
}
.video:hover {
  color: #fff;
  background: linear-gradient(90deg, rgb(32, 156, 255) 0%, rgb(0, 83, 233) 100%);
  box-shadow: 0px 0px 20px 0px rgba(31, 153, 254, 0.5);
}
.video:hover .video__foot {
  color: #fff;
}

.video__head {
  width: 100%;
}

.video__image {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 0;
  padding-top: 56%;

  border-radius: 5px;
}

.video__body {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  height: 5rem;
  margin: 2rem 0;

  text-overflow: ellipsis;

  font-size: 1.8rem;
  line-height: 2.5rem;

  -webkit-line-clamp: 2;
}

.video__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #818181;

  font-size: 1.6rem;
}

.video__icon {
  margin-right: 1rem;

  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .videos-wrapper {
    margin: 0;
  }
  .video {
    width: 100%;
    margin: 1rem;
  }
}