/**
 * @file
 * Styles for video embeds.
 */

.video {
  padding-block: var(--spacing-4xl);
  display: flex;
  border-radius: var(--border-radius-base);
}

video,
.video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-base);
  overflow: hidden;
}
