.potm-poll {
    margin: 0 0 28px;
}

.potm-poll__inner {
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
    border: 2px solid rgba(255, 102, 0, 0.28);
    border-radius: 12px;
    padding: 20px 18px 18px;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.potm-poll__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.potm-poll__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.12);
    color: #FF6600;
}

.potm-poll__icon svg {
    width: 20px;
    height: 20px;
}

.potm-poll__head-text {
    min-width: 0;
    flex: 1;
}

.potm-poll__eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FF6600;
}

.potm-poll__title {
    margin: 0 0 4px;
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    line-height: 1.15;
    color: #0A1628;
}

.potm-poll__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #5c6573;
}

.potm-poll__option-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.potm-poll__option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(10, 22, 40, 0.12);
    border-radius: 10px;
    background: #fff;
    color: #0A1628;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.potm-poll__option:hover,
.potm-poll__option:focus-visible {
    border-color: rgba(255, 102, 0, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
    outline: none;
}

.potm-poll__option:active {
    transform: translateY(1px);
}

.potm-poll__option:disabled {
    opacity: 0.7;
    cursor: wait;
}

.potm-poll__option-label {
    font-size: 16px;
    font-weight: 700;
}

.potm-poll__option-action {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: #FF6600;
}

.potm-poll__hint,
.potm-poll__notice {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #5c6573;
}

.potm-poll__thanks {
    margin: 0;
    font-weight: 600;
    color: #0A1628;
}

.potm-poll__choice {
    margin: 10px 0 0;
    font-size: 14px;
    color: #5c6573;
}

.potm-poll__choice strong {
    color: #FF6600;
}

.potm-poll__notice {
    color: #b45309;
    font-weight: 600;
}

@media (min-width: 640px) {
    .potm-poll__inner {
        padding: 22px 22px 20px;
    }

    .potm-poll__title {
        font-size: 24px;
    }
}
