/* Entry point in the hero for the existing voluntary-support modal. */
#appRoot .metrics .hero-support-card {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(163, 126, 67, .28);
  border-radius: 22px;
  background: linear-gradient(110deg, #17362c 0%, #214638 58%, #17362c 100%);
  color: #f8f4ec;
  box-shadow: 0 16px 30px rgba(23, 54, 44, .18);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

#appRoot .metrics .hero-support-card:hover,
#appRoot .metrics .hero-support-card:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(110deg, #214638 0%, #2b5646 58%, #214638 100%);
  box-shadow: 0 20px 34px rgba(23, 54, 44, .24);
  outline: none;
}

#appRoot .hero-support-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 211, 138, .5);
  border-radius: 50%;
  color: #f0d38a;
  background: rgba(255, 249, 240, .08);
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

#appRoot .hero-support-card-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

#appRoot .hero-support-card-eyebrow {
  color: #f0d38a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

#appRoot .hero-support-card-title {
  color: #fff9f0;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

#appRoot .hero-support-card-description {
  color: rgba(255, 249, 240, .82);
  font-size: 13px;
  line-height: 1.45;
}

#appRoot .hero-support-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(240, 211, 138, .58);
  border-radius: 12px;
  color: #f0d38a;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 640px) {
  #appRoot .metrics .hero-support-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    padding: 16px;
  }

  #appRoot .hero-support-card-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  #appRoot .hero-support-card-title {
    font-size: 20px;
  }
}
