.bq-quiz {
  width: 100%;
  font-family: Arial, sans-serif;
  color: #111;
}

.bq-quiz__shell {
  max-width: 760px;
  margin: 0 auto;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.bq-panel {
  width: 100%;
}

.bq-panel--center {
  text-align: center;
}

.bq-panel--results {
  text-align: center;
}


.bq-title {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 12px;
}

.bq-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.bq-topline,
.bq-bottomline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8a8a8a;
  font-size: 0.9rem;
}

.bq-progress {
  width: 100%;
  height: 3px;
  background: #ececec;
  margin: 14px 0 28px;
  overflow: hidden;
}

.bq-progress span {
  display: block;
  height: 100%;
  background: #111;
}

.bq-question {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 24px;
  text-align: center;
}

.bq-options {
  display: grid;
  gap: 12px;
}

.bq-button,
.bq-option {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #111;
  font-size: 1rem;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.bq-button:hover,
.bq-option:hover,
.bq-link:hover {
  border-color: #111;
}

.bq-link {
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  font-size: 0.95rem;
  margin: 18px auto 0;
}

.bq-results {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.bq-result {
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 18px;
  text-align: center;
}

.bq-result__label {
  margin: 0 0 10px;
  color: #7a7a7a;
  font-size: 0.92rem;
}

.bq-result__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}

.bq-result__publisher,
.bq-result__empty {
  margin: 0;
  color: #555;
  font-size: 1rem;
}

.bq-spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #ddd;
  border-top-color: #111;
  margin: 0 auto 18px;
  animation: bqspin 0.8s linear infinite;
}

@keyframes bqspin {
  to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .bq-quiz__shell {
    padding: 36px 24px;
  }

  .bq-title {
    font-size: 3rem;
  }

  .bq-question {
    font-size: 2.6rem;
  }

  .bq-results {
    grid-template-columns: 1fr 1fr;
  }
}
