/* IA Stream — video player */

.ia-stream-player {
  position: relative;
  width: 100%;
  background: black;
  aspect-ratio: 16 / 9;
}

/* Desktop: prevent the in-feed player from dominating tall viewports */
@media (min-width: 900px) {
  .ia-stream-card .ia-stream-player {
    max-height: 420px;
  }
}

.ia-stream-player iframe,
.ia-stream-player video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ia-stream-player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 0.9rem;
  pointer-events: none;
}
