/* ============================================
   VIDEO BANNER — Full-bleed video + headline overlay
   ============================================ */

.video-banner {
  position: relative;
  width: calc(100% - var(--spacing-xl));
  margin: var(--spacing-2xl) auto;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 16 / 9;
  background: #000;
  z-index: 1;
}

.video-banner video,
.video-banner img {
  display: none; /* Hero video will show behind instead */
}

.video-banner__overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
  border-radius: var(--radius-lg);
  min-height: 100%;
  z-index: 1;
}

.video-banner__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: var(--spacing-md, 16px);
}

.video-banner__subtitle {
  font-family: var(--font-family-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 0 var(--spacing-sm, 12px) 0;
}

.video-banner__cta {
  padding: 1rem 2rem;
  background: var(--color-accent, #4ade80);
  color: var(--color-text, #000);
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  border-radius: var(--radius-full, 999px);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast, 0.2s);
  text-decoration: none;
  display: inline-block;
}

.video-banner__cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .video-banner {
    width: calc(100% - var(--spacing-md));
    aspect-ratio: 4 / 5;
  }

  .video-banner__overlay {
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }

  .video-banner__cta {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
