/* Background Video module */

.bg-video-module {
  margin: 0;
}

.bg-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Matches Craft's max-h-[80dvh] on hero background videos */
.bg-video--capped {
  max-height: 80dvh;
}

/* Fallback for browsers without dvh support */
@supports not (height: 80dvh) {
  .bg-video--capped {
    max-height: 80vh;
  }
}

/* Editor-only placeholder (rendered when no file is selected) */
.bg-video-module__placeholder {
  padding: 40px 20px;
  text-align: center;
  background: #f5f5f5;
  border: 1px dashed #cbd6e2;
  color: #506e91;
  font-size: 14px;
}
