.ngv-quiz {
  max-width: 720px;
  margin: 0 auto;
  font-family: inherit; }
  .ngv-quiz__progress {
    background: #e0e0e0;
    border-radius: 4px;
    height: 6px;
    margin-bottom: 8px; }
    .ngv-quiz__progress-bar {
      background: #000;
      height: 6px;
      border-radius: 4px;
      transition: width 0.3s ease;
      width: 0%; }
  .ngv-quiz__progress-label {
    color: #666;
    margin-bottom: 32px; }
  .ngv-quiz__section-title {
    margin-bottom: 8px; }
  .ngv-quiz__question-text {
    margin-bottom: 24px;
    line-height: 1.4; }
  .ngv-quiz__answers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px; }
  .ngv-quiz__answer {
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    line-height: 1.4; }
    .ngv-quiz__answer:hover:not(:disabled) {
      background: #ebebeb;
      border-color: #ccc; }
    .ngv-quiz__answer:disabled {
      cursor: default; }
    .ngv-quiz__answer.correct {
      background: #e6f4ea;
      border-color: #34a853;
      color: #1a7a35;
      font-weight: 600; }
    .ngv-quiz__answer.incorrect {
      background: #fce8e6;
      border-color: #ea4335;
      color: #c0392b;
      font-weight: 600; }
  .ngv-quiz__feedback {
    background: #f9f9f9;
    border-left: 4px solid #ccc;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0 6px 6px 0; }
  .ngv-quiz__feedback-text {
    font-weight: 600;
    margin: 0 0 6px; }
  .ngv-quiz__feedback-stat {
    color: #666;
    margin: 0 0 16px; }
  .ngv-quiz__next {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.2s ease; }
    .ngv-quiz__next:hover {
      background: #333; }
  .ngv-quiz__end {
    text-align: center;
    padding: 48px 0; }
    .ngv-quiz__end p {
      color: #444;
      margin-bottom: 12px; }
    .ngv-quiz__end strong {
      color: #000; }

@media (max-width: 480px) {
  .ngv-quiz__answers {
    grid-template-columns: 1fr; } }
