.pxblock--nexus-video {
  padding: 3rem 0;
}

.nexus-video__heading {
  margin-bottom: 1.5rem;
}

.nexus-video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 25px;
}

.nexus-video__embed iframe,
.nexus-video__embed embed,
.nexus-video__embed object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.nexus-video__embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 25px;
}

.nexus-video__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
  border-radius: 25px;
}

.nexus-video__poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.nexus-video__play-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 72px;
  height: 72px;
  transition: transform 0.2s ease;
}

.nexus-video__play-btn:hover {
  transform: scale(1.1);
}

.nexus-video__play-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nexus-video__caption {
  font-size: 16px;
  line-height: 22px;
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 20px;
}

.nexus-video__body {
  margin-top: 40px;
}
