
.team-block__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.team-block__header-info {
  max-width: 60%;
}

.team-block__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-block__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  max-width: 544px;
}

.team-block__nav {
  display: flex;
}

.team-block__btn {

  padding: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
}

.team-block__btn-prev {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  border-left: 1px solid rgba(0, 0, 0, .12);
  border-top: 1px solid rgba(0, 0, 0, .12);
  border-radius: 3px 0 0 3px;
}

.team-block__btn-next {
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 0 3px 3px 0;
}

.team-block__btn:hover {
  background: #f5f5f5;
}

.team-card {
  /*text-align: left;*/
}

.team-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 15px;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card__position {
  font-size: 14px;
  color: #888;
}
.team-block__btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}


@media (max-width: 991px) {
  .team-block__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-block__header-info {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .team-block__title {
    font-size: 32px;
  }

}
