.guide-quiz-section {
    padding-top: 38px;
}

.guide-quiz-heading {
    display: flex;
    margin-bottom: 17px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.guide-quiz-heading .guide-eyebrow {
    margin-bottom: 6px;
}

.guide-quiz-heading h2 {
    margin-bottom: 0;
}

.guide-quiz-heading > span {
    padding-bottom: 3px;
    color: #668096;
    font-size: .64rem;
    font-weight: 750;
}

.guide-quiz {
    padding: clamp(19px, 3vw, 28px);
    border: 1px solid #cce6e7;
    border-radius: 14px;
    background: #fbfefd;
    box-shadow: 0 13px 36px rgba(30, 91, 99, .065);
}

.guide-quiz [hidden] {
    display: none !important;
}

.guide-quiz-progress {
    height: 5px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: #e3eeee;
}

.guide-quiz-progress span {
    display: block;
    width: 33.333%;
    height: 100%;
    border-radius: inherit;
    background: var(--guide-teal);
    transition: width .3s ease;
}

.guide-quiz form {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(230px, .8fr);
    align-items: start;
    gap: 12px 22px;
}

.guide-quiz fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    grid-row: 1 / span 3;
}

.guide-quiz legend {
    width: 100%;
    margin-bottom: 16px;
    color: var(--guide-ink);
    font-size: .86rem;
    font-weight: 800;
}

.guide-quiz-options {
    display: grid;
    gap: 9px;
}

.guide-quiz-option {
    position: relative;
    display: grid;
    padding: 12px 13px;
    color: #3f5b72;
    border: 1px solid var(--guide-line);
    border-radius: 9px;
    background: #fff;
    grid-template-columns: 18px 1fr;
    align-items: center;
    gap: 9px;
    font-size: .72rem;
    font-weight: 650;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.guide-quiz-option:hover {
    border-color: #91cfd0;
    transform: translateY(-1px);
}

.guide-quiz-option:has(input:checked) {
    color: #176e71;
    border-color: var(--guide-teal);
    background: #f0fbfa;
    box-shadow: 0 0 0 2px rgba(36, 165, 165, .08);
}

.guide-quiz-option.is-correct {
    color: #166b59;
    border-color: #65c5aa;
    background: #eefaf5;
}

.guide-quiz-option.is-wrong {
    color: #a34b41;
    border-color: #e9a89e;
    background: #fff5f3;
}

.guide-quiz-option input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--guide-teal);
}

.guide-quiz-result {
    margin: 0;
    padding: 13px 15px;
    color: #166b59;
    border: 1px solid #bfe5d7;
    border-radius: 9px;
    background: #eefaf5;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1.5;
}

.guide-quiz-result.is-error {
    color: #a34b41;
    border-color: #f0c3bc;
    background: #fff5f3;
}

.guide-quiz-actions {
    display: flex;
    margin-top: 0;
    flex-wrap: wrap;
    gap: 9px;
}

.guide-quiz-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 9px 16px;
    font-size: .69rem;
}

.guide-quiz-disclaimer {
    margin: 14px 0 0;
    color: #76899a;
    font-size: .58rem;
    font-style: italic;
}

