/* HVS Fundraiser Thermometer front-end */
.hvs-ft-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  --hvs-mercury: #f34859;
  --hvs-track: #eee;
  --hvs-border: #333;
  --hvs-text: #111;
}
.hvs-ft-svg {
  width: 160px;
  height: auto;
  overflow: visible;
  display: block;
}
.hvs-ft-text {
  margin-top: 10px;
  color: var(--hvs-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
}
/* Simple entrance animation for mercury */
.hvs-ft-animate .hvs-ft-mercury {
  animation: hvs-ft-rise 1.2s ease-out;
  transform-origin: bottom;
}
@keyframes hvs-ft-rise {
  0% { opacity: 0.2; transform: scaleY(0.05); }
  100% { opacity: 1; transform: scaleY(1); }
}
