/* ===== Fundraising Progress ===== */
.fundraise-progress {
  text-align: center;
  padding: var(--space-8) 0;
}

.fundraise-progress__raised {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-gold-text);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.fundraise-progress__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.fundraise-progress__track {
  width: 100%;
  height: 24px;
  background-color: var(--color-sx-blue-dark);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.fundraise-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold-muted), var(--color-gold));
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fundraise-progress__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.fundraise-progress__stat-item {
  white-space: nowrap;
}

.fundraise-progress__stat-value {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* ===== Render Placeholder ===== */
.render-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background-color: var(--color-bg-section-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.render-placeholder__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  text-align: center;
}

@media (min-width: 768px) {
  .render-placeholder {
    min-height: 400px;
  }
}

/* ===== Zeffy Embed ===== */
.zeffy-embed {
  width: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-section-alt);
}

.zeffy-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

.zeffy-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: var(--space-8);
  text-align: center;
  gap: var(--space-4);
}

.zeffy-embed__placeholder-text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
}

.zeffy-embed__placeholder-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== Sticky Mobile CTA ===== */
.sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-overlay);
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.95) 30%);
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
  }

  .sticky-cta .btn {
    pointer-events: auto;
    width: 100%;
    box-shadow: var(--shadow-lg);
  }

  .sticky-cta--hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }
}

/* ===== Give Cards (override for larger text) ===== */
.give-cards .card {
  text-align: center;
}

.give-cards .card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.give-cards .card__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.give-cards .card__contact {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-link);
  word-break: break-all;
}

.give-cards .card__tier {
  display: inline-block;
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-text);
  background-color: rgba(254, 193, 65, 0.15);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}

/* ===== Tax Notice ===== */
.tax-notice {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
  max-width: 700px;
  margin-inline: auto;
}
