.bser-poll {
	--bser-blue: #1769e0;
	--bser-blue-dark: #0f4fab;
	--bser-border: #d9e2ef;
	--bser-surface: #f7faff;
	--bser-text: #172033;
	margin: 2rem 0 0;
	padding: 1.25rem;
	border: 1px solid var(--bser-border);
	border-radius: 12px;
	background: var(--bser-surface);
	color: var(--bser-text);
}

.bser-poll__fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.bser-poll__title {
	width: 100%;
	margin: 0 0 1rem;
	padding: 0;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
}

.bser-poll__answers {
	display: grid;
	gap: 0.625rem;
	margin-bottom: 1rem;
}

.bser-poll__answer {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.625rem;
	padding: 0.75rem 0.875rem;
	border: 1px solid var(--bser-border);
	border-radius: 9px;
	background: #fff;
	cursor: pointer;
}

.bser-poll__answer:hover,
.bser-poll__answer:focus-within {
	border-color: var(--bser-blue);
	box-shadow: 0 0 0 2px rgb(23 105 224 / 12%);
}

.bser-poll__answer input {
	width: 1.1rem;
	height: 1.1rem;
	margin: 0;
	accent-color: var(--bser-blue);
}

.bser-poll__answer-result {
	font-weight: 700;
	color: var(--bser-blue-dark);
}

.bser-poll__answer-result[aria-hidden="true"] {
	display: none;
}

.bser-poll__submit {
	min-height: 42px;
	padding: 0.65rem 1.25rem;
	border: 0;
	border-radius: 8px;
	background: var(--bser-blue);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.bser-poll__submit:hover,
.bser-poll__submit:focus-visible {
	background: var(--bser-blue-dark);
}

.bser-poll__submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

.bser-poll--complete .bser-poll__answer {
	cursor: default;
}

.bser-poll__status {
	min-height: 1.5em;
	margin: 0.75rem 0 0;
	font-size: 0.9375rem;
}

@media (max-width: 480px) {
	.bser-poll {
		padding: 1rem;
	}

	.bser-poll__submit {
		width: 100%;
	}
}

.bser-article-meta {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: #5b6578;
}

.bser-contact {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #d9e2ef;
}

.bser-contact__form {
	display: grid;
	gap: 1rem;
	max-width: 720px;
}

.bser-contact__field {
	display: grid;
	gap: 0.35rem;
}

.bser-contact__field label {
	font-weight: 700;
}

.bser-contact__field input,
.bser-contact__field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.7rem 0.75rem;
	border: 1px solid #c9d3e2;
	border-radius: 8px;
	font: inherit;
}

.bser-contact__field input:focus,
.bser-contact__field textarea:focus {
	border-color: #1769e0;
	outline: 2px solid rgb(23 105 224 / 16%);
	outline-offset: 1px;
}

.bser-contact__website {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.bser-contact__submit {
	justify-self: start;
	min-height: 42px;
	padding: 0.65rem 1.25rem;
	border: 0;
	border-radius: 8px;
	background: #1769e0;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.bser-contact__notice--success {
	color: #176b37;
}

.bser-contact__notice--error {
	color: #a4262c;
}
