@charset "utf-8";
/* CSS Document */

.team-section {
  padding: 4rem 1rem;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem;
  text-align: center;
}
.team-card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.team-card h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #14213D;
}
.team-contact a {
  display: inline-block;
  margin: 0.2rem 0.4rem;
  padding: 0.3rem 0.8rem;
  background: #FAA31B;
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: 999px;
}

