.builder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.builder-right {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  height: fit-content;
}

.builder-right h2 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
}

.preview-question {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.preview-question h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.preview-answer {
  background: var(--grey);
  padding: 10px;
  border-radius: var(--radius);
  margin-bottom: 6px;
  border: 1px solid var(--border);
}