.teams, .teams *{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.teams{
  background:#ffffff;
  padding: 90px 0;
}

.teams-wrap{
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

.teams-title{
  text-align:center;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color:#0f172a;
  margin: 0 0 8px;
}

.teams-subtitle{
  text-align:center;
  font-size: 15px;
  color: rgba(15,23,42,.65);
  margin: 0 0 46px;
}

/* GRID */
.teams-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.teams-card{
  background:#ffffff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  padding: 24px;
  min-height: 150px;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}

.teams-icon{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5b7cff, #7c3aed);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
}

.teams-card h3{
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 8px;
  color:#0f172a;
}

.teams-card p{
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: rgba(15,23,42,.65);
  max-width: 310px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .teams-title{ font-size: 32px; }
  .teams-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .teams{
    padding: 70px 0;
  }
  .teams-title{
    font-size: 26px;
  }
  .teams-grid{
    grid-template-columns: 1fr;
  }
}
