.he-quiz {
    margin: 28px 0;
    padding: 22px;
    border: 1px solid var(--he-line, #d8dee6);
    border-radius: 16px;
    background: #fff;
}

.he-quiz__kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--he-teal, #147c78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.he-quiz__head h2 {
    margin: 0 0 8px;
}

.he-quiz__question {
    margin-top: 18px;
}

.he-quiz__options {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.he-quiz__option {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--he-line, #d8dee6);
    border-radius: 10px;
    background: var(--he-soft, #f5f7fa);
    text-align: left;
    cursor: pointer;
}

.he-quiz__option.is-correct {
    border-color: var(--he-green, #4b7f42);
    background: #eef7ec;
}

.he-quiz__option.is-wrong {
    border-color: var(--he-red, #c2412f);
    background: #fbeeee;
}

.he-quiz__explain,
.he-quiz__result {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--he-soft, #f5f7fa);
}

.he-quiz__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.he-quiz__actions button,
.he-quiz__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: var(--he-red, #c2412f);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.he-quiz__fallback {
    margin: 0;
    padding-left: 18px;
}
