/* ---------- Videos: sidebar list + player stage ---------- */
.video-layout{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px 72px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* ---------- Sidebar list ---------- */
.video-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  max-height: 460px;
  overflow-y: auto;
}

.video-list-item{
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: "slight-chance", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.video-list-item:hover{
  color: var(--text);
  border-color: var(--border);
}

.video-list-item.is-active{
  color: var(--red-glow);
  background: rgba(226,52,44,0.08);
  border-color: var(--red);
}

/* ---------- Player stage ---------- */
.video-stage{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-player{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.video-title{
  font-family: "slight-chance", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.video-notes{
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 780px){
  .video-layout{
    grid-template-columns: 1fr;
  }
  .video-list{
    max-height: 220px;
  }
}
