.video {
  position: relative;
}

.video__pic {
  margin-bottom: -30px;

  img {
    display: block;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    margin-bottom: 0;

    img {
      float: right;
      position: relative;
      z-index: 11;
    }
  }

  .vidyard-player-container {
    display: none !important;
  }

  .vidyard-player-embed {
    display: none;
  }
}

.video__content {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #fff;

  @media (min-width: 768px) {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
  }
}

.video--green .video__content {
  background-color: var(--brand-green);
}

.video--red .video__content {
  background-color: var(--brand-red);
}

.video--grey .video__content {
  background-color: var(--brand-grey-dark);
}

.video__text {
  h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 26px;
  }

  p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;

    &:last-child {
      margin-bottom: 0;
    }
  }

  @media (min-width: 992px) {
    position: relative;
    padding-left: 45px;
    padding-right: 45px;

    p {
      font-size: 20px;
    }

    h3 {
      font-size: 32px;
    }
  }
}

.video__play {
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%);

  svg {
    width: 38px;
    height: 38px;

    path {
      stroke: var(--brand-green);
    }
  }

  @media (min-width: 992px) {
    svg {
      width: 64px;
      height: 64px;
    }
  }
}

.wistia-responsive-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.wistia-responsive-container span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}