/* ============================================================
   ABOUT PAGE – Styles
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,31,68,.72) 0%, rgba(26,60,143,.45) 60%, rgba(10,31,68,.25) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 12px 0 10px;
  line-height: 1.2;
}
.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 20px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.breadcrumb a { color: var(--accent2); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.5); }
.breadcrumb span { color: rgba(255,255,255,.75); }

/* ── About Highlights ── */
.about-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: var(--text);
}
.highlight-item i {
  color: var(--blue);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Leadership ── */
.leadership { background: var(--white); }
.leader-card-wrap {
  display: flex;
  justify-content: center;
}
.leader-card {
  display: flex;
  gap: 48px;
  align-items: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 860px;
  width: 100%;
  box-shadow: 0 4px 32px rgba(10,31,68,.08);
}
.leader-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid var(--accent);
  box-shadow: 0 8px 28px rgba(232,160,32,.25);
}
.leader-img img { width: 100%; height: 100%; object-fit: cover; }
.leader-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-title {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.leader-info p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.leader-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.leader-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--trans);
}
.leader-contact a:hover { color: var(--accent); }
.leader-contact a i { color: var(--accent); }
.leader-social a {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  transition: var(--trans);
}
.leader-social a:hover { background: var(--accent); color: var(--navy); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-hero { height: 320px; }
  .leader-card { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; gap: 28px; }
  .leader-contact { justify-content: center; }
  .leader-social { display: flex; justify-content: center; }
  .about-highlights { gap: 10px; }
}
