/* ================= OUR TEAM SECTION ================= */

.our-team-section {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f9fbfb, #ffffff);
}

.our-team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.our-team-container h2 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 700;
}

.our-team-container p {
  max-width: 780px;
  margin: 0 auto 60px;
  color: #666;
  font-size: 17px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* CARD */
.team-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}



/* TEXT */
.team-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}

.team-card span {
  font-size: 15px;
  color: #777;
}
