.responsive-presentation-loading {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted, #667085);
  font: 500 14px/1.4 var(--font-ui, Arial, sans-serif);
}

.responsive-presentation-loading__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(102, 112, 133, .22);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: responsive-presentation-spin .7s linear infinite;
}

@keyframes responsive-presentation-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .responsive-presentation-loading__spinner { animation: none; }
}
