/* About page: Selected Institutions rotating plain-text treatment.
   Rotation timing/count/pause behavior remains owned by assets/js/site.js. */
body.about-page #network .institution-rotator-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-content: start;
  gap: 18px 30px;
}

body.about-page #network .institution-pill {
  min-height: 0;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.005em;
  white-space: normal;
  text-align: left;
  display: block;
}

/* The About page's Looking Ahead section now renders the canonical WebP
   network artwork. This later page-specific rule replaces the retired PNG
   image layer from the legacy global stylesheet without changing its overlays. */
body.about-page #future.section-future-background::before {
  background-image:
    linear-gradient(180deg, rgba(7, 20, 28, 0.48) 0%, rgba(7, 20, 28, 0.58) 100%),
    radial-gradient(circle at 24% 28%, rgba(4, 76, 89, 0.22), transparent 26%),
    radial-gradient(circle at 78% 26%, rgba(229, 181, 59, 0.10), transparent 20%),
    url("/assets/images/about/vri-global-network-v1.webp");
}

/* The client-side About hero randomizer preloads its selected WebP before
   revealing it, preventing the fixed fallback from flashing on refresh. */
html.js-preload body.about-page .hero-visual-mentorship img:not(.is-about-hero-ready) {
  visibility: hidden;
}

body.about-page .hero-visual-mentorship {
  transition: opacity 0.42s var(--ease);
}

body.about-page .hero-visual-mentorship.is-about-hero-swapping {
  opacity: 0;
}

@media (max-width: 900px) {
  body.about-page #network .institution-rotator-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }
}

@media (max-width: 640px) {
  body.about-page #network .institution-rotator-page {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.about-page #network .institution-pill {
    min-height: 0;
    padding: 0;
    font-size: 1.12rem;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.about-page .hero-visual-mentorship {
    transition: none;
  }
}
