.video-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(196, 162, 110, 0.2), transparent 24%),
    linear-gradient(180deg, #f5f0e7 0%, #ece6db 56%, #e4dbce 100%);
  color: var(--text-dark);
}

.video-main {
  padding: 170px 0 96px;
}

.video-page__hero {
  margin-bottom: 34px;
}

.video-page__hero-card,
.video-page__cta-card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(196, 162, 110, 0.14), transparent 38%),
    rgba(43, 38, 35, 0.94);
  box-shadow: 0 28px 64px rgba(86, 64, 36, 0.12);
}

.video-page__hero-card {
  padding: 40px;
}

.video-page__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-light-secondary);
  font-size: 0.85rem;
}

.video-page__breadcrumbs a {
  color: rgba(255, 255, 255, 0.94);
  transition: color var(--transition);
}

.video-page__breadcrumbs a:hover {
  color: var(--brown-light);
}

.video-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.video-page__eyebrow,
.video-page__cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brown-light);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-page__eyebrow::before,
.video-page__cta-label::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.video-page__title {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-light);
}

.video-page__title-accent {
  color: var(--brown);
}

.video-page__lead,
.video-page__hero-note-text,
.video-page__cta-text {
  line-height: 1.75;
}

.video-page__lead {
  max-width: 720px;
  color: var(--text-light-secondary);
}

.video-page__hero-actions,
.video-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.video-page__hero-actions {
  margin-top: 28px;
}

.video-page .btn--outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text-light);
  background: transparent;
}

.video-page .btn--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.video-page__hero-note {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.video-page__hero-note-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(196, 162, 110, 0.14);
  color: var(--brown-light);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-page__hero-note-title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.02;
  color: var(--text-light);
}

.video-page__hero-note-text {
  color: var(--text-light-secondary);
}

.video-page__section-head {
  margin-bottom: 36px;
}

.video-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.video-page__card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(43, 38, 35, 0.08);
  background:
    radial-gradient(circle at top right, rgba(196, 162, 110, 0.12), transparent 26%),
    rgba(255, 252, 246, 0.96);
  box-shadow: 0 18px 48px rgba(72, 53, 33, 0.08);
}

.video-page__frame {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16 / 9;
}

.video-page__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}

.video-page__card-body {
  padding: 24px 24px 26px;
}

.video-page__card-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--brown-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-page__card-title {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.03;
  color: var(--text-dark);
}

.video-page__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.video-page__card-source {
  color: var(--text-dark-secondary);
  font-size: 0.92rem;
}

.video-page__card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown-dark);
  font-weight: 600;
}

.video-page__card-link::after {
  content: '→';
  font-size: 1rem;
}

.video-page__cta {
  margin-top: 28px;
}

.video-page__cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
}

.video-page__cta-copy {
  max-width: 760px;
}

.video-page__cta-title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.1vw, 3.6rem);
  line-height: 0.98;
  color: var(--text-light);
}

.video-page__cta-text {
  color: var(--text-light-secondary);
}

@media (max-width: 1180px) {
  .video-page__hero-grid,
  .video-page__grid,
  .video-page__cta-card {
    grid-template-columns: 1fr;
  }

  .video-page__cta-card {
    display: grid;
  }
}

@media (max-width: 840px) {
  .video-main {
    padding: 148px 0 72px;
  }

  .video-page__hero-card,
  .video-page__hero-note,
  .video-page__card,
  .video-page__cta-card {
    border-radius: 24px;
  }

  .video-page__hero-card,
  .video-page__hero-note,
  .video-page__cta-card {
    padding: 24px;
  }

  .video-page__title {
    font-size: 2.65rem;
  }

  .video-page__card-title,
  .video-page__hero-note-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  .video-main {
    padding: 134px 0 56px;
  }

  .video-page__grid {
    grid-template-columns: 1fr;
  }

  .video-page__hero-actions,
  .video-page__cta-actions,
  .video-page__card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-page__hero-actions .btn,
  .video-page__cta-actions .btn {
    width: 100%;
  }
}
