/*
  Scholars Network — about page styles
  ---------------------------------------
  Page-specific styles. Shared primitives (reset, `:root` brand tokens, base
  `body`, `html { scroll-behavior }`) live in global.css and are not
  redefined here.
*/

.dropdown-menu::before { content:""; position:absolute; top:-10px; left:0; right:0; height:10px; }

/* HERO */
.page-hero { min-height:60vh; background:linear-gradient(135deg, var(--navy) 0%, #1a3a52 100%); display:flex; align-items:center; padding:120px 5% 80px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:linear-gradient(120deg, rgba(255,255,255,0.04) 0%, transparent 70%); }
.page-hero-inner { max-width:900px; margin:0 auto; width:100%; position:relative; z-index:1; text-align:center; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2rem,3.5vw,3.2rem); font-weight:400; color:var(--white); line-height:1.15; margin-bottom:1.25rem; }
.hero-sub { font-size:1.05rem; color:rgba(255,255,255,0.7); line-height:1.7; margin-bottom:2rem; max-width:560px; }
.page-hero-inner.centered h1 { margin-left:auto; margin-right:auto; }
.page-hero-inner.centered .hero-sub { margin-left:auto; margin-right:auto; }

/* BELIEFS */
.beliefs-section { background:var(--sky); padding:5rem 5%; }
.beliefs-inner { max-width:1100px; margin:0 auto; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.6rem); font-weight:400; line-height:1.2; letter-spacing:0; margin-bottom:1rem; }
.section-lead { font-size:1.05rem; color:var(--gray); max-width:560px; line-height:1.7; margin-top:-0.5rem; margin-bottom:1.2rem; }

.beliefs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.belief-card { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:1.1rem 1.25rem; display:flex; flex-direction:column; gap:0.4rem; }
.belief-icon { font-size:2rem; }
.belief-card p { font-size:0.95rem; color:#374151; line-height:1.65; font-weight:500; }

/* TEAM */
.team-section { padding:5rem 5%; max-width:1200px; margin:0 auto; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.team-card { border:1px solid var(--border); border-radius:16px; padding:1.5rem; text-align:center; transition:box-shadow 0.2s,transform 0.2s; text-decoration:none; color:inherit; display:block; cursor:pointer; }
.team-card:hover { box-shadow:0 8px 30px rgba(35,44,59,0.1); transform:translateY(-3px); }
.team-avatar { width:80px; height:80px; border-radius:50%; background:linear-gradient(135deg, var(--teal), var(--navy)); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1.1rem; font-weight:700; margin:0 auto 1rem; overflow:hidden; }
.team-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.team-name { font-size:0.95rem; font-weight:700; color:var(--navy); margin-bottom:0.25rem; }
.team-title { font-size:0.78rem; color:var(--gray); line-height:1.4; }

/* NEWS */
.news-section { background:var(--light); border-top:1px solid var(--border); padding:5rem 5%; }
.news-inner { max-width:1200px; margin:0 auto; }
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.press-note { text-align:center; margin-top:2rem; font-size:0.85rem; color:var(--gray); }
.press-note a { color:var(--teal); text-decoration:none; font-weight:600; }
/* PIPELINE CTA */
.pipeline-section { background:var(--teal); padding:5rem 5%; text-align:center; }
.pipeline-section h2 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.8rem); font-weight:400; color:var(--white); margin-bottom:1rem; line-height:1.2; }
.pipeline-section p { color:rgba(255,255,255,0.7); font-size:1.05rem; max-width:none;  margin:0 auto 2rem; line-height:1.7; }
.btn-teal { display:inline-flex; align-items:center; gap:0.5rem; background:var(--teal); color:var(--white); padding:0.85rem 2rem; border-radius:8px; font-size:0.95rem; font-weight:600; font-family:'Inter',sans-serif; text-decoration:none; border:none; cursor:pointer; transition:background 0.2s,transform 0.2s; }
.btn-teal:hover { background:var(--teal-lt); transform:translateY(-1px); }

/* MODAL */.modal-body { padding:1.5rem; } .checkbox-grid { grid-template-columns:1fr; }

/* CTA */
.cta-section { background:#2d5f72; padding:5rem 5%; text-align:center; }
.cta-section h2 { font-family:'Playfair Display',serif; font-size:clamp(1.6rem,3vw,2.4rem); font-weight:400; color:var(--white); margin-bottom:0.75rem; }
.cta-section p { color:rgba(255,255,255,0.75); font-size:1rem; margin-bottom:2rem; }
.cta-btn { display:inline-flex; align-items:center; justify-content:center; background:#0B7EA2; color:#fff; border:none; padding:0.85rem 2.25rem; border-radius:100px; font-size:0.95rem; font-weight:700; font-family:'Inter',sans-serif; text-decoration:none; cursor:pointer; transition:opacity 0.2s,transform 0.2s; margin:0 0.4rem; }
.cta-btn:hover { opacity:0.88; transform:translateY(-1px); }@media(max-width:1024px) {
  .beliefs-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:repeat(3,1fr); }
  .news-grid { grid-template-columns:repeat(2,1fr); }

}
@media(max-width:640px) {

  .beliefs-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .news-grid { grid-template-columns:1fr; }

}
