
  .video {
    position: relative;
    width: 33.3%;
    aspect-ratio: 9/16;
    background-color: silver;
    overflow: hidden;
  }

  .video--aspect-2 {
    aspect-ratio: 3/4;
  }

  .video--unloaded video {
    opacity: 0;
  }

  .video video {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 300ms ease;
    opacity: 1;
  }

  .video__poster {
    position: absolute;
    width: 100%;
    top: 0;
    image-rendering: pixelated;
  }


  .__staticbuild-badge * {
    all: unset;
  }

  .__staticbuild-badge {
    display: inline-block;
    border-radius: 100px;
    border: 1px solid black;
    padding: 5px 12px;
    font-size: 11px;
    text-transform: lowercase;
  }

  .__staticbuild-badge a,
  .__staticbuild-badge a:visited,
  .__staticbuild-badge a:active {
    cursor: pointer;
    color: black;
    text-decoration: underline;
  }

