.tvp {
  max-width: 80vw;
  margin: 0 auto;
  text-align: center;
}

/* Responsive wrapper for 16:9 aspect ratio */
.tvp .tvp-stage {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.tvp .tvp-stage iframe,
.tvp .tvp-stage video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--tvp-radius, 12px);
  display: block;
}

/* Navigation placed below video */
.tvp .tvp-nav {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.tvp .tvp-arrow {
  background: none;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: #222;
}

.tvp .tvp-meta { margin-top:12px; }
.tvp .tvp-title { font-weight:600; }
.tvp .tvp-caption { font-style:italic; font-size:14px; }
