.iframe-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  max-height: 100%;

  &::before {
    content: "";
    position: absolute;
    inset: -3px;
    z-index: -1;
    background: rgba(62, 65, 69, 0.664);
    filter: blur(5px);
    opacity: .70;
  }

  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0% 0% 0% 0% round 10px);
  }
}