/* spinner styles */
.ft-counter {
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
  line-height: inherit;
  position: relative;
}

.ft-reels {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: inherit;
  position: relative;
  top: 4.5px;
  left: 0.8px;
  letter-spacing: 1px;
}

.ft-reel-window {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  vertical-align: baseline;
}

.ft-reel-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.ft-reel-digit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.ft-reel-sep {
  display: inline-flex;
  align-items: center;
  height: 1em;
  padding: 0 0.02em;
  position: relative;
  bottom: 3px;
}

.ft-counter-static {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  line-height: inherit;
  font-variant-numeric: tabular-nums;
}
/* spinner styles */

/* ── Fundraising Thermometer Plugin Styles ── */

.ft-wrap {
  /* font-family: Georgia, "Times New Roman", serif; */
  font-family: "Rubik";
  max-width: 580px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  /* background: #fff; */
  /* border: 1px solid #e8e4dc; */
  border-radius: 4px;
  box-sizing: border-box;
}

.ft-headline {
  color: #3a3028;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.ft-headline strong {
  color: var(--primary-d-1);
}

.ft-body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ft-svg {
  width: 90px;
  flex-shrink: 0;
  overflow: visible;
}

.ft-info {
  flex: 1;
  min-width: 0;
}

.ft-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #c0392b;
  line-height: 1;
  margin-bottom: 4px;
}

.ft-sublabel {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

.ft-bar-wrap {
  background: #f0ece4;
  border-radius: 99px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.ft-bar-fill {
  height: 100%;
  background: #e24b4a;
  border-radius: 99px;
  max-width: 100%;
  transition: width 0.8s ease;
}

.ft-pct {
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.04em;
}

/* Responsive — stack vertically on small screens */
@media (max-width: 360px) {
  .ft-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .ft-svg {
    width: 70px;
  }
}
