/**
 * LBN Polls — only the pieces the theme does not already style.
 *
 * The poll box itself keeps the theme's .lbn-art-poll styling; this adds the
 * footer row that pairs the vote count with an optional sponsor logo.
 */

/* Editor-authored message revealed once the reader has voted. */
.lbn-art-poll-thanks {
	margin: 14px 0 0;
	padding: 12px 14px;
	border-radius: 8px;
	background: rgba(0, 0, 0, .035);
	font-size: 13px;
	line-height: 1.5;
	font-weight: 600;
}
.lbn-art-poll-thanks[hidden] { display: none; }
.lbn-art-poll-thanks a { color: inherit; text-decoration: underline; }

.lbn-art-poll-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

/* The theme gives .lbn-art-poll-total its own margin; inside the flex row that
   would push the logo out of alignment. */
.lbn-art-poll-foot .lbn-art-poll-total {
	margin-bottom: 0;
}

.lbn-art-poll-logo {
	flex: none;
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.lbn-art-poll-logo a {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.lbn-art-poll-logo-img {
	height: 20px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	display: block;
}
