/* AFG Guide Poll, Stand 2026-09-10 */
.afg-guide-article .afg-guide-poll {
    margin: 1.5rem 0;
    padding: 1.15rem;
    border: 1px solid rgba(139, 92, 246, .28);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(25, 29, 45, .96), rgba(17, 20, 31, .98));
}

.afg-guide-article .afg-guide-poll-eyebrow {
    margin: 0 0 .28rem;
    color: #b9a4ff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.afg-guide-article .afg-guide-poll h4 {
    margin: 0 0 .45rem;
}

.afg-guide-article .afg-guide-poll-intro,
.afg-guide-article .afg-guide-poll-thanks {
    margin: 0 0 .9rem;
    color: #c9d1df;
}

.afg-guide-article .afg-guide-poll-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin: .9rem 0 1rem;
    padding: 0;
    border: 0;
}

.afg-guide-article .afg-guide-poll-options legend {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.afg-guide-article .afg-guide-poll-option {
    min-height: 46px;
    padding: .7rem .78rem;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 11px;
    color: #dbe4f0;
    background: rgba(11, 17, 29, .72);
    font: inherit;
    font-size: .9rem;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}

.afg-guide-article .afg-guide-poll-option:hover,
.afg-guide-article .afg-guide-poll-option:focus-visible {
    border-color: rgba(185, 164, 255, .72);
    color: #fff;
    background: rgba(139, 92, 246, .12);
}

.afg-guide-article .afg-guide-poll-option.is-selected {
    border-color: #b9a4ff;
    color: #fff;
    background: rgba(139, 92, 246, .22);
    box-shadow: inset 0 0 0 1px rgba(185, 164, 255, .12);
}

.afg-guide-article .afg-guide-poll-option.is-selected::before {
    content: '✓';
    display: inline-block;
    margin-right: .45rem;
    color: #cdbfff;
    font-weight: 800;
}

.afg-guide-article .afg-guide-poll-option:disabled {
    cursor: wait;
    opacity: .64;
}

.afg-guide-article .afg-guide-poll-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: .62rem 1rem;
    border: 1px solid rgba(185, 164, 255, .68);
    border-radius: 10px;
    color: #fff;
    background: rgba(124, 82, 214, .9);
    font: inherit;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
}

.afg-guide-article .afg-guide-poll-submit:hover,
.afg-guide-article .afg-guide-poll-submit:focus-visible {
    background: rgba(139, 92, 246, 1);
}

.afg-guide-article .afg-guide-poll-submit:disabled {
    cursor: default;
    opacity: .45;
}

.afg-guide-article .afg-guide-poll-status {
    min-height: 1.25rem;
    margin: .55rem 0 0;
    color: #9fd9bb;
    font-size: .8rem;
}

.afg-guide-article .afg-guide-poll-status.is-error {
    color: #ffaaa9;
}

.afg-guide-article .afg-guide-poll.is-complete {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.afg-guide-article .afg-guide-poll.is-complete .afg-guide-poll-thanks {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .afg-guide-article .afg-guide-poll {
        padding: 1rem;
    }

    .afg-guide-article .afg-guide-poll-options {
        grid-template-columns: 1fr;
    }
}
