.polls-shell {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.polls-head {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}

.poll-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.poll-item {
    display: grid;
    gap: 0.75rem;
}

.poll-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted-color, #7b7f87);
    font-size: 0.92rem;
}

.poll-question-block {
    display: grid;
    gap: 0.75rem;
}

.poll-actions-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.poll-actions-row form {
    margin: 0;
}

.poll-question-item {
    display: grid;
    gap: 0.75rem;
}

.poll-options {
    display: grid;
    gap: 0.45rem;
}

.poll-option-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.poll-option-text {
    font-weight: 500;
}

.poll-option-stats {
    color: var(--muted-color, #7b7f87);
    font-size: 0.88rem;
}

.poll-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #e5e8ef;
    overflow: hidden;
    margin-top: -0.15rem;
    margin-bottom: 0.25rem;
}

.poll-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: #2780f8;
}

@media (max-width: 760px) {
    .polls-head {
        flex-direction: column;
    }

    .poll-option-row {
        grid-template-columns: auto 1fr;
    }

    .poll-option-stats {
        grid-column: 2;
    }
}
