/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* 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);
*/
.team__title {
  margin-bottom: 64px;
}
.team__cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px;
  row-gap: 40px;
}
.team .board:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .team .board:not(:last-child) {
    margin-bottom: 40px;
  }
}
.team .board__title {
  margin-bottom: 36px;
}
.team .team-card {
  width: calc(25% - 18.75px);
  display: flex;
  flex-direction: column;
}
.team .team-card:has(.team-card__btn:hover, .team-card__btn.active) .team-card__image img {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .team .team-card {
    width: calc(33.3% - 16.666px);
  }
}
@media (max-width: 768px) {
  .team .team-card {
    width: calc(50% - 12.5px);
  }
}
@media (max-width: 512px) {
  .team .team-card {
    width: 100%;
  }
}
.team .team-card__image {
  display: block;
  height: 220px;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 512px) {
  .team .team-card__image {
    height: 75vw;
  }
}
@media (min-width: 1440px) {
  .team .team-card__image {
    height: 15.2777777778vw;
  }
}
@media (min-width: 1920px) {
  .team .team-card__image {
    height: 294px;
  }
}
.team .team-card__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.team .team-card__name {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
.team .team-card__role {
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  color: var(--sk-color-one);
}
.team .team-card__email {
  margin-top: 16px;
}
.team .team-card__btn {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: var(--sk-text--md);
  line-height: 1.5;
  font-weight: 500;
  color: var(--sk-color-primary);
  margin-top: 12px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  order: 2;
}
.team .team-card__btn::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.team .team-card__btn:hover {
  cursor: pointer;
}
.team .team-card__btn:hover::after {
  width: 100%;
}
.team .team-card__btn.active + .team-card__wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}
.team .team-card__wrap {
  display: grid;
  grid-template-rows: 0fr;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  order: 1;
}
.team .team-card__content {
  overflow: hidden;
}
.team .team-card__content > *:first-child {
  margin-top: 10px;
}
