.team-section {
  /* padding: 40px 20px 60px; */
}

.team-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 86px 44px;
}

.team-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.01);
}

.team-photo {
  width: 100%;
  aspect-ratio: 352  / 371;
  object-fit: cover;
  display: block;
    object-position: top center;
}

.team-card-content {
  padding: 16px 15px 18px;
}

#content .team-card h3 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}

#content .team-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.4;
  color: #747474;
  font-style: italic;
  font-weight: 500;
}

.team-card .team-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #234b7d;
  text-decoration: none;
  text-transform: uppercase;
}

.team-card .team-btn span {
  margin-left: 4px;
}

.team-card .team-btn:hover {
  color: #16365d;
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
