.video-embed {
  position: relative;
  cursor: pointer;
}
.video-embed__trigger {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  background: none;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0;
}
.video-embed__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-embed__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-embed__play-icon {
  width: auto;
  height: 100px;
  opacity: 0.8;
}
.video-embed__modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.video-embed__modal.is-open {
  display: flex;
}
.video-embed__modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
}
.video-embed__close {
  position: absolute;
  top: -2.5rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}
.video-embed__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.video-embed__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-embed__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-embed__preview-notice {
  padding: 1rem;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  text-align: center;
}

/*# sourceMappingURL=video-embed.css.map */
