@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-info {
  overflow: hidden;
  padding: 4.6rem 0 10rem;
  background: var(--section-bg);
}
.section-info__inner {
  max-width: 148rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem 2rem;
}
.section-info__image {
  display: flex;
}
.section-info__editor .main-button {
  padding: clamp(10px, 0.781vw, 1.5rem) clamp(30px, 3.418vw, 3.5rem);
}
@media (min-width: 576px){
  .section-info__image {
    width: clamp(480px, 40vw, 76.8rem);
  }
}
@media (max-width: 1024.98px){
  .section-info__inner {
    flex-direction: column;
  }
  .section-info__editor {
    align-items: center;
    text-align: center;
  }
  .section-info__editor br {
    display: none;
  }
}
/*# sourceMappingURL=section-info.css.map */