.quiz-config {
    display: none;
  }
  
  .quiz-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
  }
  
  .quiz-question {
    text-align: center;
    @media (min-width: 1200px) {
      min-height: 81px;
    }
  }
  
  .quiz-options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 104px;
    padding: 40px 0 44px 0;
    @media (max-width: 1200px) {
      padding: 60px 0;
      gap: 69px;
    }
  }
  div[data-component-id="homepage-quiz"]{
    .quiz-options{
      @media (max-width: 1200px) {
        gap: 87px !important;
      }
      gap: 151px;
    }
  }
  
  .quiz-options label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 21px;
    line-height: 32px;
    font-weight: bold;
    color: #252525;
  }
  
  .quiz-options input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .quiz-options input[type="radio"]:checked {
    border-color: #111;
    background-color: #111;
    box-shadow: inset 0 0 0 3px #e8e8e8;
  }
  
  .quiz-container button {
    display: block;
    margin: 20px auto;
    padding: 12px 20px;
    background-color: #1F4827;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    @media (max-width: 1199px) {
        width: 100%;
        margin-top: 0;
    }
  }
  
  .quiz-container button:hover {
    background-color: #d3fb58;
  }
  
  .quiz-answer--correct,
  .quiz-answer--wrong {
    margin-top: 16px;
    color: #111;
    margin-bottom: 16px;
    @media (min-width: 1200px) {
      margin-bottom: 32px;
      margin-top:0;
    }
  }
    
  .quiz-answer--correct a,
  .quiz-answer--wrong a {
    color: #1e4d2b;
    text-decoration: underline;
  }