/* ----- Choice Grid ----- */

.choice-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.choice-tile {
  flex: 1;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color .2s, background-color .2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
}

/* Selected tile */
.choice-tile.selected {
  border-color: #28a745;
  background: #e8f7eb;
}

/* Title text inside tile */
.choice-tile .choice-content strong {
  display: block;
  font-size: 1.2rem;     /* bigger */
  margin-bottom: 0.4rem; 
}

/* Subtitle / explanatory text */
.choice-tile .choice-content p {
  font-size: 0.9rem;     /* smaller than title */
  margin: 0;
}

/* Hide the actual radio button */
.choice-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hover effect */
.choice-tile:hover {
  border-color: #4caf50;
}

/* Selected state */
.choice-tile.selected {
  border-color: #4caf50;
  background-color: #e8f7eb;
}
