.embed-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}
.embed-container::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.embed-container .embed-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 1024px) {
  .embed-container {
    max-width: 100%;
    border-radius: 6px;
  }
}
@media (max-width: 768px) {
  .embed-container {
    border-radius: 0;
    box-shadow: none;
  }
}/*# sourceMappingURL=embed.css.map */