/* ─── Goal card ─────────────────────────────────── */
.goal-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  break-inside: avoid;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.goal-card:hover {
  border-color: rgba(184, 134, 11, 0.5);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
  transform: translateY(-2px);
}
.goal-card .category-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B8860B;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.goal-card .goal-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.6;
}
.goal-card .claim-count {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}

/* ─── Filter rack ────────────────────────────────── */
.filter-tag.active {
  border-color: #1E3A8A;
  color: #1E3A8A;
  background: rgba(30, 58, 138, 0.08);
}

/* ─── Utilities ──────────────────────────────────── */
.scrollbar-none                    { scrollbar-width: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }

/* ─── Submit overlay ─────────────────────────────── */
#submit-overlay {
  background: rgba(30, 58, 138, 0.4);
  backdrop-filter: blur(8px);
}
