/* ============================================================================
   AW-QUESTIONS.CSS — Questions screen
   One question per card. Everything here is prefixed .awq- so it cannot reach
   another page; loaded eagerly after components.css like the other per-module
   sheets.
   ============================================================================ */

.awq-wrap { max-width: 780px; }

.awq-sub { font-size: 13px; color: var(--text-secondary); margin: 2px 0 0; }
.awq-loading { color: var(--text-muted); font-size: 13px; }

.awq-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 14px;
  background: var(--surface);
  transition: opacity .3s ease;
}
.awq-card.awq-done { opacity: .45; }

.awq-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.awq-subject { font-weight: 600; font-size: 14px; }
.awq-meta { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); white-space: nowrap; }

.awq-got {
  margin: 12px 0;
  padding: 10px 12px;
  background: var(--surface-alt, rgba(0, 0, 0, .03));
  border-radius: 6px;
}
.awq-got-title { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 6px; }
.awq-got-row { display: flex; gap: 10px; font-size: 13px; padding: 2px 0; }
.awq-got-row span { color: var(--text-secondary); min-width: 78px; }
.awq-got-row b { font-weight: 500; }

.awq-ask { font-size: 15px; font-weight: 600; margin: 14px 0 6px; }
.awq-why { font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
.awq-why div { padding: 1px 0; }
.awq-guess { font-size: 13px; margin-bottom: 10px; }

.awq-options { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.awq-opt { text-align: left; }

.awq-free { display: flex; gap: 6px; align-items: center; }
.awq-input { flex: 1; min-width: 0; }

.awq-status { font-size: 12px; color: var(--text-secondary); margin-top: 8px; min-height: 16px; }

@media (max-width: 640px) {
  .awq-free { flex-wrap: wrap; }
  .awq-input { flex-basis: 100%; }
  .awq-head { flex-direction: column; gap: 2px; }
}
