/* Management Team Section */
.management-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
}

.team-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3c8a, #ffc107);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(11, 60, 138, 0.25);
  overflow: hidden;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #122142;
  margin-bottom: 0.2rem;
}

.team-member-position {
  font-size: 0.78rem;
  color: #6c7aa5;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .management-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .team-member-photo {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}
