.video {
  width: 100%;
  padding-bottom: 54%;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius); }
  .video__link {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 49%;
    overflow: hidden;
    border-radius: var(--border-radius); }
    .video__link:after {
      content: '';
      display: block;
      width: 140px;
      height: 140px;
      max-width: 20vw;
      max-height: 20vw;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: url(../img/play.svg) center center no-repeat;
      background-size: contain;
      z-index: 1; }
    .video__link img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .video:after {
    content: '';
    display: block;
    width: 140px;
    height: 140px;
    max-width: 20vw;
    max-height: 20vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/play.svg) center center no-repeat;
    background-size: contain;
    z-index: 1;
    cursor: pointer;
    pointer-events: none; }
  .video_clicked:after {
    content: none; }
  .video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
