/* ── Video Break ─────────────────────────────────────────── */

.sh-video-break {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 64px 24px;
  gap: 32px;
}

.sh-video-break__text {
  text-align: center;
  max-width: 600px;
}

.sh-video-break__heading {
  font-family: var(--font-deuterium, sans-serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #231f20;
  margin: 0 0 8px;
}

.sh-video-break__subheading {
  font-family: var(--font-deuterium, sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #777;
  margin: 0;
}

.sh-video-break__container {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.sh-video-break__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sh-video-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}

/* ── Responsive: Mobile ──────────────────────────────────── */

@media (max-width: 809px) {
  .sh-video-break {
    padding: 48px 24px;
    gap: 24px;
  }

  .sh-video-break__heading {
    font-size: 28px;
  }

  .sh-video-break__subheading {
    font-size: 16px;
  }

  .sh-video-break__container {
    max-height: 380px;
    border-radius: 20px;
  }
}
