.video-gallery {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.video-gallery__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 20px 0;
  padding: 0 0 30px 0;
  width: 100%;
  min-height: 350px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.video-gallery__image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px 0;
  width: 100%;
  height: 180px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.video-gallery__image:hover .video-gallery__icon {
  background-color: rgb(4, 133, 208);
}
.video-gallery__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(4, 133, 208, 0.7);
  transition: background-color 0.2s ease-out;
}
.video-gallery__icon img {
  display: block;
  max-width: 40px;
}
.video-gallery__date {
  margin: 0 0 10px 0;
  padding: 0 25px;
  font-size: 0.8125rem;
  line-height: 1.3rem;
  color: #586169;
}
.video-gallery__name {
  padding: 0 25px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #0485d0;
}
@media only screen and (min-width: 560px) {
  .video-gallery__item {
    margin: 0 30px 30px 0;
    width: calc(50% - 15px);
  }
  .video-gallery__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .video-gallery__item {
    margin: 0 30px 30px 0;
    width: calc(33.33% - 20px);
  }
  .video-gallery__item:nth-child(2n) {
    margin-right: 30px;
  }
  .video-gallery__item:nth-child(3n) {
    margin-right: 0;
  }
  .video-gallery__name {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
}