/* ============================================================
   video-page.css — Components for video article pages
   Phase 9: 34 video pages

   Loaded alongside design-system.css.

   Existing components NOT duplicated here:
   - ffo-video-wrapper / ffo-play-btn  (design-system.css)
   - ffo-container                     (design-system.css)
   - ffo-section                       (design-system.css)
   - ffo-btn                           (design-system.css)
   ============================================================ */


/* ================================================================
   1. Video Hero
   Dark background, centered title, summary text, and topic tags.
   ================================================================ */

.video-hero {
  background: var(--ffo-dark);
  padding-top: 200px;
  padding-bottom: 80px;
  text-align: center;
}

.video-hero__title {
  font-family: var(--ffo-font-secondary);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ffo-white);
  margin: 0 0 24px;
  max-width: 800px;
  margin-inline: auto;
}

.video-hero__summary {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ffo-neutral-200);
  max-width: 640px;
  margin: 0 auto 32px;
}

.video-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.video-hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ffo-primary);
  background: rgba(108, 170, 128, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .video-hero {
    padding-top: 160px;
    padding-bottom: 56px;
  }

  .video-hero__summary {
    margin-bottom: 24px;
  }
}


/* ================================================================
   2. Video Embed Section
   Responsive 16:9 container for YouTube iframe with click-to-play.
   Uses ffo-video-wrapper / ffo-play-btn from design-system.css
   for the actual embed mechanics.
   ================================================================ */

.video-embed {
  padding: 64px 0;
}

.video-embed__container {
  max-width: 900px;
  margin-inline: auto;
}

/* Override default video-wrapper radius for a more prominent look */
.video-embed__container .ffo-video-wrapper {
  border-radius: var(--ffo-radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .video-embed {
    padding: 40px 0;
  }

  .video-embed__container .ffo-video-wrapper {
    border-radius: var(--ffo-radius-md);
  }
}


/* ================================================================
   3. Split content helper (from educational-page.css)
   ================================================================ */

.ffo-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


