.wenp-polls-list {
    display: grid;
    gap: 20px;
}

.wenp-poll {
    border: 1px solid #e2e4e7;
    border-radius: 12px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.wenp-poll-title {
    margin: 0 0 8px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.wenp-poll-desc {
    margin: 0 0 14px;
    color: #4b5563;
}

.wenp-poll-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.wenp-poll-option {
    display: block;
}

.wenp-poll-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wenp-poll-option-card {
    display: grid;
    gap: 8px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.wenp-poll-option-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.wenp-poll-option input:checked + .wenp-poll-option-card {
    border-color: #0f3460;
    box-shadow: 0 0 0 2px rgba(15, 52, 96, 0.15);
}

.wenp-poll-option-text {
    font-weight: 600;
    color: #111827;
}

.wenp-poll-submit {
    appearance: none;
    border: 0;
    background: #0f3460;
    color: #fff;
    border-radius: 8px;
    padding: 9px 16px;
    font-weight: 700;
    cursor: pointer;
}

.wenp-poll-submit[disabled] {
    opacity: .75;
    cursor: not-allowed;
}

.wenp-poll-message {
    margin: 10px 0 0;
    color: #b91c1c;
    min-height: 1em;
}

.wenp-poll-results {
    display: grid;
    gap: 10px;
}

.wenp-poll-result-item {
    display: grid;
    gap: 6px;
}

.wenp-poll-result-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: .92rem;
}

.wenp-poll-result-label {
    font-weight: 600;
    color: #111827;
}

.wenp-poll-result-meta {
    color: #4b5563;
    font-size: .84rem;
}

.wenp-poll-result-bar {
    background: #e5e7eb;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.wenp-poll-result-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #0f3460, #1d4ed8);
}

.wenp-poll-total-votes {
    margin: 4px 0 0;
    color: #4b5563;
    font-size: .84rem;
}

@media (min-width: 768px) {
    .wenp-poll-type-image .wenp-poll-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
