.template-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 22px;
  padding: 14px;
}

legend {
  font-size: .9rem;
  font-weight: 700;
}

.choice-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  font-weight: 400;
}

.choice-row input { margin-top: 3px; }
.choice-row span { display: grid; }
.choice-row small { color: var(--muted); }
