/* Block: team
 * Extracted from theme CSS by wp-arch-agent.
 * Classes: team-title, team-grid, team-card, team-info, team-info-row, team-name, team-linkedin, screen-reader-text, team-title-label, team
 */

.about-team .team-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 560px) {
  .about-team .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-section .team-title {
  margin-bottom: 60px;
  text-transform: capitalize;
  color: #230704;
  font-family: Poppins;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  justify-self: center;
  line-height: normal;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.team-card .team-info {
  padding: 24px 16px;
}

.team-card .team-name {
  margin-bottom: 4px;
  color: var(--black, #191308);
  text-align: center;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.team-card .team-title {
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.about-team .team-grid {
  gap: 30px;
}

.about-team .team-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.about-team .team-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.about-team .team-card img {
  border-radius: 0;
}

.about-team .team-card .team-info {
  padding: 65px 4px 0;
  text-align: left;
}

.about-team .team-card .team-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.about-team .team-card .team-name {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
  text-align: left;
  color: #000;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.about-team .team-card .team-role {
  text-align: left;
  color: #230704;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}

.about-team .team-linkedin {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #CACACA;
  font-size: 36px;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.about-team .team-linkedin:hover {
  opacity: .75;
  transform: translateY(-1px);
}

