/* Styles for the Who section (includes/who.php).
   Load with: <link rel="stylesheet" href="/css/who.css">
   Requires: --black, --orange, --white, --font, --font-narrow CSS variables on :root. */

.u-orange { color: var(--orange) !important; }
.stat-value.u-orange { color: var(--orange); }

.about {
  background: var(--white);
  color: var(--black);
  padding: 6rem 2rem;
  border-bottom: 1px solid rgba(17,17,17,0.1);
}

.about-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(17,17,17,0.5);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
}

.stat {
  border-top: 3px solid var(--black);
  padding-top: 0.75rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
}

.stat-label {
  font-family: var(--font-narrow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
}

.about-middots {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 700;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

.about-middots .middot-title { color: rgba(17,17,17,0.5); }
.about-middots .middot-title.highlight { color: var(--orange); }
.about-middots .middot-sep { color: var(--orange); }

@media (max-width: 900px) {
  .about-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .about-middots { max-width: 90% !important; }
}

@media (max-width: 640px) {
  .about { padding: 4rem 1.25rem; }
  .about-stats { grid-template-columns: 1fr 1fr !important; }
  .about-middots { max-width: 100% !important; }
}
