/* Front-end rendering for [flow-embed] (X/Twitter, Gist, Spotify, Google Maps). */

.flow-embed {
  margin: 1.5rem 0;
}

.flow-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0.5rem;
}

/* Gists and maps have no natural video aspect — cap their height instead. */
.flow-embed--tall iframe {
  aspect-ratio: auto;
  height: clamp(16rem, 60vh, 30rem);
}
