/* =====================================================
   VINCITORE DESIGN -- SHARED VIDEO PROJECT PAGE STYLES
   Used by: project_chiro-videos.html
            project_dental-videos.html
   ===================================================== */

/* ── MAIN LAYOUT ───────────────────────────────────── */
.pvp-body {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
}

.pvp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* ── TEXT COLUMN (left) ────────────────────────────── */
.pvp-text-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pvp-text-block {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

/* Label matches site standard (same as pp-section-label) */
.pvp-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--light-grey);
}

.pvp-lead {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.72;
}

.pvp-text-block p {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ── MEDIA COLUMN (right) ──────────────────────────── */
/* NOT sticky — prevents column scrolling independently */
.pvp-media-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Hero video — Wistia responsive wrapper already has padding-bottom:56.25%
   We just need a border-radius wrapper around it                         */
.pvp-hero-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
}

/* ── SECONDARY VIDEOS (chiro page — desktop only) ─── */
.pvp-secondary-videos {
  display: flex;
  flex-direction: column;        /* stacked vertically */
  gap: 1.25rem;
}

.pvp-secondary-embed {
  width: 100%;                   /* full width — matches hero above */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
}

/* ── SECONDARY IMAGE (dental page — desktop only) ─── */
.pvp-secondary-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pvp-secondary-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.pvp-img-fallback {
  width: 100%;
  aspect-ratio: 750 / 422;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  color: var(--text-muted);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-lg);
}

/* ── PULL QUOTE (chiro page — desktop only) ─────── */
.pvp-pullquote {
  border-left: 2px solid var(--gold);
  padding: .85rem 0 .85rem 1.25rem;
}
.pvp-pullquote p {
  font-size: .92rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.72;
  margin-bottom: .6rem;
}
.pvp-cite {
  font-size: .65rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
  border-left: 2px solid var(--gold);
  padding: .85rem 0 .85rem 1.25rem;
}
.pvp-pullquote p {
  font-size: .92rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.72;
  margin-bottom: .6rem;
}
.pvp-cite {
  font-size: .65rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PAGE HERO LINK ────────────────────────────────── */
.page-hero-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
  transition: color .2s, border-color .2s;
}
.page-hero-link:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .pvp-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* Hero video moves to top on mobile */
  .pvp-media-col { order: -1; }

  /* Secondary videos, secondary image, and pull quote
     are all hidden on mobile as requested             */
  .pvp-secondary-videos,
  .pvp-secondary-img,
  .pvp-pullquote {
    display: none;
  }
}