@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-memories {
  overflow: hidden;
  background: var(--section-bg);
  padding: 4rem 0;
}
.section-memories__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.section-memories__media {
  max-width: clamp(420px, 44.677vw, 55.4rem);
  width: 100%;
}
.section-memories__image {
  display: flex;
}
.section-memories__image img {
  width: 100%;
  height: 100%;
}
@media (min-width: 1025px){
  .section-memories__box {
    max-width: 52rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media (max-width: 1024.98px){
  .section-memories__inner {
    flex-direction: column;
    justify-content: center;
  }
  .section-memories__box {
    display: contents;
  }
  .section-memories__title {
    order: -1;
    text-align: center;
  }
  .section-memories__editor {
    max-width: 62rem;
  }
}
/*# sourceMappingURL=section-memories.css.map */