.teams {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  margin-top: 30px;
  &_small {
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  }
  &-wrapper {
    padding-top: 60px;
  }
}
.team {
  border-top: 5px solid $attention-color;
  background-color: $white-color;
  padding: 0 20px 9px;
  text-align: center;
  &__logo {
    display: block;
    height: 140px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    &:before {
      content: '';
      display: inline-block;
      vertical-align: bottom;
      height: 100%;
    }
  }
  .team__image {
    display: inline-block;
    vertical-align: bottom;
    max-height: 90px;
  }
  &__name {
    margin-bottom: 40px;
    &_overflow {
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
  &__footer {
    display: flex;
    border-top: 1px solid $light-gray-color;
    padding-top: 10px;
  }
  &__info {
    width: 50%;
    padding: 3px 0 5px;
    &:last-of-type {
      border-left: 1px solid $light-gray-color;
      .team {
        &__text {
          background: inline-image('teams/user.svg') no-repeat center right;
          background-size: 14px;
          padding-right: 18px;
        }
      }
    }
  }
  &__title {
    display: block;
    color: $gray-color;
    text-transform: uppercase;
    letter-spacing: .46px;
    font-size: 12px;
    font-family: $font-futurademi;
  }
  &__text {
    font-size: 20px;
    font-family: $font-futurabook;
  }
}
