.content-loader__interactive {
  width: 100%;
  height: auto;
}

/* This class is added within Caper itself, to allow Ember CSS to target */
/* the interactive canvas element specifically (Caper may render multiple */
/* canvas elements in some cases, like Story Factory). */
.content-loader__interactive .caper__interactive-canvas {
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.55);
  border-radius: 0;
}

.content-loader__interactive .mejs-container video {
  /* If the video styling of a mejs-container is 100%, then it will cause */
  /* mejs's JS logic to assume we want the video to take up its entire */
  /* parent container. This makes it vulnerable to generic CSS, like resets */
  /* or Tailwind's preflight CSS, that sets all video to max-width: 100%; */
  /* The version of mejs (https://github.com/mediaelement/mediaelement) that */
  /* we use is vendored into Caper in mediaelement-and-player.js */
  max-width: none;
}

