/* =========================
   ECOSYSTEM SECTION (Page-specific)
========================= */
.ecosystem {
  text-align: center;
  /* section spacing handled by base.css, so no need for extra margin/padding */
}

.ecosystem-title {
  margin-bottom: 60px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.8px;
}

/* Unified grid for all cards */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Only override card-specific content if needed */
.ecosystem-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #fff;
}

.ecosystem-card p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mobile adjustments */
@media(max-width: 768px){
  .ecosystem-grid {
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 30px;
  }
  .ecosystem-card {
    padding: 40px; /* slightly smaller padding on mobile */
  }
  .ecosystem-title {
    font-size: 30px;
    margin-bottom: 36px;
  }
}
