.industries-we-fund-section {
  text-align: center;
  padding: 2rem 1rem;
}

.industries-we-fund-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 1vw + 0.75rem, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.25rem;
  color: #000; /* or base color */
  max-width: 1250px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

.industries-we-fund-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.industries-we-fund-card {
  width: 250px; /* Or clamp it for responsiveness */
  display: flex;
  flex-direction: column;
  align-items: center;

  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.industries-we-fund-card img {
  width: 100%;
  aspect-ratio: 1 / 1; /* ✅ keeps it square */
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.521);
}

.industries-we-fund-card p {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
}
