/* ══════════════════════════════════════════════════════════
   ABOUT.CSS — Styles specific to the About Us page
   ══════════════════════════════════════════════════════════ */

/* ── Page Layout ──────────────────────────────────────── */
.page-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 56px;
    
}

/* ── Anchor Link Bar ──────────────────────────────────── */
.anchor-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
  justify-content: flex-end;
}
.anchor-bar-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 8px;
}
.anchor-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.anchor-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-bg);
}

/* ── Mission Section ──────────────────────────────────── */
.mission-section { margin-bottom: 48px; scroll-margin-top: 96px; }
.mission-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Quick Facts Grid ─────────────────────────────────── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 48px;
  scroll-margin-top: 96px;
}
.fact-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: all var(--transition);
}
.fact-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.fact-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.fact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

/* ── School Cards ─────────────────────────────────────── */
.schools-section { margin-bottom: 48px; scroll-margin-top: 96px; }
.school-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.school-card:hover { box-shadow: var(--shadow-md); }
.school-card:last-child { margin-bottom: 0; }
.school-card-header {
  background: var(--bv-black);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
[data-theme="dark"] .school-card-header { background: #0a0a0a; }
.school-card-title { display: flex; align-items: center; gap: 12px; }
.school-abbr {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: var(--color-accent);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.school-card-header h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.school-card-header .school-grades {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.school-card-body { padding: 24px; }
.school-card-body p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Photo Sizes (About-specific) ─────────────────────── */
.photo-campus { width: 100%; height: 220px; margin: 24px 0; }
.photo-campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 600px) { .photo-campus-grid { grid-template-columns: 1fr; } }
.photo-campus-grid .photo-placeholder { height: 180px; }
.photo-school { width: 100%; height: 180px; margin-bottom: 16px; }
.photo-cta { width: 100%; height: 160px; margin-bottom: 20px; border-radius: var(--radius); }

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
  scroll-margin-top: 96px;
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 48px;
}
.cta-section h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.cta-section p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
