:root {
  --forest: #064221;
  --forest-dark: #012919;
  --leaf: #2e7a34;
  --grass: #5b8f35;
  --sun: #e4a900;
  --sun-soft: #f7d66a;
  --cream: #fff8e9;
  --paper: #fffdf6;
  --sky: #d9eef6;
  --ink: #183022;
  --muted: #607161;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(1, 41, 25, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(247, 214, 106, 0.38), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(205, 241, 166, 0.55), transparent 32%),
    linear-gradient(180deg, #fffaf0 0%, #f0f9e4 48%, #fbfced 100%);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  color: var(--forest-dark);
  background: rgba(255, 248, 229, 0.96);
  border: 2px solid rgba(228, 169, 0, 0.55);
  box-shadow: 0 14px 44px rgba(1, 41, 25, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-heart {
  color: var(--sun);
  font-size: 2.1rem;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--forest);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 14px;
  color: var(--forest-dark);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--forest-dark);
  background: rgba(228, 169, 0, 0.28);
  outline: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(1, 41, 25, 0.45);
  border-radius: 4px;
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--forest-dark);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(247, 214, 106, 0.3), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(205, 241, 166, 0.38), transparent 34%),
    linear-gradient(135deg, #f8f9e3 0%, #eef7d8 54%, #fffbea 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(46, 101, 53, 0.28) 0%, rgba(46, 101, 53, 0.1) 48%, rgba(255, 248, 233, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 248, 233, 0.12) 0%, rgba(255, 248, 233, 0.28) 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 116px 0 36px;
}

.brush-label {
  position: relative;
  display: inline-block;
  margin: 0 0 16px;
  padding: 9px 28px 11px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 10px 10px 0 rgba(228, 169, 0, 0.95);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  font-weight: 1000;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.brush-label::before,
.brush-label::after {
  content: "";
  position: absolute;
  top: 0;
  width: 28px;
  height: 100%;
  background: inherit;
}

.brush-label::before {
  left: -18px;
  clip-path: polygon(100% 0, 10% 8%, 55% 22%, 0 35%, 56% 52%, 10% 70%, 100% 100%);
}

.brush-label::after {
  right: -22px;
  clip-path: polygon(0 0, 100% 8%, 45% 24%, 100% 42%, 35% 55%, 100% 78%, 0 100%);
}

.brush-label.small {
  margin-bottom: 14px;
  font-size: 0.85rem;
  box-shadow: 7px 7px 0 rgba(228, 169, 0, 0.9);
}

h1 {
  max-width: none;
  margin: 0;
  color: var(--sun);
  font-family: "Comic Sans MS", "Arial Rounded MT Bold", cursive;
  font-size: clamp(3.8rem, 10vw, 10.6rem);
  line-height: 0.84;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow:
    -3px -3px 0 var(--white),
    3px -3px 0 var(--white),
    -3px 3px 0 var(--white),
    3px 3px 0 var(--white),
    0 18px 34px rgba(0, 0, 0, 0.3);
}

.hero-slogan {
  display: inline-block;
  margin: clamp(18px, 2.5vw, 30px) 0 0;
  padding: 12px 18px;
  color: var(--white);
  background: rgba(6, 66, 33, 0.96);
  font-size: clamp(1.55rem, 4vw, 3.2rem);
  font-weight: 1000;
  line-height: 1;
  transform: rotate(-1deg);
  border-bottom: 6px solid var(--sun);
}

.hero-copy {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--forest-dark);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.hero-photo {
  width: min(980px, 100%);
  margin: clamp(18px, 2.5vw, 28px) 0 0;
  padding: 6px;
  background: rgba(255, 253, 246, 0.96);
  border: 5px solid var(--sun);
  box-shadow: var(--shadow);
  transform: rotate(-0.45deg);
}

.hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 3px solid transparent;
  border-radius: 4px;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  color: var(--forest-dark);
  background: var(--sun);
}

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

.intro-band {
  color: var(--white);
  background: var(--forest-dark);
  border-top: 5px solid var(--sun);
  border-bottom: 5px solid var(--sun);
}

.intro-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0;
  text-align: center;
}

.intro-inner p {
  margin: 0;
  color: var(--sun-soft);
  font-family: "Comic Sans MS", "Arial Rounded MT Bold", cursive;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 900;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.start-section {
  padding-top: clamp(34px, 5vw, 70px);
}

.section-heading,
.poster-feature,
.vote-layout,
.impressions-gallery,
.instagram-card,
.site-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.light {
  color: var(--white);
}

.section-heading h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.96;
}

.section-heading.light h2 {
  color: var(--white);
}

.impressions-section .section-heading h2 {
  max-width: none;
  white-space: nowrap;
}

.section-heading p:not(.brush-label) {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.65;
}

.section-heading.light p:not(.brush-label) {
  color: rgba(255, 255, 255, 0.86);
}

.poster-feature,
.vote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.poster-frame {
  margin: 0;
  padding: 12px;
  background: var(--paper);
  border: 3px solid rgba(6, 66, 33, 0.2);
  box-shadow: var(--shadow);
}

.poster-frame img {
  width: 100%;
  border: 1px solid rgba(6, 66, 33, 0.18);
}

.poster-frame.slim {
  transform: rotate(-1.5deg);
}

.message-panel,
.polling-card,
.faq-list details,
.gallery-card {
  background: rgba(255, 253, 246, 0.95);
  border: 3px solid rgba(6, 66, 33, 0.18);
  box-shadow: 0 16px 42px rgba(1, 41, 25, 0.12);
}

.message-panel {
  position: relative;
  padding: clamp(26px, 4vw, 46px);
}

.marker {
  position: absolute;
  top: -34px;
  right: 24px;
  color: var(--sun);
  font-size: 5rem;
  line-height: 1;
}

.message-panel h3,
.polling-card h3 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.message-panel p,
.message-panel li,
.polling-card p,
.faq-list p {
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.62;
}

.message-panel p {
  margin: 18px 0;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--sun);
  font-size: 1.35rem;
}

.vote-section,
.impressions-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 214, 106, 0.42), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(205, 241, 166, 0.62), transparent 34%),
    linear-gradient(180deg, #f8fdec 0%, #e8f7d5 52%, #fbfae8 100%);
}

.vote-section .section-heading.light,
.impressions-section .section-heading.light {
  color: var(--forest-dark);
}

.vote-section .section-heading.light h2,
.impressions-section .section-heading.light h2 {
  color: var(--forest);
}

.vote-section .section-heading.light p:not(.brush-label),
.impressions-section .section-heading.light p:not(.brush-label) {
  color: var(--muted);
}

.polling-card {
  padding: clamp(24px, 4vw, 44px);
}

.polling-card h3 {
  padding-bottom: 18px;
  border-bottom: 4px solid var(--sun);
}

.polling-list {
  display: grid;
  gap: 0;
}

.polling-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 2px dotted rgba(228, 169, 0, 0.78);
}

.polling-list article:last-child {
  border-bottom: 0;
}

.pin {
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  background: var(--forest);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--paper);
  border-radius: 50%;
}

.polling-list h4 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(1.18rem, 2vw, 1.58rem);
}

.polling-list p {
  margin: 4px 0 0;
  color: #26392b;
  font-size: 1.06rem;
}

.faq-list {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border-left: 8px solid var(--forest);
}

.faq-list summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 22px 62px 22px 24px;
  color: var(--forest-dark);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 1000;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--forest-dark);
  background: var(--sun);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.impressions-instagram {
  margin-bottom: clamp(28px, 5vw, 54px);
  padding: clamp(22px, 4vw, 38px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(247, 214, 106, 0.32), transparent 34%),
    linear-gradient(135deg, #0b4f2c, #2f7a3a);
  border: 3px solid rgba(247, 214, 106, 0.42);
  box-shadow: var(--shadow);
}

.instagram-copy h2 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
}

.instagram-copy p:not(.brush-label) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.6;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 12px 18px;
  color: var(--forest-dark);
  background: var(--sun);
  border-radius: 4px;
  font-weight: 1000;
  text-decoration: none;
}

.qr-card {
  display: block;
  padding: 12px;
  background: var(--white);
  border: 4px solid var(--sun);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.qr-card img {
  width: 100%;
}

.impressions-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-card {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(247, 214, 106, 0.22), transparent 30%),
    linear-gradient(180deg, #0b4f2c, var(--forest-dark));
  border-top: 5px solid var(--sun);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
}

.site-footer p {
  margin: 0;
  color: var(--sun-soft);
  font-weight: 1000;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    padding: 12px;
    background: var(--forest-dark);
    border: 2px solid var(--sun);
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 14px;
    color: var(--white);
    background: transparent;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    color: var(--forest-dark);
    background: var(--sun);
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(46, 101, 53, 0.2) 0%, rgba(255, 248, 233, 0.24) 100%);
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .intro-inner,
  .poster-feature,
  .vote-layout,
  .instagram-card,
  .impressions-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    padding-left: 12px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    padding-top: 108px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .intro-inner {
    text-align: left;
  }

  .section-heading,
  .poster-feature,
  .vote-layout,
  .impressions-gallery,
  .instagram-card,
  .site-footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .qr-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .impressions-section .section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .impressions-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .poster-frame {
    padding: 7px;
  }

  .faq-list {
    width: min(100% - 24px, 980px);
  }

  .faq-list summary {
    padding: 18px 56px 18px 18px;
  }

  .faq-list p {
    padding: 0 18px 20px;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 245px;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    background:
      linear-gradient(180deg, rgba(255, 248, 233, 0.98), rgba(234, 244, 222, 0.98));
  }

  .site-header {
    gap: 10px;
    border-width: 1px;
    top: calc(8px + env(safe-area-inset-top));
  }

  .main-nav {
    top: calc(74px + env(safe-area-inset-top));
    max-height: calc(100svh - 96px - env(safe-area-inset-top));
    overflow-y: auto;
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .hero {
    display: block;
    min-height: 100svh;
    padding-bottom: 18px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(46, 101, 53, 0.2) 0%, rgba(46, 101, 53, 0.14) 42%, rgba(255, 248, 233, 0.22) 100%);
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    padding: 112px 0 20px;
  }

  .hero-photo {
    width: 100%;
    margin-top: 16px;
    padding: 4px;
    border-width: 4px;
    transform: none;
  }

  .hero-photo img {
    height: auto;
  }

  h1 {
    font-size: clamp(2.72rem, 12vw, 4.3rem);
    line-height: 0.9;
    text-shadow:
      -2px -2px 0 var(--white),
      2px -2px 0 var(--white),
      -2px 2px 0 var(--white),
      2px 2px 0 var(--white),
      0 12px 24px rgba(0, 0, 0, 0.3);
  }

  .hero-slogan {
    font-size: clamp(1.24rem, 6vw, 2rem);
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    text-align: center;
  }

  .intro-inner,
  .poster-feature,
  .vote-layout,
  .instagram-card,
  .impressions-gallery {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    gap: 8px;
    padding: 18px 0;
    text-align: left;
  }

  .section {
    padding: 56px 0;
  }

  .start-section {
    padding-top: 30px;
  }

  .section-heading,
  .poster-feature,
  .vote-layout,
  .instagram-card,
  .impressions-gallery,
  .site-footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .poster-feature,
  .vote-layout {
    gap: 22px;
  }

  .poster-frame,
  .poster-frame.slim {
    transform: none;
  }

  .message-panel,
  .polling-card,
  .impressions-instagram {
    padding: 20px;
  }

  .marker {
    top: -24px;
    right: 14px;
    font-size: 3.5rem;
  }

  .polling-list article {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .pin {
    width: 23px;
    height: 23px;
  }

  .pin::after {
    inset: 6px;
  }

  .faq-list {
    width: min(100% - 24px, 980px);
    gap: 10px;
  }

  .faq-list details {
    border-left-width: 5px;
  }

  .faq-list summary {
    padding: 17px 52px 17px 16px;
    font-size: 1rem;
    line-height: 1.28;
  }

  .faq-list summary::after {
    right: 14px;
    width: 30px;
    height: 30px;
  }

  .faq-list p {
    padding: 0 16px 18px;
    font-size: 0.98rem;
  }

  .instagram-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
    line-height: 1.03;
  }

  .instagram-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .qr-card {
    width: min(100%, 300px);
    margin: 0 auto;
    transform: none;
  }

  .impressions-section .section-heading h2 {
    font-size: clamp(1.58rem, 7.4vw, 2.35rem);
  }

  .gallery-card,
  .gallery-card img {
    min-height: 235px;
  }

  .gallery-card:hover img {
    transform: none;
  }

  .site-footer-inner {
    gap: 12px;
    padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .brand-heart {
    font-size: 1.7rem;
  }

  .brand strong {
    font-size: 0.74rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  h1 {
    font-size: clamp(2.38rem, 11vw, 2.8rem);
  }

  .brush-label {
    padding: 8px 18px 10px;
    font-size: 0.82rem;
  }

  .brush-label::before {
    left: -12px;
    width: 18px;
  }

  .brush-label::after {
    right: -14px;
    width: 22px;
  }

  .hero-content {
    padding-top: 104px;
  }

  .message-panel h3,
  .polling-card h3 {
    font-size: 1.42rem;
  }

  .impressions-section .section-heading h2 {
    font-size: clamp(1.42rem, 7vw, 1.7rem);
  }
}
