/* ==========================================================================
   VORA — Video section (short brand video strip between stats and pricing)
   ========================================================================== */

.video-section {
  width: 100%;
  background-color: var(--bg-white);
  padding: 0 0 40px;
}

.video-section__frame {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
}

.video-section__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-black);
}

.video-section__media video,
.video-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14, 14, 14, 0.4);
  z-index: 1;
}

.video-section__caption {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 60%;
}

.video-section__accent {
  flex: 0 0 auto;
  width: 4px;
  align-self: stretch;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.video-section__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bg-beige);
}

@media (max-width: 809px) {
  .video-section__caption {
    left: 20px;
    bottom: 20px;
    max-width: 85%;
  }

  .video-section__title {
    font-size: 22px;
  }
}
