.charity-tagline {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 500;
  opacity: 0.7;
  margin-top: 1rem;
  text-align: center;
}

.org-ids {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.org-ids-title {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

.org-ids-subtitle {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 500;
  opacity: 0.6;
  text-align: center;
  margin-bottom: 1rem;
}

.org-ids-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  width: 100%;
  max-width: 400px;
}

.org-id-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.org-id-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.org-id-value {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
}

@media (max-width: 500px) {
  .org-ids-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }
}
