/* Newsam — Poll */

.np-wrap {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 20px 24px 24px;
	margin: 32px 0;
	font-family: inherit;
}

/* Header */
.np-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.np-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #111;
}

.np-star {
	font-size: 11px;
	color: #555;
}

.np-total {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	color: #666;
}

.np-divider {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 0 0 16px;
}

/* Question */
.np-question {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #111;
	margin: 0 0 20px;
}

/* Options grid — 2 columns */
.np-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 24px;
}

.np-option {
	cursor: pointer;
	position: relative;
}

.np-option-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

/* Radio circle */
.np-radio {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #aaa;
	border-radius: 50%;
	display: inline-block;
	transition: border-color .2s, background .2s;
}

.np-option:hover .np-radio {
	border-color: #555;
}

.np-option-text {
	font-size: 15px;
	color: #222;
	line-height: 1.3;
}

/* Progress bar */
.np-bar-wrap {
	height: 3px;
	background: #e8e8e8;
	border-radius: 2px;
	overflow: hidden;
}

.np-bar {
	height: 100%;
	background: #333;
	border-radius: 2px;
	width: 0;
	transition: width .5s ease;
}

/* Percentage — hidden before voting */
.np-pct {
	display: none;
	font-size: 11px;
	color: #888;
	margin-top: 3px;
}

/* ── Voted state ── */

.np-voted .np-option {
	cursor: default;
}

.np-voted .np-pct {
	display: block;
}

/* Selected option */
.np-voted .np-option.np-selected .np-radio {
	border-color: #111;
	background: #111;
	box-shadow: inset 0 0 0 3px #fff;
}

.np-voted .np-option.np-selected .np-bar {
	background: #111;
}

.np-voted .np-option:not(.np-selected) .np-radio {
	border-color: #ccc;
}

.np-voted .np-option:not(.np-selected) .np-bar {
	background: #bbb;
}

/* Mobile — single column */
@media ( max-width: 560px ) {
	.np-options {
		grid-template-columns: 1fr;
	}
}
