/* =========================================================
   Promo split — video + content (display_order 6)
   ========================================================= */
.bn-promo-video-section {
  position: relative;
  padding: 8px 0 40px;
}

.bn-promo-video-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  min-height: 360px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.bn-promo-video-split__media {
  position: relative;
  min-height: 360px;
  background: #0f172a;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e8ecef;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.bn-promo-video-split__media video,
.bn-promo-video-split__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.bn-promo-video-split__media.is-playing .bn-promo-video-split__play {
  opacity: 0;
  pointer-events: none;
}

.bn-promo-video-split__media.is-playing:hover .bn-promo-video-split__play {
  opacity: 1;
  pointer-events: auto;
}

.bn-promo-video-split__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.35s ease;
}

.bn-promo-video-split__media.is-playing .bn-promo-video-split__poster {
  opacity: 0;
  pointer-events: none;
}

.bn-promo-video-split__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.35);
  cursor: pointer;
  transition: background 0.25s ease;
}

.bn-promo-video-split__play:hover {
  background: rgba(15, 23, 42, 0.48);
}

.bn-promo-video-split__media.is-playing .bn-promo-video-split__play {
  display: none;
}

.bn-promo-video-split__play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bn-primary);
  display: grid;
  place-items: center;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.bn-promo-video-split__play:hover .bn-promo-video-split__play-icon {
  transform: scale(1.06);
}

.bn-promo-video-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 48px 44px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 45%, #1f2937 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.bn-promo-video-split__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bn-promo-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.bn-promo-video-split__content > * {
  position: relative;
  z-index: 1;
}

.bn-promo-video-split__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bn-primary-tint);
  color: #dbeafe;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bn-promo-video-split__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.bn-promo-video-split__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
}

.bn-promo-video-split__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 4px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--bn-primary) !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.bn-promo-video-split__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--bn-primary) !important;
}

.bn-promo-video-split__btn i {
  font-size: 13px;
}

@media (max-width: 991px) {
  .bn-promo-video-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bn-promo-video-split__media,
  .bn-promo-video-split__media video,
  .bn-promo-video-split__media iframe {
    min-height: 260px;
  }

  .bn-promo-video-split__content {
    padding: 32px 24px;
  }
}

@media (max-width: 575px) {
  .bn-promo-video-split__media,
  .bn-promo-video-split__media video,
  .bn-promo-video-split__media iframe {
    min-height: 220px;
  }

  .bn-promo-video-split__play-icon {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .bn-promo-video-split__content {
    padding: 24px 18px;
    gap: 12px;
  }

  .bn-promo-video-split__text {
    font-size: 14px;
  }
}
