/* Risk Studio product tour wrapper — owned by SVG Screencast Engineer */
.screencast {
  margin: 40px auto 0;
  max-width: 1100px;
  border-radius: 14px;
  box-shadow: 0 30px 70px -24px rgba(0, 32, 80, 0.42), 0 8px 18px -8px rgba(0, 32, 80, 0.18);
  overflow: hidden;
  background: var(--rs-surface-card);
  border: 1px solid var(--rs-border-strong);
}
.screencast__svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 720;
  border: 0;
  background: var(--rs-surface-page);
  /* Crisp text + shape rendering across browsers */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  text-rendering: geometricPrecision;
  shape-rendering: geometricPrecision;
}
.screencast__caption {
  margin: 18px auto 0;
  max-width: 900px;
  text-align: center;
  color: var(--rs-text-secondary);
  font-size: 0.92rem;
}
@media (max-width: 720px) {
  .screencast { margin-top: 24px; border-radius: 10px; }
}
