/**
 * Screen sizes
 */
/**
  * Colors
  */
:root {
  --primary-color: #478cee;
  --secondary-color: #4fca92;
  --heading-font: system-ui;
  --body-font: system-ui;
}

.team {
  margin-top: 8rem;
  margin-bottom: 8rem;
  text-align: center;
}
.team-tagline {
  color: #f1742d;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 4rem auto;
}
.team-cards-item {
  flex: 1 1 200px;
  padding: 1.25rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.35);
}
.team-cards-item-image {
  border-radius: 50%;
  width: 122px;
  height: 122px;
  object-fit: cover;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5rem;
}
.team-cards-item-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #f7f3f3;
  padding-bottom: 1rem;
}
.team-cards-item-text-icon {
  flex: 0 1 70px;
}
.team-cards-item-text-title {
  font-size: var(--step-1);
  font-weight: 500;
  display: block;
  flex: 1 1 200px;
  text-align: left;
}
.team-cards-item-text-title span {
  display: block;
  font-size: var(--step-0);
  font-weight: 400;
}
.team-cards-item-description {
  margin-bottom: 0;
  letter-spacing: 0.8px;
}
