:root {
  --color-cream: #f5f4ee;
  --color-paper: #ffffff;
  --color-charcoal: #202423;
  --color-muted: #59605c;
  --color-sage: #98a39a;
  --color-border: #d4d4cb;
  --color-forest: #075b3c;
  --color-forest-dark: #06452f;
  --color-gold: #c79626;
  --font-heading: "Bree Serif", Georgia, serif;
  --font-body: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --shadow-card: 0 5px 18px rgba(32, 36, 35, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--color-charcoal);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
}

main {
  flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.container {
  width: min(1200px, calc(100% - 76px));
  margin-inline: auto;
}

.section-padding {
  padding-block: 34px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  min-height: 44px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.button-primary {
  color: #fff;
  background: var(--color-forest);
  border-color: var(--color-forest);
}

.button-secondary {
  color: var(--color-forest-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-forest-dark);
}

.text-link {
  color: var(--color-forest-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 10;
  flex: none;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  width: min(1280px, calc(100% - 70px));
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand-link {
  display: block;
}

.brand-link img {
  width: 210px;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.7vw, 27px);
  white-space: nowrap;
}

.primary-nav a {
  font-size: 15px;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-link {
  width: 27px;
  height: 27px;
  display: inline-flex;
  color: var(--color-forest-dark);
}

.search-link svg {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-forest-dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(248, 248, 242, 0.95) 0%, rgba(248, 248, 242, 0.84) 34%, rgba(248, 248, 242, 0.28) 62%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
  padding-block: 44px;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(46px, 4.35vw, 56px);
  font-weight: 400;
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.featured-explainer {
  background: var(--color-cream);
  border-block: 1px solid var(--color-border);
}

.explainer-inner {
  min-height: 88px;
  padding-block: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.explainer-label {
  padding-right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-forest-dark);
  border-right: 1px solid var(--color-border);
  font-size: 15px;
  line-height: 1.15;
}

.explainer-label img {
  width: 48px;
  height: 48px;
  flex: none;
  object-fit: contain;
}

.explainer-copy h2 {
  margin-bottom: 3px;
  font-size: 21px;
}

.explainer-copy p {
  max-width: 670px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.35;
}

.news-facts {
  background: var(--color-paper);
}

.news-facts-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.25fr) minmax(290px, 0.9fr);
  align-items: stretch;
  gap: 22px;
}

.stories-block {
  min-width: 0;
}

.section-heading-row {
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.section-heading-row h2,
.section-title {
  margin-bottom: 0;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dedfd9;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.story-card > img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.story-content {
  min-height: 0;
  padding: 13px 14px 14px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.story-content .eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--color-forest);
  font-size: 12px;
  font-weight: 700;
}

.story-content h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.story-content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.35;
}

.story-content small {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
}

.quick-facts {
  min-width: 0;
  overflow: hidden;
  align-self: stretch;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.quick-facts > h2 {
  min-height: 46px;
  margin: 0;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--color-forest);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.02em;
}

.quick-facts > h2 svg {
  width: 22px;
  flex: none;
}

.fact-list {
  padding-inline: 17px;
}

.fact-item {
  padding-block: 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  border-bottom: 1px solid #d8d8d0;
}

.fact-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.fact-item h3 {
  margin-bottom: 1px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

.fact-item p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.25;
}

.quick-facts > .text-link {
  display: inline-block;
  margin: 10px 17px 13px;
  font-size: 13px;
}

.stats-section {
  padding-block: 0 18px;
}

.stats-panel {
  padding: 8px;
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 8px;
  background: var(--color-cream);
  border: 1px solid #d8d7cf;
  border-radius: 4px;
}

.stats-heading {
  padding: 8px 10px;
}

.stats-heading h2 {
  margin-bottom: 6px;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
}

.stats-heading p {
  margin: 0;
  font-size: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.stat-item {
  min-width: 0;
  min-height: 72px;
  padding: 9px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
}

.stat-item img {
  width: 38px;
  height: 38px;
  flex: none;
  object-fit: contain;
}

.stat-item strong {
  color: var(--color-forest-dark);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
}

.stat-item p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.15;
}

.topics-section {
  padding-block: 18px 34px;
}

.topics-section .section-title {
  margin-bottom: 12px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.topic-card {
  min-width: 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border: 1px solid #dedfd9;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.topic-image-wrap {
  position: relative;
  margin-bottom: 23px;
}

.topic-photo {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
}

.topic-icon {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  object-fit: contain;
}

.topic-content {
  min-height: 132px;
  padding: 10px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topic-content h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.topic-content p {
  flex: 1;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.25;
}

.topic-content .text-link {
  font-size: 13px;
}

.community-section {
  padding-bottom: 28px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.dates-card,
.poll-card,
.testimonial-card {
  min-width: 0;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.dates-card {
  background: var(--color-cream);
}

.dates-card h2,
.poll-card h2,
.testimonial-card h2 {
  margin-bottom: 9px;
  color: var(--color-forest-dark);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
}

.dates-card h2 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dates-card h2 img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.timeline {
  margin: 0 0 7px 9px;
  padding: 0 0 0 21px;
  list-style: none;
  border-left: 2px solid var(--color-sage);
}

.timeline li {
  position: relative;
  padding: 5px 0 5px 3px;
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 7px;
  font-size: 12px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 11px;
  width: 10px;
  height: 10px;
  background: var(--color-forest);
  border-radius: 50%;
}

.timeline li:last-child {
  padding: 7px;
  background: #e8ead8;
  border-radius: 3px;
}

.dates-card > .text-link {
  margin-left: 12px;
  font-size: 13px;
}

.poll-card {
  background: #fff;
}

.poll-card form {
  display: flex;
  flex-direction: column;
}

.poll-card fieldset {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  border: 0;
}

.poll-card legend {
  margin-bottom: 8px;
  font-size: 13px;
}

.poll-card label {
  font-size: 13px;
}

.poll-card input {
  accent-color: var(--color-forest);
}

.poll-actions {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.poll-actions .button {
  min-width: 100px;
  min-height: 36px;
  padding-block: 7px;
}

.poll-actions .text-link {
  font-size: 12px;
}

.testimonial-card {
  overflow: hidden;
  background-image: linear-gradient(100deg, rgba(247, 249, 249, 0.98) 0%, rgba(242, 246, 246, 0.92) 50%, rgba(232, 238, 237, 0.46) 74%, rgba(225, 219, 190, 0.2) 100%), url("assets/top-story-agricultural-industry.png");
  background-position: center, right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-card blockquote {
  margin: 18px 10px 0;
  padding-left: 24px;
  color: #4c514f;
}

.testimonial-card blockquote::before {
  content: "“";
  float: left;
  margin-left: -25px;
  color: var(--color-sage);
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 0.8;
}

.testimonial-card blockquote p {
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
}

.testimonial-card blockquote footer {
  font-size: 12px;
  font-style: normal;
}

.newsletter {
  background-image: linear-gradient(100deg, rgba(174, 207, 237, 0.9), rgba(235, 243, 248, 0.92) 62%, rgba(197, 216, 148, 0.9)), url("assets/topic-property-rights-photo.png");
  background-position: center;
  background-size: cover;
  border-top: 1px solid #a9c1d6;
}

.newsletter-inner {
  min-height: 104px;
  padding-block: 16px;
  display: grid;
  grid-template-columns: auto minmax(300px, 0.95fr) minmax(420px, 1.35fr);
  align-items: center;
  gap: 20px;
}

.newsletter-inner > img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.newsletter-copy h2 {
  margin-bottom: 3px;
  color: var(--color-forest-dark);
  font-size: 29px;
}

.newsletter-copy p {
  margin-bottom: 0;
  font-size: 13px;
}

.newsletter-form {
  text-align: center;
}

.newsletter-controls {
  display: flex;
}

.newsletter-controls input {
  min-width: 0;
  flex: 1;
  padding: 10px 15px;
  color: var(--color-charcoal);
  background: #fff;
  border: 1px solid var(--color-sage);
  border-radius: 3px 0 0 3px;
}

.newsletter-controls .button {
  border-radius: 0 3px 3px 0;
}

.newsletter-form small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}

.site-footer {
  flex: none;
  color: #e9ecea;
  background: linear-gradient(120deg, #202625, #171b1b);
}

.footer-grid {
  padding-block: 30px 24px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  align-items: start;
  gap: 30px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand > img {
  width: 205px;
  margin-bottom: 14px;
}

.footer-brand > p {
  max-width: 260px;
  margin-bottom: 16px;
  color: #c9cecb;
  font-size: 13px;
  line-height: 1.4;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #4b504f;
  border-radius: 50%;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-column a,
.footer-column p {
  margin-bottom: 0;
  color: #c9cecb;
  font-size: 12px;
  line-height: 1.35;
}

.footer-contact {
  gap: 11px;
}

.footer-bottom {
  padding-block: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #545a58;
}

.footer-bottom p {
  margin: 0;
  color: #969d99;
  font-size: 12px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 200px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand-link img {
    width: 195px;
  }

  .primary-nav {
    gap: 13px;
  }

  .primary-nav a {
    font-size: 14px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    padding-block: 16px;
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 440px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(248, 248, 242, 0.95), rgba(248, 248, 242, 0.72) 72%, rgba(248, 248, 242, 0.32));
  }

  .explainer-inner {
    grid-template-columns: auto 1fr;
  }

  .explainer-inner > .text-link {
    grid-column: 2;
  }

  .news-facts-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stats-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    grid-column: 1 / -1;
  }

  .newsletter-inner {
    grid-template-columns: auto 1fr;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .section-padding {
    padding-block: 42px;
  }

  .header-inner {
    width: min(100% - 28px, 1280px);
  }

  .brand-link img {
    width: 185px;
  }

  .header-actions .button {
    padding-inline: 14px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-background {
    object-position: 58% top;
  }

  .hero-scrim {
    background: rgba(247, 246, 243, 0.8);
  }

  .hero-content {
    padding-block: 44px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 11vw, 48px);
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .explainer-inner {
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .explainer-label {
    padding-right: 0;
    border-right: 0;
  }

  .explainer-inner > .text-link {
    grid-column: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-column: auto;
  }

  .newsletter-inner {
    grid-template-columns: auto 1fr;
  }

  .newsletter-copy h2 {
    font-size: 27px;
  }

  .newsletter-controls {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-controls input,
  .newsletter-controls .button {
    min-height: 46px;
    border-radius: 3px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: space-between;
  }

  .primary-nav {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .stats-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .stats-grid,
  .topics-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    justify-content: flex-start;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-inner > img {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.ballot-page{background:#fff}

.ballot-hero{
  position:relative;
  isolation:isolate;
  min-height:285px;
  overflow:visible;
  border-bottom:1px solid var(--color-border);
}
.ballot-hero__image{
  position:absolute;
  inset:0;
  z-index:-2;
  width:100%;
  height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center top;
}
.ballot-hero__scrim{
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(90deg,rgba(250,250,247,.97) 0%,rgba(250,250,247,.9) 35%,rgba(250,250,247,.48) 57%,rgba(8,45,31,.03) 100%);
}
.ballot-hero__content{padding-top:28px;padding-bottom:92px}
.ballot-hero h1{
  max-width:780px;
  margin:0 0 10px;
  color:var(--color-forest-dark);
  font-size:clamp(44px,4.25vw,56px);
  line-height:1.02;
  font-weight:700;
}
.ballot-hero p{max-width:650px;margin:0;font-size:17px;line-height:1.4}
.ballot-hero__glance{
  position:absolute;
  left:50%;
  bottom:-12px;
  width:100%;
  transform:translateX(-50%);
  z-index:2;
}
.glance-panel{
  width:min(680px,58%);
  min-height:72px;
  padding:10px 16px;
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.97);
  border:1px solid var(--color-border);
  border-radius:5px;
  box-shadow:0 3px 12px rgba(21,52,38,.05);
}
.glance-heading{display:flex;align-items:center;gap:10px}
.glance-heading img{width:40px;height:40px;object-fit:contain}
.glance-heading h2,
.process-panel>h2,
.chart-card>h2,
.faq-panel>h2,
.resources-section>.container>h2{
  margin:0;
  color:var(--color-forest-dark);
  font-family:var(--font-body);
  font-size:18px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:.025em;
  text-transform:uppercase;
}
.glance-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.glance-item{min-width:0;display:flex;align-items:center;gap:7px}
.glance-item img,.glance-item svg{width:24px;height:24px;flex:none;object-fit:contain;color:var(--color-forest-dark);fill:none;stroke:currentColor;stroke-width:1.6}
.glance-item p{margin:0;font-size:13px;line-height:1.2}

.guide-section{padding-block:31px 34px}
.guide-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  align-items:start;
  gap:18px;
}
.guide-main,.guide-sidebar{min-width:0}
.guide-main{display:grid;gap:10px}
.guide-topics{display:grid;gap:8px}
.guide-topic{
  min-width:0;
  padding:11px 16px;
  display:grid;
  grid-template-columns:62px minmax(0,1fr);
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid var(--color-border);
  border-radius:5px;
  box-shadow:0 1px 5px rgba(20,46,34,.025);
}
.guide-topic>img{width:56px;height:56px;object-fit:contain}
.guide-topic h2{margin:0 0 4px;color:var(--color-forest-dark);font-size:23px;line-height:1.1}
.guide-topic p{margin:0 0 5px;font-size:16px;line-height:1.3}
.text-link{font-weight:600}
.guide-topic .text-link,.sidebar-card .text-link,.chart-card .text-link,.faq-panel>.text-link,.resource-card .text-link{font-size:14px}

.process-panel,.chart-card,.faq-panel,.sidebar-card{
  border:1px solid var(--color-border);
  border-radius:5px;
  box-shadow:0 1px 5px rgba(20,46,34,.025);
}
.process-panel{padding:13px 16px 15px;background:var(--color-cream)}
.process-panel>h2{margin-bottom:11px}
.process-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px}
.process-step{position:relative;min-width:0;padding:3px 4px 0;text-align:center}
.process-step:not(:last-child)::after{content:'→';position:absolute;top:15px;right:-9px;color:var(--color-forest);font-size:17px}
.process-step img{width:36px;height:36px;margin:0 auto 5px;object-fit:contain}
.process-step h3{margin:0 0 4px;color:var(--color-forest-dark);font-family:var(--font-body);font-size:14px;line-height:1.15}
.process-step p{min-height:52px;margin:0 0 5px;font-size:12px;line-height:1.25}
.process-step strong{color:var(--color-forest-dark);font-size:12px;line-height:1.2}

.poll-data{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.chart-card{min-width:0;padding:13px 16px;background:#fff}
.chart-caption{margin:3px 0 11px;color:var(--color-muted);font-size:12px}
.bar-chart{display:grid;gap:7px}
.bar-row{display:grid;grid-template-columns:136px minmax(0,1fr) 34px;align-items:center;gap:7px;font-size:12px}
.bar-row i{height:11px;display:block;background:linear-gradient(90deg,var(--color-forest) var(--value),#eaede9 var(--value));border-radius:1px}
.chart-scale{margin-left:143px;display:flex;justify-content:space-between;color:var(--color-muted);font-size:10px}
.vote-chart{margin-bottom:9px;display:grid;grid-template-columns:112px minmax(0,1fr);align-items:center;gap:14px}
.donut{width:112px;aspect-ratio:1;border-radius:50%;background:conic-gradient(var(--color-forest) 0 73%,#95a56e 73% 89%,#d3b66d 89% 96%,#a2a7a4 96% 100%);-webkit-mask:radial-gradient(circle,#0000 0 43%,#000 44%);mask:radial-gradient(circle,#0000 0 43%,#000 44%)}
.vote-legend{margin:0;padding:0;display:grid;gap:7px;list-style:none}
.vote-legend li{display:grid;grid-template-columns:11px minmax(0,1fr) auto;align-items:center;gap:7px;font-size:12px}
.vote-legend i{width:11px;height:11px;background:var(--color-forest);border-radius:2px}
.vote-legend li:nth-child(2) i{background:#95a56e}.vote-legend li:nth-child(3) i{background:#d3b66d}.vote-legend li:nth-child(4) i{background:#a2a7a4}

.faq-panel{padding:13px 16px;background:#fff}
.faq-panel>h2{margin-bottom:9px}
.faq-list{margin-bottom:9px;border-top:1px solid var(--color-border)}
.faq-list details{border-bottom:1px solid var(--color-border)}
.faq-list summary{position:relative;padding:8px 30px 8px 0;cursor:pointer;font-size:14px;font-weight:600;line-height:1.25;list-style:none}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:'+';position:absolute;right:4px;color:var(--color-forest-dark);font-size:18px}
.faq-list details[open] summary::after{content:'−'}
.faq-list details p{margin:0;padding:0 34px 10px 0;color:var(--color-muted);font-size:14px}

.guide-sidebar{display:grid;gap:9px}
.sidebar-card{overflow:hidden;padding:14px 16px;background:var(--color-cream)}
.sidebar-card h2{margin:0 0 10px;color:var(--color-forest-dark);font-family:var(--font-body);font-size:17px;line-height:1.15;font-weight:700;letter-spacing:.02em;text-transform:uppercase}
.sidebar-card h2 img{width:21px;height:21px;object-fit:contain}
.quick-facts-card{padding-top:0}
.quick-facts-card>h2{margin:0 -16px 1px;padding:11px 16px;display:flex;align-items:center;gap:8px;color:#fff;background:var(--color-forest)}
.sidebar-fact{padding-block:9px;display:grid;grid-template-columns:30px minmax(0,1fr);gap:9px;border-bottom:1px solid var(--color-border)}
.sidebar-fact img{width:25px;height:25px;object-fit:contain}
.sidebar-fact p{margin:0;font-size:14px;line-height:1.25}
.sidebar-fact strong{display:block;color:var(--color-forest-dark)}
.quick-facts-card>.text-link{margin-top:10px;display:inline-block}
.dates-panel h2{display:flex;align-items:center;gap:7px}
.dates-panel ol{margin:0 0 9px 7px;padding-left:18px;list-style:none;border-left:2px solid var(--color-sage)}
.dates-panel li{position:relative;padding:6px 0;display:grid;gap:1px;font-size:12px;line-height:1.25}
.dates-panel li::before{content:'';position:absolute;top:11px;left:-23px;width:8px;height:8px;background:var(--color-forest);border-radius:50%}
.dates-panel li strong{color:var(--color-forest-dark)}
.dates-panel li span{color:var(--color-muted)}
.contact-panel p{margin:0 0 10px;font-size:14px;line-height:1.35}
.contact-panel .button{width:100%;margin-bottom:10px}
.contact-panel address{display:grid;gap:6px;font-style:normal}
.contact-panel address a{display:flex;align-items:center;gap:7px;font-size:13px}
.contact-panel address img,.contact-panel address svg{width:17px;height:17px;object-fit:contain;color:var(--color-forest-dark)}
.download-panel{text-align:center}
.download-panel>h2,.download-panel>p{text-align:left}
.download-panel>p{margin:0;font-size:14px}
.document-preview{width:135px;margin:13px auto 9px;border:1px solid var(--color-border);box-shadow:0 5px 13px rgba(32,36,35,.14)}
.download-panel h3{margin:0 0 10px;color:var(--color-forest-dark);font-size:16px;line-height:1.15}
.download-action{display:flex;align-items:center;justify-content:center;gap:8px}
.download-action small{font-size:11px}

.resources-section{padding-block:28px 32px;background:var(--color-cream);border-top:1px solid var(--color-border)}
.resources-section>.container>h2{margin-bottom:14px;font-size:26px}
.resources-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.resource-card{min-width:0;overflow:hidden;background:#fff;border:1px solid var(--color-border);border-radius:5px;box-shadow:0 1px 5px rgba(20,46,34,.035)}
.resource-card>img{width:100%;aspect-ratio:2.45/1;object-fit:cover}
.resource-card>div{padding:10px 12px 12px}
.resource-card h3{min-height:40px;margin:0 0 7px;color:var(--color-forest-dark);font-size:16px;line-height:1.15}

.ballot-newsletter{padding-block:18px;background:linear-gradient(100deg,#d5e8f6 0%,#f2f6f8 58%,#dfe6bd 100%);border-top:1px solid #adc5d5}
.ballot-newsletter__inner{display:grid;grid-template-columns:58px minmax(280px,.85fr) minmax(430px,1.35fr);align-items:center;gap:18px}
.ballot-newsletter__inner>img{width:54px;height:54px;object-fit:contain}
.ballot-newsletter h2{margin:0 0 3px;color:var(--color-forest-dark);font-size:29px;line-height:1.1}
.ballot-newsletter p{margin:0;font-size:14px}
.ballot-newsletter__form{text-align:center}
.ballot-newsletter__form>div{display:flex}
.ballot-newsletter__form input{min-width:0;flex:1;padding:10px 14px;background:#fff;border:1px solid var(--color-sage);border-radius:3px 0 0 3px}
.ballot-newsletter__form .button{border-radius:0 3px 3px 0}
.ballot-newsletter__form small{display:block;margin-top:4px;color:var(--color-muted);font-size:11px}

@media (max-width:900px){
  .ballot-hero{min-height:365px}
  .ballot-hero__image{object-position:60% top}
  .ballot-hero__scrim{background:linear-gradient(90deg,rgba(250,250,247,.94),rgba(250,250,247,.69))}
  .ballot-hero__content{padding-top:38px}
  .glance-panel{width:100%}
  .guide-layout{grid-template-columns:1fr}
  .guide-sidebar{grid-template-columns:repeat(2,minmax(0,1fr))}
  .resources-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .ballot-newsletter__inner{grid-template-columns:58px 1fr}
  .ballot-newsletter__form{grid-column:1/-1}
}
@media (max-width:720px){
  .ballot-hero{min-height:500px}
  .ballot-hero__scrim{background:rgba(250,250,247,.82)}
  .ballot-hero__glance{bottom:-74px}
  .glance-panel{grid-template-columns:1fr}
  .glance-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .guide-section{padding-top:100px}
  .process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .process-step:not(:last-child)::after{display:none}
  .process-step p{min-height:0}
  .poll-data{grid-template-columns:1fr}
  .guide-sidebar{grid-template-columns:1fr}
  .resources-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:540px){
  .ballot-hero{min-height:620px}
  .ballot-hero h1{font-size:44px}
  .ballot-hero h1 br{display:none}
  .ballot-hero__glance{bottom:-128px}
  .glance-panel{padding:16px}
  .glance-grid{grid-template-columns:1fr}
  .guide-section{padding-top:154px;padding-bottom:36px}
  .guide-topic{grid-template-columns:1fr;padding:17px}
  .guide-topic h2{font-size:23px}
  .process-grid{grid-template-columns:1fr}
  .bar-row{grid-template-columns:1fr 40px}
  .bar-row i{grid-column:1;grid-row:2}
  .bar-row strong{grid-column:2;grid-row:2}
  .chart-scale{margin-left:0}
  .vote-chart{grid-template-columns:1fr}
  .donut{margin-inline:auto}
  .resources-grid{grid-template-columns:1fr}
  .resource-card h3{min-height:0}
  .ballot-newsletter__inner{grid-template-columns:1fr;text-align:center}
  .ballot-newsletter__inner>img{margin-inline:auto}
  .ballot-newsletter__form{grid-column:auto}
  .ballot-newsletter__form>div{flex-direction:column;gap:8px}
  .ballot-newsletter__form input,.ballot-newsletter__form .button{min-height:48px;border-radius:3px}
}