.wp-polls-ul .poll-card {
display: flex;
gap: .75rem;
padding: .75rem;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
width: 100%;
}
.wp-polls-ul .poll-card img {
height: 100px;
width: 100%;
object-fit: contain;
border-radius: .5rem;
flex: 0 0 auto
}
.wp-polls-ul .poll-card-title {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
text-transform: uppercase;
font-weight: 600;
margin: 1.15rem 0;
font-size: 26px;
color: #0c1455;
line-height: 1.25;
overflow: hidden;
text-overflow: ellipsis;
overflow-wrap: anywhere;
block-size: 2lh;
}
.wp-polls-ul .poll-card-desc,
.wp-polls-ul .poll-card-dep {
display: block;
margin: 0.75rem 0;
font-size: .925rem;
line-height: 1.35;
font-weight: 400;
font-size: 14px;
color: #333;
}
.wp-polls-ul li {
list-style: none;
margin: .5rem 0;
background-color: #FFF;
}
.wp-polls-ul .poll-card-actions {
margin-top: .5rem;
}
.wp-polls-ul .poll-card-vote {
display: inline-block;
padding: 5px 10px;
border: 2px solid #0c1455;
border-radius: 25px;
font-size: 16px;
background: #f9fafb;
cursor: pointer;
font-weight: 500;
margin: 0.75rem 0;
color: #0c1455;
text-transform: uppercase;
transition: color 0.2s ease, background-color 0.2s ease;
}
.wp-polls-ul .poll-card-vote:hover {
background: #0c1455;
color: #FFF;
}
.wp-polls-ul input[type="radio"],
.wp-polls-ul input[type="checkbox"] {
display: none;
}
.has-card-vote .Buttons {
display: none;
}