/* ═══════════════════════════════════════
   ABOUT PAGES — SHARED STYLES
════════════════════════════════════════ */

/* HERO */
.ap-hero {
  position: relative; min-height: 40vh; display: flex; align-items: center;
  padding: 140px 0 64px; overflow: hidden;
  background: var(--navy-dark) url("assets/hero-bg.png") center/cover no-repeat;
}
.ap-hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,20,40,0.55); z-index: 1;
}
.ap-hero-content { position: relative; z-index: 2; }
.ap-hero-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: 3px; color: var(--cyan);
  text-transform: uppercase; margin-bottom: 16px; display: inline-block;
  padding-bottom: 8px; border-bottom: 2px solid var(--cyan);
}
.ap-hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--white); line-height: 1.2;
}

/* SECTIONS */
.ap-section { padding: 80px 0; }
.ap-section:nth-child(odd) { background: var(--white); }
.ap-section:nth-child(even) { background: var(--gray-light); }

.ap-section-inner { max-width: 860px; }

.ap-text h2 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--navy); margin-bottom: 24px; line-height: 1.3;
}
.ap-text p {
  font-size: .95rem; color: var(--gray); line-height: 1.8;
  margin-bottom: 16px;
}

/* LIST */
.ap-list {
  list-style: none; margin: 16px 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px;
}
.ap-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text); line-height: 1.5;
}
.ap-list li::before {
  content: '→'; color: var(--cyan); font-weight: 700; flex-shrink: 0;
}

/* HIGHLIGHT BOX */
.ap-highlight-box {
  background: var(--navy-dark); border-radius: 16px; padding: 28px 32px;
  margin-top: 32px; border-left: 4px solid var(--cyan);
}
.ap-highlight-box p {
  color: rgba(255,255,255,.8) !important; margin-bottom: 10px;
}
.ap-highlight-box p:last-child { margin-bottom: 0; }
.ap-highlight-box strong { color: var(--cyan) !important; }

/* TEAM PLACEHOLDER */
.ap-team-placeholder {
  background: var(--gray-light); border: 2px dashed #d1d5db;
  border-radius: 16px; padding: 64px 32px; text-align: center; margin: 24px 0;
}
.ap-placeholder-text { color: var(--gray); font-size: .95rem; font-style: italic; }

/* COMMITMENT CARDS */
.ap-commitments {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px;
}
.ap-commit-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  border: 1px solid #e5e7eb; transition: all .3s ease;
}
.ap-commit-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,64,97,.08); }
.ap-commit-card h3 {
  font-family: var(--font-head); font-size: .95rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
}
.ap-commit-card p { font-size: .85rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* RESPONSIVE */
@media(max-width: 768px) {
  .ap-hero { min-height: 30vh; padding: 120px 0 48px; }
  .ap-list { grid-template-columns: 1fr; }
  .ap-commitments { grid-template-columns: 1fr; }
  .main-nav, .btn-outline-nav { display: none; }
  .hamburger { display: flex; }
}
