.adbn-ayo-root {
  --adbn-poll-red: #e21b23;
  --adbn-poll-red-dark: #a90910;
  --adbn-poll-dark: #181d24;
  --adbn-poll-bg: #ffffff;
  --adbn-poll-text: #111318;
  --adbn-poll-muted: #667085;
  --adbn-poll-line: #e4e7ec;
  --adbn-poll-max-width: 1180px;
  width: 100%;
  max-width: var(--adbn-poll-max-width);
  margin: 28px auto;
  color: var(--adbn-poll-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.45;
  box-sizing: border-box;
}
.adbn-ayo-root * { box-sizing: border-box; }
.adbn-poll-card {
  overflow: hidden;
  border: 1px solid #cad0d7;
  border-radius: 18px;
  background: var(--adbn-poll-bg);
  box-shadow: 0 22px 60px rgba(12, 18, 28, .11);
}
.adbn-poll-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 168px;
  padding: 30px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 66% -30%, rgba(226, 27, 35, .25), transparent 37%),
    linear-gradient(120deg, #12161c 0%, var(--adbn-poll-dark) 58%, #202731 100%);
  isolation: isolate;
}
.adbn-poll-header::after {
  content: "";
  position: absolute;
  right: 26%;
  bottom: 0;
  width: 130px;
  height: 5px;
  background: var(--adbn-poll-red);
  transform: skewX(-28deg);
}
.adbn-poll-brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px 6px 7px;
  color: var(--adbn-poll-dark);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .94;
  transform: rotate(-4deg);
}
.adbn-poll-brand::before,
.adbn-poll-brand::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -8px;
  background: #fff;
  transform: skewX(-8deg);
}
.adbn-poll-brand::before { inset: 0 -16px 45% -8px; }
.adbn-poll-brand::after { inset: 53% -23px 0 -8px; }
.adbn-poll-brand-air { padding: 1px 9px 3px; font-size: 23px; }
.adbn-poll-brand-opinion {
  position: relative;
  display: block;
  margin: 0 -10px;
  padding: 7px 16px 8px;
  color: #fff;
  background: var(--adbn-poll-red);
  font-size: 35px;
  line-height: .9;
  letter-spacing: -.045em;
  transform: skewX(-6deg);
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.adbn-poll-adbn { display: flex; flex-direction: column; align-items: flex-end; line-height: .84; letter-spacing: -.055em; }
.adbn-poll-adbn strong { position: relative; padding-bottom: 9px; color: #fff; font-size: 46px; font-weight: 880; }
.adbn-poll-adbn strong::after { content: ""; position: absolute; right: 0; bottom: 1px; width: 100%; height: 4px; background: var(--adbn-poll-red); }
.adbn-poll-adbn span { color: #f3f4f6; font-size: 29px; font-weight: 400; letter-spacing: .08em; }
.adbn-poll-site-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 88px;
	padding: 14px 17px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 7px 24px rgba(0,0,0,.18);
}
.adbn-poll-site-logo img { position: relative; z-index: 2; display: none; width: 100%; max-width: 100%; height: auto; max-height: 100%; object-fit: contain; opacity: 1; }
.adbn-poll-site-logo.has-image img { display: block; }
.adbn-poll-site-logo-fallback { position: absolute; z-index: 1; color: #e21b23; font-size: 23px; font-weight: 900; letter-spacing: -.04em; }
.adbn-poll-site-logo.has-image .adbn-poll-site-logo-fallback { display: none; }
.adbn-poll-body { padding: 38px 54px 42px; }
.adbn-poll-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--adbn-poll-red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.adbn-poll-kicker::before { content: ""; width: 21px; height: 3px; background: currentColor; }
.adbn-poll-question {
  max-width: 980px;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--adbn-poll-line);
  color: var(--adbn-poll-text);
  font-size: clamp(25px, 3vw, 43px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.035em;
}
.adbn-poll-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  margin-bottom: 18px;
}
.adbn-poll-option {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
  min-width: 0;
  min-height: 43px;
  padding: 5px 2px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.adbn-poll-option:hover { background: #f7f7f8; }
.adbn-poll-option input { position: absolute; opacity: 0; pointer-events: none; }
.adbn-poll-radio { position: relative; flex: 0 0 23px; width: 23px; height: 23px; border: 2px solid #7e858e; border-radius: 50%; background: #fff; }
.adbn-poll-radio::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--adbn-poll-red); transform: scale(0); transition: transform .18s ease; }
.adbn-poll-option-text { min-width: 0; color: #24282f; font-size: 17px; font-weight: 500; line-height: 1.35; }
.adbn-poll-option input:checked ~ .adbn-poll-radio::after { transform: scale(1); }
.adbn-poll-option:has(input:checked) { background: #fff5f5; }
.adbn-poll-option:has(input:checked) .adbn-poll-option-text { color: #8e0d12; font-weight: 650; }
.adbn-poll-option input:focus-visible ~ .adbn-poll-radio { outline: 3px solid rgba(34,113,177,.25); outline-offset: 2px; }
.adbn-poll-option-letter { display: none !important; }
.adbn-poll-honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.adbn-poll-form-error { min-height: 23px; margin: -4px 0 10px; color: #a20d13; font-size: 12.5px; font-weight: 650; }
.adbn-poll-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.adbn-poll-robot {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 9px 16px;
  border: 1px solid #cfd4da;
  border-radius: 7px;
  color: #292d34;
  background: #f8f9fa;
  cursor: pointer;
  user-select: none;
}
.adbn-poll-robot input { position: absolute; opacity: 0; pointer-events: none; }
.adbn-poll-robot-box { position: relative; width: 24px; height: 24px; border: 2px solid #858e9a; border-radius: 4px; background: #fff; }
.adbn-poll-robot-box::after { position: absolute; top: 2px; left: 7px; width: 7px; height: 13px; border-right: 3px solid #fff; border-bottom: 3px solid #fff; content: ""; opacity: 0; transform: rotate(45deg); }
.adbn-poll-robot input:checked + .adbn-poll-robot-box { border-color: var(--adbn-poll-red); background: var(--adbn-poll-red); }
.adbn-poll-robot input:checked + .adbn-poll-robot-box::after { opacity: 1; }
.adbn-poll-robot input:focus-visible + .adbn-poll-robot-box { outline: 3px solid rgba(34,113,177,.25); outline-offset: 2px; }
.adbn-poll-robot strong { font-size: 13px; font-weight: 700; }
.adbn-poll-submit,
.adbn-poll-vote-again {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 52px;
  padding: 0 20px 0 24px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--adbn-poll-dark);
  box-shadow: none;
  font: 800 13px/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.adbn-poll-submit span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--adbn-poll-red); font-size: 17px; }
.adbn-poll-submit:hover:not(:disabled), .adbn-poll-vote-again:hover { background: var(--adbn-poll-red); transform: translateY(-1px); }
.adbn-poll-submit:disabled { color: #a9afb8; background: #e6e8eb; cursor: not-allowed; }
.adbn-poll-submit:disabled span { background: #bdc2c9; }
.adbn-poll-actions small { color: var(--adbn-poll-muted); font-size: 11.5px; }
.adbn-poll-message { margin: -14px 0 25px; padding: 13px 16px; border-left: 4px solid var(--adbn-poll-red); border-radius: 5px; color: #711014; background: #fff2f2; font-size: 13px; font-weight: 650; }
.adbn-poll-message.is-success { border-left-color: #198754; color: #155d3d; background: #eff9f3; }
.adbn-poll-message.is-info { border-left-color: #394150; color: #394150; background: #f1f3f5; }
.adbn-poll-results { display: grid; gap: 21px; }
.adbn-poll-result { padding: 0 2px; }
.adbn-poll-result.is-selected { padding: 13px 15px; border: 1px solid #f0a1a4; border-radius: 10px; background: #fff7f7; }
.adbn-poll-result-heading { display: flex; justify-content: space-between; gap: 18px; align-items: flex-end; margin-bottom: 8px; }
.adbn-poll-result-heading > span { color: #292d34; font-size: 14px; font-weight: 650; }
.adbn-poll-result-heading em { display: inline-block; margin-left: 8px; padding: 3px 7px; border-radius: 99px; color: #fff; background: var(--adbn-poll-red); font-size: 8px; font-style: normal; letter-spacing: .06em; text-transform: uppercase; vertical-align: 2px; }
.adbn-poll-result-heading strong { color: var(--adbn-poll-red); font-size: 20px; line-height: 1; }
.adbn-poll-result-track { overflow: hidden; height: 10px; border-radius: 99px; background: #e9ebee; }
.adbn-poll-result-fill { display: block; width: 0 !important; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #9e0b11, var(--adbn-poll-red)); transition: width .85s cubic-bezier(.2,.8,.2,1); }
.adbn-poll-result-fill.is-ready { width: var(--adbn-result-width, 0%) !important; }
.adbn-poll-result small { display: block; margin-top: 5px; color: var(--adbn-poll-muted); font-size: 10.5px; }
.adbn-poll-results-footer { display: flex; align-items: center; gap: 7px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--adbn-poll-line); }
.adbn-poll-results-footer > strong { color: var(--adbn-poll-dark); font-size: 20px; }
.adbn-poll-results-footer > span { color: var(--adbn-poll-muted); font-size: 12px; }
.adbn-poll-vote-again { min-height: 40px; margin-left: auto; padding: 0 18px; font-size: 11px; }
.adbn-poll-loading { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 210px; border: 1px solid #d9dde2; border-radius: 14px; color: #596371; background: #fff; }
.adbn-poll-loading i { width: 18px; height: 18px; border: 2px solid #e4e6e9; border-top-color: var(--adbn-poll-red); border-radius: 50%; animation: adbn-poll-spin .7s linear infinite; }
.adbn-poll-empty, .adbn-poll-load-error { max-width: 900px; margin: 20px auto; padding: 18px; border-left: 4px solid #e21b23; color: #6d1014; background: #fff3f3; }
.adbn-poll-elementor-placeholder { display: flex; align-items: center; gap: 10px; min-height: 74px; padding: 16px; border: 1px dashed #b8bec8; border-radius: 8px; background: #f8f9fb; color: #364152; }
.adbn-poll-elementor-placeholder img { display: block; width: 82px; height: auto; margin-right: 4px; }
.adbn-poll-elementor-placeholder span { color: #e21b23; font-size: 22px; }
.adbn-poll-elementor-placeholder small { margin-left: auto; color: #697386; }
@keyframes adbn-poll-spin { to { transform: rotate(360deg); } }

/* Keep the standalone layout in control if an older News Pulse poll asset is cached. */
.adbn-ayo-root {
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}
.adbn-ayo-root .adbn-poll-question {
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-size: clamp(25px, 3vw, 43px) !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}
.adbn-ayo-root .adbn-poll-options {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 2px !important;
	overflow: visible !important;
	width: 100% !important;
	margin-bottom: 18px !important;
	padding: 0 !important;
}
.adbn-ayo-root .adbn-poll-option {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: center !important;
	gap: 15px !important;
	flex: none !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 43px !important;
	margin: 0 !important;
	padding: 5px 2px !important;
	border: 0 !important;
	border-radius: 5px !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
}
.adbn-ayo-root .adbn-poll-option:hover { background: #f7f7f8 !important; }
.adbn-ayo-root .adbn-poll-option:has(input:checked) { background: #fff5f5 !important; }
.adbn-ayo-root .adbn-poll-option-letter { display: none !important; }
.adbn-ayo-root .adbn-poll-option-text {
	display: block !important;
	min-width: 0 !important;
	color: #24282f !important;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-size: 17px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	text-align: left !important;
	white-space: normal !important;
}

@media (max-width: 767px) {
  .adbn-ayo-root { margin: 18px auto; }
  .adbn-poll-card { border-radius: 12px; }
  .adbn-poll-header { min-height: 112px; padding: 21px 20px; }
  .adbn-poll-header::after { right: 22%; width: 70px; height: 3px; }
  .adbn-poll-brand { transform: rotate(-3deg) scale(.78); transform-origin: left center; }
  .adbn-poll-brand-air { font-size: 20px; }
  .adbn-poll-brand-opinion { font-size: 30px; }
  .adbn-poll-adbn strong { padding-bottom: 6px; font-size: 29px; }
  .adbn-poll-adbn strong::after { height: 3px; }
  .adbn-poll-adbn span { font-size: 18px; }
	.adbn-poll-site-logo { width: 116px; height: 62px; padding: 10px 11px; border-radius: 7px; }
  .adbn-poll-body { padding: 27px 19px 29px; }
  .adbn-poll-kicker { margin-bottom: 9px; font-size: 9px; }
  .adbn-poll-question { margin-bottom: 20px; padding-bottom: 18px; font-size: 23px; line-height: 1.25; }
  .adbn-poll-options { gap: 1px; }
  .adbn-poll-option { min-height: 40px; gap: 12px; padding: 4px 1px; }
  .adbn-poll-radio { width: 21px; height: 21px; }
  .adbn-poll-option-text { font-size: 14px; }
	.adbn-ayo-root .adbn-poll-option { min-height: 40px !important; gap: 12px !important; padding: 4px 1px !important; }
	.adbn-ayo-root .adbn-poll-option-text { font-size: 14px !important; }
  .adbn-poll-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .adbn-poll-robot { width: 100%; }
  .adbn-poll-submit { width: 100%; justify-content: space-between; }
  .adbn-poll-message { margin-top: -8px; }
  .adbn-poll-result-heading > span { font-size: 12.5px; }
  .adbn-poll-result-heading strong { font-size: 17px; }
  .adbn-poll-results-footer { flex-wrap: wrap; }
  .adbn-poll-vote-again { width: 100%; margin: 10px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .adbn-poll-loading i { animation: none; }
  .adbn-poll-result-fill, .adbn-poll-option, .adbn-poll-submit, .adbn-poll-vote-again { transition: none; }
}
