.vtt-poll {
	--vtt-blue: #4053b8;
	--vtt-blue-dark: #243676;
	--vtt-ink: #17191f;
	--vtt-muted: #60646f;
	--vtt-line: #dfe2e8;
	background: #f8f9fc;
	border: 1px solid var(--vtt-line);
	border-top: 5px solid var(--vtt-blue);
	color: var(--vtt-ink);
	font-family: inherit;
	margin: 0 0 34px;
	padding: 26px 28px 22px;
}

.vtt-poll *,
.vtt-poll *::before,
.vtt-poll *::after { box-sizing: border-box; }

.vtt-poll__header {
	align-items: flex-start;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 23px;
}

.vtt-poll__eyebrow {
	color: var(--vtt-blue-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .075em;
	line-height: 1.4;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.vtt-poll h2 {
	color: var(--vtt-ink);
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.15;
	margin: 0;
}

.vtt-poll__status {
	background: #e7ebff;
	border: 1px solid #c9d1ff;
	color: var(--vtt-blue-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .045em;
	padding: 6px 10px;
	text-transform: uppercase;
	white-space: nowrap;
}

.vtt-poll__status--paused { background: #fff4cf; border-color: #f0d67a; color: #6f5100; }
.vtt-poll__status--closed { background: #e7e8eb; border-color: #c7c9cf; color: #3c4048; }

.vtt-poll__results { display: grid; gap: 16px; }

.vtt-poll__label {
	align-items: baseline;
	display: flex;
	font-size: 15px;
	gap: 16px;
	justify-content: space-between;
	line-height: 1.35;
	margin-bottom: 6px;
}

.vtt-poll__label > span:last-child {
	color: var(--vtt-muted);
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	white-space: nowrap;
}

.vtt-poll__track {
	background: #e1e4ec;
	height: 12px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.vtt-poll__bar {
	background: var(--vtt-blue);
	display: block;
	height: 100%;
	min-width: 0;
	width: var(--vtt-width);
}

.vtt-poll__summary {
	border-bottom: 1px solid var(--vtt-line);
	border-top: 1px solid var(--vtt-line);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 24px;
}

.vtt-poll__summary > div {
	border-right: 1px solid var(--vtt-line);
	padding: 15px 14px;
}

.vtt-poll__summary > div:first-child { padding-left: 0; }
.vtt-poll__summary > div:last-child { border-right: 0; }
.vtt-poll__summary strong,
.vtt-poll__summary span { display: block; }
.vtt-poll__summary strong { font-size: 21px; font-variant-numeric: tabular-nums; line-height: 1; }
.vtt-poll__summary span { color: var(--vtt-muted); font-size: 12px; line-height: 1.35; margin-top: 5px; }
.vtt-poll__breakdown { color: var(--vtt-muted); font-size: 13px; line-height: 1.55; margin: 14px 0 0; }

.vtt-poll__footer { color: var(--vtt-muted); font-size: 12px; line-height: 1.55; padding-top: 15px; }
.vtt-poll__footer p { margin: 0 0 7px; }
.vtt-poll__links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.vtt-poll__links a { color: var(--vtt-blue-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.vtt-poll__links a:hover,
.vtt-poll__links a:focus-visible { color: #111d53; }
.vtt-poll__links a:focus-visible { outline: 3px solid #f0cf4c; outline-offset: 3px; }
.vtt-poll__disclaimer { max-width: 900px; }
.vtt-poll__empty { border-left: 3px solid var(--vtt-blue); color: var(--vtt-muted); margin: 0; padding: 8px 0 8px 14px; }
.vtt-poll__hold { background: #fff4cf; border-left: 4px solid #d29b00; color: #493600; font-size: 17px; font-weight: 700; line-height: 1.5; margin: 0; padding: 18px 20px; }

@media (max-width: 700px) {
	.vtt-poll { margin-bottom: 26px; padding: 20px 16px 18px; }
	.vtt-poll__header { display: block; margin-bottom: 20px; }
	.vtt-poll__status { display: inline-block; margin-top: 12px; }
	.vtt-poll__label { align-items: flex-start; font-size: 14px; }
	.vtt-poll__summary { grid-template-columns: 1fr 1fr; }
	.vtt-poll__summary > div { border-bottom: 1px solid var(--vtt-line); padding: 13px 10px; }
	.vtt-poll__summary > div:nth-child(2) { border-right: 0; }
	.vtt-poll__summary > div:nth-child(3),
	.vtt-poll__summary > div:nth-child(4) { border-bottom: 0; }
	.vtt-poll__summary > div:nth-child(3) { padding-left: 0; }
	.vtt-poll__summary strong { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
	.vtt-poll * { scroll-behavior: auto !important; transition: none !important; }
}
