.pv-video-module {
  margin: 36px 0;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid #d8e3ef;
  border-radius: 16px;
  background: linear-gradient(145deg, #f7faff 0%, #eef4fb 100%);
  box-shadow: 0 10px 30px rgba(20, 48, 82, .09);
}

.pv-video-module > h2 {
  margin-top: 0;
}

.pv-video-bridge {
  max-width: 76ch;
  color: #26394d;
}

.pv-video-source {
  margin: 14px 0 18px;
  padding: 10px 13px;
  border-left: 3px solid #d4a017;
  background: rgba(255, 255, 255, .76);
  color: #46586a;
  font-size: .9rem;
  line-height: 1.55;
}

.pv-video {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #0d1520;
  box-shadow: 0 8px 24px rgba(20, 40, 70, .18);
  cursor: pointer;
}

.pv-video:focus-visible {
  outline: 4px solid #ffd84d;
  outline-offset: 4px;
}

.pv-video-poster,
.pv-video iframe,
.pv-video-player,
.pv-video-player iframe {
  width: 100%;
  height: 100%;
}

.pv-video-poster {
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.pv-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 50px;
  border-radius: 14px;
  background: rgba(13, 21, 32, .86);
  transform: translate(-50%, -50%);
  transition: background .2s ease, transform .2s ease;
}

.pv-video:hover .pv-video-play,
.pv-video:focus-visible .pv-video-play {
  background: #1f6feb;
  transform: translate(-50%, -50%) scale(1.05);
}

.pv-video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}

.pv-video-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(9, 19, 31, .82);
  color: #fff;
  font-size: .86rem;
  line-height: 1.35;
  text-align: left;
}

.pv-video-player {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #0d1520;
  box-shadow: 0 8px 24px rgba(20, 40, 70, .18);
}

.pv-video-player iframe {
  display: block;
  border: 0;
}

.pv-video-watch {
  margin-top: 22px;
}

.pv-video-watch h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.pv-video-watch ul {
  margin-top: 0;
}

.pv-video-limit {
  margin-bottom: 0;
  color: #526579;
  font-size: .92rem;
}

.pv-video-fallback {
  margin: 12px 0 0;
  font-size: .88rem;
}

@media (max-width: 640px) {
  .pv-video-module {
    margin: 28px 0;
    padding: 18px;
  }

  .pv-video-label {
    font-size: .78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pv-video-play {
    transition: none;
  }
}
