.hero-grid.pp-video-hero {
  grid-template-columns: minmax(360px, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.pp-hero-video {
  width: min(100%, 680px);
  justify-self: end;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(245, 194, 66, .36);
  border-radius: 18px;
  background: rgba(12, 15, 16, .82);
  box-shadow: 0 28px 70px -24px rgba(0, 0, 0, .8);
}

.pp-hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 11px;
  background: #0c0f10;
  object-fit: cover;
}

.pp-hero-video figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 7px 3px;
  color: #c9c8c2;
  font: 600 12px/1.4 ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  text-align: left;
}

.pp-video-expand {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 194, 66, .58);
  border-radius: 9px;
  color: #f5c242;
  background: rgba(245, 194, 66, .08);
  font: inherit;
  cursor: pointer;
}

.pp-video-expand:hover {
  background: rgba(245, 194, 66, .16);
}

.pp-video-expand:focus-visible {
  outline: 3px solid rgba(245, 194, 66, .45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-grid.pp-video-hero { grid-template-columns: 1fr; }
  .pp-hero-video { width: min(100%, 680px); justify-self: start; }
}

@media (max-width: 520px) {
  .pp-hero-video figcaption { align-items: stretch; flex-direction: column; }
  .pp-video-expand { width: 100%; }
}
