/* ==========================================================================
   satzquiz.css – Multiple-Choice (Prefix: hsq__)
   ========================================================================== */

.hsq__container {
  max-width: 1040px;
  margin: 0 auto;
}

.hsq__container h2 {
  text-align: left;
}

.hsq__question {
  max-width: 760px;
  margin: 10px auto 22px;
  color: var(--hb-navy);
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 800;
  line-height: 1.25;
}

.hsq__answers {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.hsq__option {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 2px solid #e5e5ea;
  border-radius: 14px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.hsq__option.is-correct {
  background: var(--hb-success-bg);
  border-color: var(--hb-success);
  color: #067247;
}

.hsq__option.is-wrong {
  background: var(--hb-danger-bg);
  border-color: var(--hb-danger);
  color: #9d2424;
}

.hsq__btn {
  margin-top: 22px;
}

.hsq__progress {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f4f5f8;
  color: var(--hb-muted);
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .hsq__container h2 {
    text-align: center;
  }
}
