.dilemma-card {
  overflow: hidden;
  margin-bottom: 24px;
}

.dilemma-header {
  background: linear-gradient(135deg, var(--accent-red), #991b1b);
  padding: 24px 20px;
  margin: -20px -20px 20px -20px;
}

.dilemma-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.dilemma-description {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.scenario-context {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
  padding-right: 12px;
  border-right: 2px solid var(--panel-3);
}

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

.option {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  min-height: 52px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s var(--spring);
  display: flex;
  flex-direction: column;
  justify-content: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.option:hover {
  background: var(--panel-3);
  border-color: var(--dim);
}

.option:active {
  transform: scale(0.985);
}

.option__name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.option__hint {
  font-size: 0.75rem;
  color: var(--muted);
}
