.embed-container {
  --video--width: 406;
  --video--height: 608;

  position: relative;
  /* padding-bottom: calc(
    var(--video--height) / var(--video--width) * 100%
  ); */
  overflow: hidden;
  max-width: 100%;
  width: calc(var(--video--width) * 1px);
  height: calc(var(--video--height) * 1px);
  background: black;
  border-radius: 12px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
