/* ===== /network ===== */

.network-section {
  display: flex;
  justify-content: center;
  padding: 80px 100px;
}

.network-inner {
  width: 100%;
  max-width: 1028px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.network-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text--secondary);
  font-family: "Basier Circle", sans-serif;
  margin: 0 0 8px;
}

.network-headline {
  font-family: Playfair Display, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
  color: var(--text--primary);
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}

.network-hero-sub {
  font-family: "Basier Circle", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--text--secondary);
  margin: 0;
}

.network-stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.network-stats-grid .informative-text-title {
  color: var(--button--surface--primary);
}

.network-section-title {
  font-family: Playfair Display, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 52px;
  color: var(--text--primary);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.network-body {
  font-family: "Basier Circle", sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--text--secondary);
  margin: 0 0 40px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.network-tile {
  min-width: 0;
}

.network-tile-link,
.network-tile-static {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.network-tile-link:hover {
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  transform: translateY(-2px);
  border-color: var(--button--surface--primary);
}

.network-tile-logo {
  width: 100%;
  max-width: 140px;
  height: 48px;
  object-fit: contain;
}

.network-tile-text-only {
  justify-content: center;
}

.network-tile-text-only .network-tile-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text--primary);
}

.network-tile-name {
  font-family: "Basier Circle", sans-serif;
  font-size: 13px;
  line-height: 1.3;
  color: var(--text--secondary);
  text-align: center;
  word-break: break-word;
}

.network-cta-section .standard-paragraph a {
  color: var(--button--surface--primary);
}

/* Responsive — tablet */
@media screen and (max-width: 991px) {
  .network-section {
    padding: 64px 48px;
  }

  .network-headline {
    font-size: 48px;
    line-height: 60px;
  }

  .network-section-title {
    font-size: 34px;
    line-height: 44px;
  }

  .network-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Responsive — mobile */
@media screen and (max-width: 767px) {
  .network-section {
    padding: 48px 20px;
  }

  .network-headline {
    font-size: 36px;
    line-height: 46px;
  }

  .network-section-title {
    font-size: 28px;
    line-height: 38px;
  }

  .network-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .network-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .network-tile-link,
  .network-tile-static {
    padding: 16px 12px;
  }

  .network-tile-logo {
    height: 36px;
  }

  .network-tile-name {
    font-size: 12px;
  }
}
