/* ── SG Video Block ────────────────────────────────────────────── */

.sg-video-block {
  background: #0b1829;
  padding: 80px 24px;
}

.sg-video-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sg-video-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a9eff;
  margin: 0 0 14px;
}

.sg-video-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #f0f4f8;
  margin: 0 0 40px;
  line-height: 1.25;
}

.sg-video-shell {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(74, 158, 255, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.sg-video-shell iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

@media ( max-width: 768px ) {
  .sg-video-block {
    padding: 48px 16px;
  }
  .sg-video-heading {
    font-size: 1.5rem;
  }
}
