:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 375px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.wp-block .team,
.team {
  background-color: var(--sk-color-primary-light);
  color: var(--sk-color-text);
  padding: 48px 0 24px;
  overflow-x: hidden;
}
.wp-block .team__members,
.team__members {
  display: grid;
  align-items: start;
  gap: 20px;
}
.wp-block .team .member,
.team .member {
  display: grid;
  grid-template-columns: minmax(120px, 30%) 1fr;
  gap: 0 17px;
}
.wp-block .team .member-info > *:not(:last-child),
.team .member-info > *:not(:last-child) {
  margin-bottom: 9px;
}
.wp-block .team .member-photo picture,
.team .member-photo picture {
  display: flex;
}
.wp-block .team .member-role,
.team .member-role {
  color: var(--sk-color-text-subtle);
  line-height: 1.2;
}
.wp-block .team .member-link,
.team .member-link {
  color: var(--sk-color-text-subtle);
  font-size: var(--sk-text-base-size);
  line-height: 1.125;
}
.wp-block .team .member-link::before,
.team .member-link::before {
  background-color: var(--sk-color-text-subtle);
}
@media (min-width: 768px) {
  .wp-block .team,
  .team {
    padding: 32px 0 84px;
  }
  .wp-block .team .member,
  .team .member {
    grid-template-columns: 100%;
  }
  .wp-block .team__members,
  .team__members {
    grid-template-columns: repeat(3, 1fr);
  }
  .wp-block .team-photo,
  .team-photo {
    margin-bottom: 17px;
  }
}
