/* Watch: player column + up-next rail. */
#watchView {
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1080px) {
  #watchView { grid-template-columns: minmax(0, 1fr); }
}

.watch-main { min-width: 0; }

/* Empty sized box. ExpVideo positions the real <video> over this rect. */
.watch-player-slot {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 14px;
  background: #000 center / cover no-repeat;
  overflow: hidden;
}
.watch-player-slot--portrait {
  aspect-ratio: 9 / 16;
  width: min(420px, 100%);
  margin-inline: auto;
}

.watch-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin: 16px 0 6px;
}
.watch-meta { color: var(--app-dim); font-size: 13.5px; margin-bottom: 4px; }

.watch-rail h2 { font-size: 16px; font-weight: 700; margin: 0 0 12px; }
.up-next { display: flex; flex-direction: column; gap: 14px; }
/* The rail uses the same card, laid out horizontally. */
.up-next .video-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.up-next .video-card__title { margin-top: 0; font-size: 13.5px; }
