.designer-stage {
  margin: 0 var(--gutter) var(--space-10);
}

.designer-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 540px;
  background: var(--color-bg-card);
  border: 0.5px solid var(--color-border);
  overflow: hidden;
}

.designer-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.designer-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6);
  text-align: center;
  pointer-events: none;
}

.designer-placeholder .eyebrow {
  margin: 0;
}

.designer-placeholder p {
  max-width: 42ch;
  color: var(--color-text-tertiary);
  margin: 0;
}

.designer-caption {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .designer-frame {
    aspect-ratio: 3 / 4;
    min-height: 0;
    height: 70vh;
  }

  .designer-caption {
    justify-content: flex-start;
  }
}
