@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
/* stylelint-disable */
.section-team {
  padding: var(--default-padding) 0;
  background: var(--section-bg);
  overflow: hidden;
}
.section-team .editors {
  align-items: flex-end;
}
.section-team .editors__coll {
  height: -moz-fit-content;
  height: fit-content;
}
.section-team__inner {
  display: flex;
  flex-direction: column;
  gap: var(--default-gap);
}
.section-team__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(17px, 1.429vw, 2rem) clamp(16px, 1.429vw, 2rem);
}
.section-team:first-of-type {
  padding: clamp(50px, 5.714vw, 8rem) 0 10rem;
}
.section-team:first-of-type .section-team__list {
  order: initial;
}
@media (min-width: 767px){
  .section-team .editors__coll {
    align-self: initial;
  }
}
@media (max-width: 1023.98px) and (min-width: 767px){
  .section-team .editors {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 766.98px){
  .section-team .editors__coll:first-of-type {
    order: -2;
  }
  .section-team .editors__coll [data-btn-count="1"] {
    width: 100%;
    justify-content: center;
    margin-top: -7px;
  }
  .section-team .editors__coll [data-btn-count="1"] .main-button {
    width: 100%;
    max-width: 450px;
  }
  .section-team .editors {
    display: contents;
  }
  .section-team__list {
    grid-template-columns: repeat(2, 1fr);
    order: -1;
  }
}
/*# sourceMappingURL=section-team.css.map */