.team-section__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
}

.team-section__heading-wrapper {
  flex-flow: column;
  text-align: center;
  align-items: flex-start;
  display: flex;
}

.team-section__heading-description {
  margin-bottom: 0;
  font-size: 1rem;
}
@media screen and (max-width: 991px) {
  .team-section__heading-description {
    text-align: left;
  }
}

.team-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 991px) {
  .team-items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .team-items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 479px) {
  .team-items {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
  }
  .team-items::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }
  .team-items > .combine-team4_item {
    width: 80%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .combine-team4_image-wrapper {
    max-width: none;
    height: 17rem;
  }
}

.combine-container-small {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.combine-team4_item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-direction: row;
  align-items: center;
  display: flex;
}
.combine-team4_image-wrapper {
  border-radius: 15px;
  width: 100%;
  max-width: 15rem;
  height: 15rem;
  overflow: hidden;
}
.combine-team4_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.combine-team4_image:hover {
  width: 105%;
}
  .combine-team4_item {
    display: flex;
    align-items: center;
    min-width: 250px;
    height: 100%;
}
.combine-team4_job-title {
  color: var(--combine-library--grey-600);
  font-size: 1rem;
  line-height: 160%;
}
.combine-team4_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.combine-heading-style-h6 {
  color: var(--combine-library--grey-800);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}
