$module-name: prompts;

.#{$module-name} {
  --number-of-lines: 3;
  --prompt-text-size: 1.75rem; // h1
  --pip-size:  #{unit(1.2)};
  --spacer-size: calc(var(--pip-size) + #{unit(1)});

  width: 100%;
  max-width: 55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  font-weight: 400;
  line-height: 1.1;
  overflow: hidden;

  &__spacer {
    flex: 0 0 var(--spacer-size);
  }
}
