.video-block {
  flex: 1;
  border: 1px solid #383a44;
  border-radius: 4px 0 0 4px;
  border-right: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;

  @include screen(lg, max) {
    width: 100%;
    flex: auto;
    border-radius: 4px 4px 0 0;
    border-right: 1px solid #383a44;
    border-bottom: none;
  }

  @include screen(md, max) {
    border: none;
  }
}
