.poll-box {
    margin: 24px 0;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
}
.poll-box__kicker {
    display: inline-flex;
    margin-bottom: 6px;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.poll-box h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
}
.poll-box__head p {
    margin: 0 0 14px;
    color: #6b7280;
}
.poll-box__choices {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}
.poll-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
}
.poll-choice:hover {
    background: #f9fafb;
}
.poll-vote-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    background: #b91c1c;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.poll-results {
    display: grid;
    gap: 13px;
    margin-top: 14px;
}
.poll-result-row__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}
.poll-result-row__bar {
    height: 8px;
    margin: 6px 0 3px;
    overflow: hidden;
    border-radius: 999px;
    background: #eef0f3;
}
.poll-result-row__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #b91c1c;
}
.poll-result-row small,
.poll-total {
    color: #6b7280;
    font-size: 13px;
}
.poll-total {
    margin: 2px 0 0;
}
.home-poll-widget {
    margin-bottom: 22px;
}
@media (max-width: 700px) {
    .poll-box { padding: 15px; border-radius: 14px; }
    .poll-box h3 { font-size: 19px; }
}
