/* ============================================================
   Choice cards
   Side-by-side radio tiles (step 1, environment). Compact:
   a dot, a title, and one line of description.
   ============================================================ */

.choices {
  display: flex;
  gap: 10px;
}

.choice {
  flex: 1;
  text-align: left;
  background: var(--field);
  border: 1.5px solid var(--border-3);
  border-radius: var(--r);
  padding: 12px 14px;
  cursor: pointer;
  font: inherit;
  transition: all .15s;
}

.choice:hover {
  border-color: #3d4f60;
}

.choice.is-selected {
  background: rgba(20, 184, 166, .08);
  border-color: var(--accent);
}

.choice__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
}

/* Indented to clear the dot above it */
.choice__desc {
  display: block;
  font-size: 12.5px;
  color: var(--text-4);
  margin-top: 4px;
  padding-left: 22px;
}

.choice__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--text-dim);
}

.choice.is-selected .choice__dot {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 42%, transparent 46%);
}
