.community-poll {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 5vw, 76px);
  margin: 0 0 clamp(54px, 7vw, 92px);
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid #2f2f2f;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(255,91,34,.18), transparent 26rem),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.016));
  box-shadow: 0 24px 72px rgba(0,0,0,.34);
}

.community-poll::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--orange), var(--red));
  box-shadow: 0 0 24px rgba(255,91,34,.55);
}

.community-poll__intro,
.community-poll__card {
  position: relative;
  z-index: 1;
}

.community-poll__intro h2 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.055em;
}

.community-poll__intro > p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  color: #b8b4ac;
  font-size: 1rem;
  line-height: 1.68;
}

.community-poll__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.community-poll__facts span {
  padding: 8px 11px;
  border: 1px solid #343434;
  border-radius: 999px;
  color: #c8c4bd;
  background: rgba(255,255,255,.025);
  font: 700 9px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.community-poll__card {
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid #363636;
  border-radius: 21px;
  background: rgba(8,8,8,.76);
}

.community-poll__embed-label {
  margin: 0 0 13px;
  color: var(--muted);
  font: 700 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.community-poll__embed {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: #0e1116;
  box-shadow: inset 0 0 0 1px rgba(255,91,34,.08);
}

.community-poll__frame {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
  background: #0e1116;
  color-scheme: dark;
  filter: invert(.9) hue-rotate(180deg) brightness(.88) contrast(1.08) saturate(.9);
}

.community-poll__note {
  margin: 13px 0 0;
  color: #85817a;
  font-size: .76rem;
  line-height: 1.55;
  text-align: center;
}

.community-poll__note a {
  color: #b9b5ad;
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .community-poll { grid-template-columns: 1fr; }
  .community-poll__intro h2 { max-width: 850px; }
}

@media (max-width: 620px) {
  .community-poll {
    margin-inline: -4px;
    padding: 26px 20px;
    border-radius: 20px;
  }
  .community-poll__card { padding: 19px 15px; }
  .community-poll__frame { height: 620px; }
}
