/* Our Team page - additive styles only, built on the site's existing
   design tokens (Manrope type, #313863 navy, #2051ff brand blue, #e9e9e9
   borders, pill-shaped gradient buttons). Does not modify vendor.css or
   alistee.css. */

.team-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px 96px;
}

.team-hero {
  text-align: center;
  margin-bottom: 48px;
}

.team-hero h1 {
  color: #313863;
  font-family: Manrope, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 12px;
}

.team-dek {
  color: #404040;
  font-family: Manrope, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 620px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background-color: #f9fafd;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #eceff8;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #dbe4ff;
  margin-bottom: 20px;
}

.team-name {
  color: #313863;
  font-family: Manrope, sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 4px;
}

.team-name-link {
  color: inherit;
  text-decoration: none;
}

.team-name-link:hover {
  color: #2051ff;
  text-decoration: underline;
}

.team-role {
  display: inline-block;
  color: #2051ff;
  background-color: #f0f4ff;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.team-focus {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  color: #404040;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.team-focus li {
  position: relative;
  padding-left: 18px;
}

.team-focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2051ff;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2051ff;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #dbe4ff;
  border-radius: 40px;
  padding: 8px 18px;
  margin-top: auto;
  transition: background-color .15s, color .15s;
}

.team-linkedin:hover {
  background-color: #2051ff;
  color: #fff;
}

.team-linkedin svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

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

@media screen and (max-width: 767px) {
  .team-hero h1 {
    font-size: 28px;
  }

  .team-shell {
    padding: 40px 20px 72px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
