HTML, BODY {
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-family: Trebuchet MS, Helvetica, Arial, sans-serif;
}

BODY {
  background: #222;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.025) 10%, transparent 0), linear-gradient(#222, #000);
  background-size: .75em 100%, 100% 100%;
  display: flex;
  align-items: center;
}

:root {
  --height: 400px;
}

.wrapper {
  width: 800px;
  flex-shrink: 0;
  margin: auto;
  background: #FFF;
  -webkit-clip-path: polygon(100% 0%, 90% 100%, 0% 100%, 10% 0%);
          clip-path: polygon(100% 0%, 90% 100%, 0% 100%, 10% 0%);
}

.visual {
  float: left;
  max-width: 35%;
  min-height: var(--height);
  max-height: 100%;
  background-image: url(https://yoksel.github.io/Sandbox/img/demo/running-woman-left-filip-mroz.jpg);
  background-size: cover;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
  shape-outside: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
  margin-right: 2em;
}

IMG {
  display: block;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
}

P {
  margin: 1.5em 0;
}

.right-corner {
  float: right;
  width: 10%;
  min-height: var(--height);
  height: 100%;
  max-height: 100%;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  shape-outside: polygon(100% 0%, 100% 100%, 0% 100%);
  margin-left: 2em;
}