.about-page-body {
  background: linear-gradient(180deg, #f5f8ff 0%, #fafafa 28%, #f8fbff 100%);
}

/* ── Page Hero ── */
.about-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 72px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 76, 0.82), rgba(4, 18, 76, 0.94));
  z-index: 1;
}

.about-hero-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.about-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

.about-hero-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 12px;
}

.about-hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  margin: 0 0 24px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.about-breadcrumb a:hover {
  color: var(--lime);
}

.about-breadcrumb span[aria-current] {
  color: var(--lime);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .about-hero {
    padding: 120px 0 56px;
    min-height: 280px;
  }

  .about-hero-shell {
    width: min(100% - 32px, 1280px);
  }

  .about-hero-subtitle {
    font-size: 15px;
  }
}
