/* ============================================================
   CYCLICAL TRACKS — videos.css
   ============================================================ */

.videos-section {
  margin-top: var(--header-h);
  background: #0d0d0d;
  padding: 2rem 0;
}

.video-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto 2px;
  padding: 3rem 3rem;
  gap: 3rem;
  align-items: flex-start;
  background: #1a1a1a;
  margin-bottom: 20px;
}

/* ── Info column ── */
.video-info {
  display: flex;
  flex-direction: column;
}

.video-ref {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #f2f0ec;
  line-height: 1.2;
  margin-bottom: 0;
}

.video-redline {
  width: 50px;
  height: 2px;
  background: #c0203a;
  margin: 0.8rem 0 1.2rem;
}

.video-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(242,240,236,0.6);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}

.video-credit {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(242,240,236,0.4);
  line-height: 1.6;
  font-style: italic;
}

/* ── Embed column ── */
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Alternating background ── */
.video-entry:nth-child(even) {
  background: #222222;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .video-entry {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
}
