/* ═══════════════════════════════════════════════════════════════════
   AURALIS · THI Baseline — layout template (ВЪЛНА 3.1 Task Г)
   ═══════════════════════════════════════════════════════════════════ */

.thi-screen {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thi-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.thi-section {
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
[data-theme="light"] .thi-section, :root:not([data-theme]) .thi-section {
  background: var(--surface);
  box-shadow: var(--shadow-card-sm);
}
[data-theme="dark"] .thi-section {
  background: hsl(220 25% 6% / 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
}

.thi-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.thi-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 4px;
}

.thi-question-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.thi-result {
  text-align: center;
  padding: 20px 16px;
}
.thi-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
}
.thi-score-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.thi-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
