.voting-hero {
  min-height: 420px;
  padding: 54px clamp(24px, 7vw, 110px) 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .62fr);
  align-items: center;
  gap: clamp(36px, 5vw, 74px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(199,166,90,.18), transparent 30%),
    linear-gradient(125deg, #071522, #11283a 58%, #3a1f24);
  position: relative;
  overflow: hidden;
}

.voting-hero::after {
  content: attr(data-label);
  position: absolute;
  right: -38px;
  bottom: -64px;
  color: rgba(255,255,255,.028);
  font-family: var(--hs-serif);
  font-size: 180px;
  font-weight: 700;
  line-height: 1;
}

.hero-copy,
.vote-primer {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hs-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 27px;
  height: 1px;
  background: currentColor;
}

.voting-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--hs-serif);
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.voting-hero .intro {
  max-width: 660px;
  margin: 22px 0 28px;
  color: #c4ced5;
  font-size: 17px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.hero-stats div {
  display: grid;
}

.hero-stats strong {
  color: var(--hs-gold-light);
  font-family: var(--hs-serif);
  font-size: 27px;
  line-height: 1;
}

.hero-stats span {
  margin-top: 6px;
  color: #8f9ca6;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vote-primer {
  padding: 28px;
  color: var(--hs-ink);
  background: var(--hs-paper);
  border: 1px solid rgba(230,207,148,.45);
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
}

.vote-primer .eyebrow {
  color: #876b2b;
}

.vote-primer h2 {
  margin: 0;
  font-family: var(--hs-serif);
  font-size: 31px;
  line-height: 1.13;
  letter-spacing: 0;
}

.primer-steps {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.primer-steps div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--hs-line);
}

.primer-steps strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #6b4d10;
  background: #f7edcf;
  font-family: var(--hs-serif);
  font-size: 18px;
}

.primer-steps span {
  color: var(--hs-slate);
  font-size: 14px;
  line-height: 1.45;
}

.voting-main {
  max-width: 1320px;
  margin-inline: auto;
  padding: 54px 24px 88px;
}

.voting-toolbar {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(300px, .72fr);
  align-items: end;
  gap: 28px;
}

.voting-toolbar h2,
.coming-heading h2 {
  margin: 0;
  font-family: var(--hs-serif);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

.voting-toolbar > p {
  margin: 0 0 7px;
  color: var(--hs-slate);
  line-height: 1.7;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vote-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  background: var(--hs-paper);
  border: 1px solid var(--hs-line);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.vote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 23px 55px rgba(7,21,34,.13);
}

.vote-image {
  min-height: 286px;
  padding: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eee9df, #d9d1c3);
  position: relative;
  overflow: hidden;
}

.vote-image::before {
  content: attr(data-initials);
  position: absolute;
  right: -8px;
  bottom: -24px;
  color: rgba(7,21,34,.048);
  font-family: var(--hs-serif);
  font-size: 104px;
  font-weight: 700;
  line-height: 1;
}

.vote-image img {
  max-height: 220px;
  width: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 17px 14px rgba(0,0,0,.25));
  transition: transform .25s;
}

.vote-card:hover .vote-image img {
  transform: scale(1.035);
}

.vote-content {
  min-width: 0;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.vote-content .status-pill {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 7px 12px;
  align-self: flex-start;
  margin-bottom: 14px;
  color: #fff;
  background: var(--hs-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vote-content .label {
  margin: 0;
  color: #8b6c27;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vote-content h3 {
  min-height: 62px;
  margin: 7px 0 10px;
  font-family: var(--hs-serif);
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: 0;
}

.vote-content > p:not(.label) {
  min-height: 66px;
  margin: 0 0 14px;
  color: var(--hs-slate);
  font-size: 14px;
  line-height: 1.55;
}

.vote-meta {
  margin-top: auto;
  min-height: 72px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hs-line);
  border-bottom: 1px solid var(--hs-line);
}

.vote-meta div {
  min-width: 0;
  display: grid;
}

.vote-meta div + div {
  padding-left: 16px;
  border-left: 1px solid var(--hs-line);
}

.vote-meta strong {
  overflow-wrap: anywhere;
  font-family: var(--hs-serif);
  font-size: 25px;
  line-height: 1;
}

.vote-meta span {
  margin-top: 6px;
  color: var(--hs-slate);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vote-link {
  margin-top: 17px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--hs-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.coming-row {
  margin-top: 64px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  color: #fff;
  background: var(--hs-navy);
}

.coming-heading {
  align-self: center;
}

.coming-heading .eyebrow {
  color: var(--hs-gold-light) !important;
}

.coming-heading h2 {
  color: #fff;
  font-size: 38px;
}

.coming-card {
  min-width: 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.coming-card img {
  max-height: 104px;
  width: auto;
  margin-inline: auto;
  filter: drop-shadow(0 12px 10px rgba(0,0,0,.32));
}

.coming-card strong,
.coming-card span {
  display: block;
}

.coming-card strong {
  color: #fff;
  font-family: var(--hs-serif);
  font-size: 20px;
  line-height: 1.15;
}

.coming-card span {
  margin-top: 8px;
  color: #b7c2ca;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .voting-hero {
    grid-template-columns: 1fr;
  }

  .vote-primer {
    max-width: 820px;
  }

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

  .coming-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .voting-hero {
    min-height: 0;
    padding: 46px 24px 54px;
  }

  .voting-toolbar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .voting-toolbar h2,
  .coming-heading h2 {
    font-size: 40px;
  }

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

  .vote-image {
    min-height: 250px;
  }

  .vote-content h3,
  .vote-content > p:not(.label) {
    min-height: 0;
  }
}

@media (max-width: 540px) {
  .voting-hero h1 {
    font-size: 43px;
  }

  .voting-hero .intro {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 16px;
  }

  .vote-primer {
    padding: 22px;
  }

  .vote-primer h2,
  .voting-toolbar h2 {
    font-size: 34px;
  }

  .voting-main {
    padding: 44px 18px 70px;
  }

  .vote-content {
    padding: 22px 20px 20px;
  }

  .coming-row {
    margin-inline: -18px;
    padding: 24px 18px;
  }

  .coming-card {
    grid-template-columns: 70px 1fr;
  }
}
