.video-content {
  position: relative;
  margin: 100px 0;
  padding: 100px 0;
  background: $gray-10;

  .background-wrapper & {
    background: transparent;
  }

  @include sm {
    padding: 60px 0;
    margin: 60px 0;
  }

  &__wrapper {
    width: 100%;
    max-width: $max-width;
    padding: 0 $gutter;
    margin: 0 auto;

    @include sm {
      padding: 0 $gutter-mobile;
    }
  }

  &__video {
    position: relative;
    margin: 50px auto 0;
    width: calc(100% / 12 * 10);
    overflow: hidden;

    @include sm {
      width: 100%;
      margin: 40px auto 0;
    }

    &::before {
      content: '';
      display: block;
      width: 100%;
      padding-top: 56.25%;
    }

    iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
