.bq-poll,
.bq-poll * {
    box-sizing: border-box;
}

.bq-poll {
    --bq-bg: #0b0b0d;
    --bq-card: #141417;
    --bq-line: rgba(255,255,255,.10);
    --bq-text: #ffffff;
    --bq-muted: #a6a6ad;
    --bq-accent: #ff6a00;

    width: 100%;
    padding: 22px;
    margin: 0;
    border: 1px solid var(--bq-line);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(255,106,0,.10), transparent 34%),
        var(--bq-bg);
    color: var(--bq-text);
    font-family: inherit;
    overflow: hidden;
}

.bq-polls-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bq-poll__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.bq-poll__eyebrow {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--bq-accent);
}

.bq-poll__count,
.bq-poll__status {
    font-size: 12px;
    color: var(--bq-muted);
}

.bq-poll__question {
    margin: 0 0 18px;
    color: var(--bq-text);
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.12;
    font-weight: 900;
}

.bq-poll__options {
    display: grid;
    gap: 10px;
}

.bq-poll__option {
    appearance: none;
    width: 100%;
    padding: 0;
    border: 1px solid var(--bq-line);
    border-radius: 13px;
    background: var(--bq-card);
    color: var(--bq-text);
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.bq-poll__option:not(:disabled):hover {
    transform: translateY(-1px);
    border-color: rgba(255,106,0,.55);
    background: #18181c;
}

.bq-poll__option:disabled {
    cursor: default;
    opacity: 1;
}

.bq-poll__option.is-selected {
    border-color: var(--bq-accent);
}

.bq-poll__option-main {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}

.bq-poll__radio {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
    position: relative;
}

.bq-poll__option.is-selected .bq-poll__radio {
    border-color: var(--bq-accent);
}

.bq-poll__option.is-selected .bq-poll__radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: var(--bq-accent);
}

.bq-poll__label {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.bq-poll__percent {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    color: var(--bq-accent);
}

.bq-poll__bar {
    display: block;
    height: 4px;
    background: rgba(255,255,255,.05);
}

.bq-poll__bar-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--bq-accent);
    transition: width .45s ease;
}

.bq-poll__status {
    margin-top: 13px;
    min-height: 18px;
}

.bq-poll.is-loading {
    pointer-events: none;
}

.bq-poll.is-loading .bq-poll__options {
    opacity: .68;
}

@media (max-width: 767px) {
    .bq-polls-grid {
        grid-template-columns: 1fr;
    }

    .bq-poll {
        padding: 18px;
        border-radius: 15px;
    }

    .bq-poll__question {
        font-size: 22px;
    }
}
