.about-page-hero {
  min-height: 56vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 65%;
}

.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.about-page-hero .container {
  position: relative;
  z-index: 1;
}

.about-page-hero .bp-heading,
.about-page-hero .bp-lead {
  color: #fff;
}

.team-section {
  background: #ffffff;
  padding: 5rem 0;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--bp-sage) 15%, transparent);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-content h3 {
  font-family: var(--bp-serif);
  color: var(--bp-sage-hover);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.team-content p {
  color: #596854;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .team-card {
    margin-bottom: 1rem;
  }
}