/* Horizontal layout */
.uu-embed-widget.embed-layout-horizontal .youtube-video {
  display: flex;
  justify-content: center;
  aspect-ratio: 16 / 9; /* Enforces 16:9 aspect ratio */
}

/* Vertical layout */
.uu-embed-widget.embed-layout-vertical .youtube-video {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 360px; /* Limit width for vertical videos */
  aspect-ratio: 9 / 16; /* Enforces 9:16 aspect ratio */
}

.youtube-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}