@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 */
.editors-section {
  padding: var(--default-padding) 0;
}
.editors-section__box {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.editors-section__box .editors {
  gap: 2.8rem;
}
.editors-section__box .editor-gallery img,
.editors-section__box .editor-gallery picture,
.editors-section__box .editor-gallery svg,
.editors-section__box .editor-gallery .sprite {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.75;
}
.editors-section__box .editor .main-button {
  margin-top: 1.2rem;
}
@media (min-width: 768px){
  .editors-section__box .editor-gallery {
    width: 100%;
    border-radius: clamp(7px, 0.7396vw, 1rem);
    overflow: hidden;
  }
  .editors-section__box .editor[data-order="2"] {
    max-width: clamp(450px, 40.6065vw, 54.9rem);
    width: 100%;
  }
}
@media (min-width: 1024px){
  .editors-section__box .editors {
    gap: min(15.15vw, 20rem);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px){
  .editors-section__box .editors {
    grid-template-columns: 100%;
  }
}
@media (max-width: 575.98px){
  .editors-section__box .editor .main-button {
    width: -moz-fit-content;
    width: fit-content;
    flex-grow: 0;
  }
}
/*# sourceMappingURL=section-editors.css.map */