:root {
  --bg: #050506;
  --bg-soft: #0a090d;
  --panel: #111016;
  --panel-2: #17131f;
  --panel-3: #211a2d;
  --line: rgba(197, 176, 255, .18);
  --line-strong: rgba(197, 176, 255, .34);
  --text: #fbf8ff;
  --muted: #b5acbf;
  --muted-2: #877e95;
  --purple: #9e59ff;
  --lavender: #c5b0ff;
  --white: #ffffff;
  --danger: #ff6d86;
  --radius: 8px;
  --display: "United Sans", "Arial Black", "Arial Narrow", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "Cascadia Mono", Consolas, "Liberation Mono", monospace;
  --body: "United Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .12;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(158, 89, 255, .12) 0, rgba(158, 89, 255, .12) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(197, 176, 255, .13), transparent 28%, transparent 72%, rgba(158, 89, 255, .11)),
    linear-gradient(180deg, #050506 0%, #0c0912 48%, #050506 100%);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

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

::selection {
  background: var(--purple);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--lavender);
  border-radius: 6px;
  background: var(--lavender);
  color: #08070b;
  padding: 10px 12px;
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(158, 89, 255, .45);
  outline-offset: 3px;
}

.shell {
  min-height: 100svh;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  color: var(--lavender);
  text-decoration: none;
}

.brand-logo {
  width: clamp(190px, 22vw, 360px);
  height: auto;
  object-fit: contain;
}

.eyebrow,
.map-status,
.session,
.compound-number,
.compound-tag {
  font-family: var(--mono);
}

.eyebrow {
  margin: 0;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 1000;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 116px);
  line-height: .88;
  max-width: 880px;
}

h2 {
  font-size: clamp(28px, 3vw, 48px);
  line-height: .96;
}

.lead {
  max-width: 580px;
  margin: 24px 0 0;
  color: #e8ddff;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.primary-action,
.secondary-action,
.session a,
.map-status button,
.vote-button,
.gallery-button,
.gallery-close,
.gallery-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(197, 176, 255, .55);
  border-radius: 6px;
  background: var(--lavender);
  color: #060509;
  padding: 11px 15px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease;
  box-shadow: 0 12px 32px rgba(158, 89, 255, .22);
}

.primary-action:hover,
.secondary-action:hover,
.map-status button:hover,
.vote-button:hover,
.session a:hover,
.gallery-button:hover,
.gallery-close:hover,
.gallery-nav:hover {
  transform: translateY(-1px);
  border-color: var(--lavender);
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(158, 89, 255, .32);
}

.primary-action:active,
.secondary-action:active,
.map-status button:active,
.vote-button:active,
.session a:active,
.gallery-button:active,
.gallery-close:active,
.gallery-nav:active {
  transform: translateY(1px) scale(.99);
}

.primary-action:focus-visible,
.secondary-action:focus-visible,
.session a:focus-visible,
.map-status button:focus-visible,
.vote-button:focus-visible,
.gallery-button:focus-visible,
.gallery-close:focus-visible,
.gallery-nav:focus-visible {
  outline: 3px solid rgba(158, 89, 255, .55);
  outline-offset: 3px;
}

.login-view {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #050506;
}

.login-map {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .98) 0%, rgba(5, 5, 6, .84) 38%, rgba(5, 5, 6, .46) 100%),
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 6, .52) 100%),
    url("/assets/mapTiles/dark/3/3/3.jpg") center / cover,
    #08070b;
  filter: saturate(.78) contrast(1.12);
  transform: scale(1.12);
}

.login-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(158, 89, 255, .28), transparent 34%),
    repeating-linear-gradient(135deg, rgba(197, 176, 255, .07) 0, rgba(197, 176, 255, .07) 1px, transparent 1px, transparent 18px);
  mix-blend-mode: screen;
}

.map-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(197, 176, 255, .1), transparent);
  animation: scanline 8s ease-in-out infinite;
  opacity: .7;
}

.login-nav {
  position: absolute;
  top: clamp(18px, 4vw, 44px);
  left: clamp(18px, 5vw, 72px);
  z-index: 2;
}

.brand-watermark {
  position: absolute;
  right: -4vw;
  bottom: 7svh;
  z-index: -1;
  width: min(46vw, 620px);
  height: auto;
  opacity: .13;
  filter: blur(.2px);
  pointer-events: none;
}

.login-panel {
  position: relative;
  width: min(880px, calc(100vw - 36px));
  padding: 0 0 clamp(72px, 13svh, 150px) clamp(18px, 5vw, 72px);
}

.login-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 18px clamp(18px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .98), rgba(17, 16, 22, .92)),
    var(--bg);
  backdrop-filter: blur(16px);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-width: 0;
}

.topbar-title {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.topbar h1 {
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: .96;
}

.session {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.session-user {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session a {
  min-height: 36px;
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  padding: 8px 11px;
  box-shadow: none;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(360px, 42vw) minmax(0, 1fr);
  min-height: calc(100svh - 96px);
}

.map-panel {
  position: sticky;
  top: 96px;
  height: calc(100svh - 96px);
  min-height: 520px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(197, 176, 255, .08), rgba(5, 5, 6, .18)),
    #08070b;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, .18), transparent 28%, transparent 72%, rgba(5, 5, 6, .4)),
    repeating-linear-gradient(90deg, rgba(197, 176, 255, .07) 0, rgba(197, 176, 255, .07) 1px, transparent 1px, transparent 52px);
  mix-blend-mode: screen;
}

.map {
  width: 100%;
  height: calc(100% - 58px);
  background: #08070b;
}

.map-status {
  position: relative;
  z-index: 2;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 6, .88);
  color: var(--muted);
  font-size: 13px;
}

.map-status span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-status button {
  min-height: 34px;
  flex: 0 0 auto;
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  padding: 7px 10px;
  box-shadow: none;
}

.ballot {
  padding: clamp(22px, 3vw, 42px) clamp(18px, 3vw, 44px) 58px;
}

.ballot-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: start;
  margin-bottom: 22px;
  max-width: none;
}

.ballot-head > .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.ballot-head > h2 {
  grid-column: 1;
  grid-row: 2;
}

.ballot-head > p:not(.eyebrow) {
  grid-column: 1;
  grid-row: 3;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.vote-actions {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
}

.compact-action,
.secondary-action {
  min-height: 38px;
  padding: 8px 12px;
}

.secondary-action {
  background: rgba(5, 5, 6, .56);
  color: var(--lavender);
  box-shadow: none;
}

.compact-action[disabled],
.secondary-action[disabled] {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
  box-shadow: none;
}

.status-strip {
  min-height: 48px;
  display: block;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(158, 89, 255, .16), rgba(197, 176, 255, .05)),
    var(--panel);
  color: var(--muted);
  line-height: 1.45;
}

.status-strip strong {
  color: var(--lavender);
}

.status-strip span {
  color: var(--danger);
}

.compounds {
  display: grid;
  gap: 18px;
}

.compound {
  position: relative;
  display: block;
  min-height: 224px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .9), rgba(17, 16, 22, .84)),
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
    var(--panel);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.compound::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  z-index: 2;
  background: transparent;
  transition: background .18s ease, box-shadow .18s ease;
}

.compound::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 22, .98) 0%, rgba(17, 16, 22, .95) 32%, rgba(17, 16, 22, .68) 54%, rgba(17, 16, 22, .22) 78%, rgba(17, 16, 22, .06) 100%),
    var(--card-image) right center / cover no-repeat;
  opacity: .84;
  transform: scale(1.02);
  transition: opacity .2s ease, transform .24s ease;
}

.compound:hover,
.compound:focus-within,
.compound.active {
  transform: translateY(-2px);
  border-color: rgba(197, 176, 255, .48);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
}

.compound:hover::after,
.compound:focus-within::after,
.compound.active::after {
  opacity: .92;
  transform: scale(1.04);
}

.compound:hover::before,
.compound:focus-within::before,
.compound.active::before {
  background: var(--purple);
  box-shadow: 0 0 28px rgba(158, 89, 255, .68);
}

.compound.selected,
.compound.voted {
  border-color: rgba(197, 176, 255, .62);
  background:
    radial-gradient(ellipse at left center, rgba(158, 89, 255, .34) 0%, rgba(158, 89, 255, .16) 34%, transparent 68%),
    linear-gradient(180deg, rgba(197, 176, 255, .08), rgba(255, 255, 255, .018)),
    var(--panel);
}

.compound.selected::after,
.compound.voted::after {
  opacity: .9;
  background:
    linear-gradient(90deg, rgba(45, 20, 67, .96) 0%, rgba(45, 20, 67, .9) 30%, rgba(31, 21, 43, .68) 52%, rgba(17, 16, 22, .28) 78%, rgba(17, 16, 22, .08) 100%),
    var(--card-image) right center / cover no-repeat;
}

.compound.selected::before,
.compound.voted::before {
  background: var(--lavender);
  box-shadow: 0 0 26px rgba(197, 176, 255, .74);
}

.compound-main {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  max-width: min(620px, 66%);
  min-height: 180px;
  flex-direction: column;
}

.compound-title {
  display: grid;
  gap: 9px;
  margin-bottom: 12px;
}

.compound-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.compound-number,
.compound-tag {
  color: var(--lavender);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.compound-tag {
  color: var(--muted-2);
}

.compound h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: .98;
}

.vote-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.vote-button {
  min-width: 142px;
}

.vote-button.is-selected {
  background: var(--purple);
  color: var(--white);
  border-color: rgba(197, 176, 255, .72);
}

.gallery-button {
  min-width: 124px;
  background: rgba(5, 5, 6, .6);
  color: var(--lavender);
  box-shadow: none;
}

.vote-button[disabled],
.gallery-button[disabled] {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
}

.selected-label {
  color: var(--lavender);
  font-weight: 900;
}

body.gallery-open {
  overflow: hidden;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  background:
    linear-gradient(120deg, rgba(158, 89, 255, .18), transparent 45%),
    rgba(5, 5, 6, .88);
  backdrop-filter: blur(14px);
}

.gallery-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(880px, calc(100svh - 28px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(197, 176, 255, .28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(197, 176, 255, .08), rgba(5, 5, 6, .98)),
    var(--bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 0;
}

.gallery-head h2 {
  margin-top: 5px;
  font-size: clamp(24px, 3vw, 42px);
}

.gallery-close {
  min-height: 36px;
  flex: 0 0 auto;
  background: rgba(5, 5, 6, .62);
  color: var(--lavender);
  box-shadow: none;
}

.gallery-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0 18px;
}

.gallery-stage img {
  width: 100%;
  max-height: min(68svh, 650px);
  object-fit: contain;
  border: 1px solid rgba(197, 176, 255, .22);
  border-radius: 6px;
  background: #050506;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  min-height: 40px;
  min-width: 76px;
  transform: translateY(-50%);
  background: rgba(5, 5, 6, .72);
  color: var(--lavender);
  box-shadow: none;
}

.gallery-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.gallery-prev {
  left: 30px;
}

.gallery-next {
  right: 30px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 18px 18px;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  border: 1px solid rgba(197, 176, 255, .2);
  border-radius: 6px;
  background: var(--panel);
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 82px;
  object-fit: cover;
  opacity: .62;
  transition: opacity .18s ease, transform .18s ease;
}

.gallery-thumb.is-active {
  border-color: var(--lavender);
}

.gallery-thumb.is-active img,
.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  opacity: 1;
  transform: scale(1.04);
}

.pin {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid #050506;
  border-radius: 50% 50% 50% 3px;
  background: var(--lavender);
  color: #050506;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  transform: rotate(-45deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45), 0 0 0 6px rgba(158, 89, 255, .16);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.pin.is-selected,
.pin.is-active {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .5), 0 0 0 8px rgba(197, 176, 255, .2);
}

.pin.is-active {
  transform: rotate(-45deg) scale(1.08);
}

.pin span {
  transform: rotate(45deg);
}

.leaflet-container {
  background: #08070b;
  font-family: var(--body);
}

.leaflet-control-zoom {
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  overflow: hidden;
  background: rgba(5, 5, 6, .85) !important;
  box-shadow: none !important;
}

.leaflet-control-zoom a {
  border: 0 !important;
  background: rgba(5, 5, 6, .88) !important;
  color: var(--lavender) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--purple) !important;
  color: var(--white) !important;
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  45%,
  100% {
    transform: translateY(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1080px) {
  .topbar-brand {
    gap: 18px;
  }

  .brand-logo {
    width: clamp(180px, 25vw, 300px);
  }
}

@media (max-width: 920px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .map-panel {
    position: relative;
    top: 0;
    height: 58svh;
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .topbar {
    position: relative;
    min-height: auto;
    align-items: flex-start;
  }

  .topbar-brand {
    align-items: flex-start;
  }

  .compound {
    min-height: 236px;
  }

  .compound-main {
    max-width: min(650px, 72%);
  }

  .ballot-head {
    grid-template-columns: 1fr;
  }

  .ballot-head > .eyebrow,
  .ballot-head > h2,
  .ballot-head > p:not(.eyebrow),
  .vote-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .vote-actions {
    justify-self: start;
    justify-content: flex-start;
    margin-top: 4px;
  }
}

@media (max-width: 720px) {
  body::before {
    opacity: .08;
  }

  .login-view {
    align-items: end;
  }

  .login-panel {
    padding: 0 18px 54px;
  }

  .login-nav {
    left: 18px;
  }

  .brand-watermark {
    right: auto;
    left: 18px;
    bottom: 46svh;
    width: min(58vw, 260px);
  }

  .login-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar,
  .session {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    gap: 14px;
  }

  .topbar-brand {
    width: 100%;
    flex-direction: column;
  }

  .session-user {
    max-width: calc(100vw - 36px);
  }

  .map-status {
    align-items: stretch;
    height: auto;
    min-height: 58px;
  }

  .ballot {
    padding-inline: 14px;
  }

  .compound {
    padding: 12px;
    min-height: 280px;
  }

  .compound::after {
    inset: 0;
    opacity: .34;
    background:
      linear-gradient(90deg, rgba(17, 16, 22, .96) 0%, rgba(17, 16, 22, .88) 48%, rgba(17, 16, 22, .42) 100%),
      var(--card-image) right center / cover no-repeat;
  }

  .compound-main {
    max-width: 100%;
    min-height: 250px;
  }

  .gallery-modal {
    padding: 8px;
  }

  .gallery-panel {
    max-height: calc(100svh - 16px);
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 14px 0;
  }

  .gallery-close {
    width: 100%;
  }

  .gallery-stage {
    padding: 0 14px;
  }

  .gallery-stage img {
    max-height: 54svh;
  }

  .gallery-nav {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
  }

  .gallery-nav:hover {
    transform: translateY(-1px);
  }

  .gallery-stage {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-stage img {
    grid-column: 1 / -1;
  }

  .gallery-thumbs {
    padding: 0 14px 14px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .brand-lockup {
    max-width: 100%;
  }

  .brand-logo {
    width: min(240px, 78vw);
  }

  .primary-action,
  .vote-button {
    width: 100%;
  }

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