body.post-type-archive-videos section {
  float: none;
}

.section-youtube-videos {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.section-youtube-video-date {
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 14px;
  padding-bottom: 0;
  text-transform: none;
  color: #777;
}

.yt-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.yt-video-container iframe,
.yt-video-container object,
.yt-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yt-video-wrapper {
  position: relative;
  max-width: 1100px;
  max-height: 616px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.yt-video-wrapper:hover .yt-video-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.yt-video-wrapper .yt-video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 320ms ease;
}

.yt-video-wrapper .yt-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.yt-video-wrapper .yt-video>svg {
  transition: fill 320ms ease;
}

.yt-video-wrapper .yt-video>svg:hover {
  fill: #E92E2C;
}

@media screen and (min-width:768px) {
  .section-youtube-videos {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-youtube-video-date {
    margin-bottom: 24px;
  }

  .section-youtube-videos .yt-video-wrapper {
    margin-bottom: 80px;
  }

  .section-youtube-videos .yt-video-wrapper:last-child {
    margin-bottom: 0;
  }
}